From 5593970b56ced759e4b4bb3c9625deb220b0d691 Mon Sep 17 00:00:00 2001 From: stephena Date: Tue, 26 Dec 2006 00:39:44 +0000 Subject: [PATCH] Added autodetection of NTSC or PAL display format, based on the number of scanlines in a 20-frame run of the Console. This should finally quiet those idiots that say 'Stella sucks' because it's too slow (when in fact it just didn't know a ROM was PAL). This will only detect NTSC and PAL; PAL60 will be autodetected as NTSC. AFAIK, there's no way to detect this, so it will still need to be defined in the properties. Added autodetection logic for E0 and E7 bankswitching types. Added '-rominfo' commandline argument, which gives a semi-detailed description of the given ROM, including cart type and display format. Yes, I'm a geek; this is what I spend Christmas day doing :) git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1238 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/common/mainSDL.cxx | 18 +- stella/src/emucore/Cart.cxx | 98 +- stella/src/emucore/Cart.hxx | 19 +- stella/src/emucore/CartCV.cxx | 5 +- stella/src/emucore/Console.cxx | 95 +- stella/src/emucore/Console.hxx | 24 +- stella/src/emucore/DefProps.hxx | 1588 ++++++++++++++--------------- stella/src/emucore/OSystem.cxx | 36 +- stella/src/emucore/OSystem.hxx | 13 +- stella/src/emucore/Props.cxx | 4 +- stella/src/emucore/Settings.cxx | 8 +- stella/src/emucore/TIA.cxx | 4 +- stella/src/emucore/stella.pro | 799 +-------------- stella/src/gui/GameInfoDialog.cxx | 19 +- stella/src/tools/create_props.pl | 2 +- stella/src/unix/OSystemUNIX.cxx | 9 +- stella/src/win32/OSystemWin32.cxx | 10 +- 17 files changed, 1064 insertions(+), 1687 deletions(-) diff --git a/stella/src/common/mainSDL.cxx b/stella/src/common/mainSDL.cxx index d936ede22..45b9424e9 100644 --- a/stella/src/common/mainSDL.cxx +++ b/stella/src/common/mainSDL.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: mainSDL.cxx,v 1.70 2006-12-15 16:42:53 stephena Exp $ +// $Id: mainSDL.cxx,v 1.71 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #include @@ -131,14 +131,26 @@ int main(int argc, char* argv[]) // probably needed for defaults theOSystem->create(); - // Check to see if the 'listroms' argument was given - // If so, list the roms and immediately exit + // Check to see if the user requested info about a specific ROM, + // or the list of internal ROMs + // If so, show the information and immediately exit if(theOSystem->settings().getBool("listrominfo")) { theOSystem->propSet().print(); Cleanup(); return 0; } + else if(theOSystem->settings().getBool("rominfo")) + { + string romfile = argv[argc - 1]; + if(argc > 1 && FilesystemNode::fileExists(romfile)) + cout << theOSystem->getROMInfo(romfile); + else + cout << "Error: Can't find " << romfile << endl; + + Cleanup(); + return 0; + } // Request that the SDL window be centered, if possible // At some point, this should be properly integrated into the UI diff --git a/stella/src/emucore/Cart.cxx b/stella/src/emucore/Cart.cxx index dcabeeceb..6b0c1264a 100644 --- a/stella/src/emucore/Cart.cxx +++ b/stella/src/emucore/Cart.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart.cxx,v 1.23 2006-12-24 17:13:10 stephena Exp $ +// $Id: Cart.cxx,v 1.24 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #include @@ -48,7 +48,7 @@ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cartridge* Cartridge::create(const uInt8* image, uInt32 size, - const Properties& properties, const Settings& settings) + const Properties& properties, const Settings& settings, string& about) { Cartridge* cartridge = 0; @@ -57,17 +57,21 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size, // Collect some info about the ROM ostringstream buf; - buf << "Size of ROM: " << size << endl - << "Specified type: " << type << endl; + buf << " Size of ROM: " << size << endl + << " Specified bankswitch type: " << type << endl; // See if we should try to auto-detect the cartridge type - if(type == "AUTO-DETECT") + // If we ask for extended info, always do an autodetect + if(type == "AUTO-DETECT" || settings.getBool("rominfo")) { - type = autodetectType(image, size); - buf << "Auto-detected type: " << type << endl; - } + string detected = autodetectType(image, size); + buf << " Auto-detected bankswitch type: " << detected << endl; + if(type != "AUTO-DETECT" && type != detected) + buf << " ==> Bankswitch auto-detection not consistent" << endl; -// cerr << buf.str() << endl; + type = detected; + } + about = buf.str(); // We should know the cart's type by now so let's create it if(type == "2K") @@ -139,26 +143,25 @@ string Cartridge::autodetectType(const uInt8* image, uInt32 size) { type = "AR"; } - else if(size == 2048) + else if((size == 2048) || + (size == 4096 && memcmp(image, image + 2048, 2048) == 0)) { // TODO - autodetect CV type = "2K"; } else if(size == 4096) { - // 2K image in consecutive banks - if(memcmp(image, image + 2048, 2048) == 0) - type = "2K"; - else - type = "4K"; + type = "4K"; } else if(size == 8192) // 8K { - // TODO - autodetect E0, FE, UA + // TODO - autodetect FE and UA, probably not possible if(isProbablySC(image, size)) type = "F8SC"; else if(memcmp(image, image + 4096, 4096) == 0) type = "4K"; + else if(isProbablyE0(image, size)) + type = "E0"; else if(isProbably3E(image, size)) type = "3E"; else if(isProbably3F(image, size)) @@ -180,9 +183,10 @@ string Cartridge::autodetectType(const uInt8* image, uInt32 size) } else if(size == 16384) // 16K { - // TODO - autodetect E7 if(isProbablySC(image, size)) type = "F6SC"; + else if(isProbablyE7(image, size)) + type = "E7"; else if(isProbably3E(image, size)) type = "3E"; else if(isProbably3F(image, size)) @@ -280,6 +284,66 @@ bool Cartridge::isProbably3E(const uInt8* image, uInt32 size) return (searchForBytes(image, size, 0x85, 0x3E) > 2); } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +bool Cartridge::isProbablyE0(const uInt8* image, uInt32 size) +{ + // E0 cart bankswitching is triggered by accessing addresses + // $FE0 to $FF7 using absolute non-indexed addressing + // So we search for the pattern 'LDA Fxxx' or 'STA Fxxx' in hex + // using the regex (AD|8D, E0-F7, xF) + // This must be present at least three times, since there are + // three segments to be initialized (and a few more so that more + // of the ROM is used) + // Thanks to "stella@casperkitty.com" for this advice + uInt32 count = 0; + for(uInt32 i = 0; i < size - 2; ++i) + { + uInt8 b1 = image[i], b2 = image[i+1], b3 = image[i+2]; + if((b1 == 0xAD || b1 == 0x8D) && + (b2 >= 0xE0 && b2 <= 0xF7) && + (b3 & 0xF == 0xF)) + { + if(++count > 4) return true; + } + } + return false; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +bool Cartridge::isProbablyE7(const uInt8* image, uInt32 size) +{ + // E7 carts map their second 1K block of RAM at addresses + // $800 to $8FF. However, since this occurs in the upper 2K address + // space, and the last 2K in the cart always points to the last 2K of the + // ROM image, the RAM area should fall in addresses $3800 to $38FF + // Similar to the Superchip cart, we assume this RAM block contains + // the same bytes for its entire area + // Also, we want to distinguish between ROMs that have large blocks + // of the same amount of (probably unused) data by making sure that + // something differs in the previous 32 or next 32 bytes + uInt8 first = image[0x3800]; + for(uInt32 i = 0x3800; i < 0x3A00; ++i) + { + if(first != image[i]) + return false; + } + + // OK, now scan the surrounding 32 byte blocks + uInt32 count1 = 0, count2 = 0; + for(uInt32 i = 0x3800 - 32; i < 0x3800; ++i) + { + if(first != image[i]) + ++count1; + } + for(uInt32 i = 0x3A00; i < 0x3A00 + 32; ++i) + { + if(first != image[i]) + ++count2; + } + + return (count1 > 0 || count2 > 0); +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // default implementations of bankswitching-related methods. // These are suitable to be inherited by a cart type that diff --git a/stella/src/emucore/Cart.hxx b/stella/src/emucore/Cart.hxx index 4e7f5974b..9171015b3 100644 --- a/stella/src/emucore/Cart.hxx +++ b/stella/src/emucore/Cart.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Cart.hxx,v 1.12 2006-12-24 17:13:10 stephena Exp $ +// $Id: Cart.hxx,v 1.13 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #ifndef CARTRIDGE_HXX @@ -33,7 +33,7 @@ class Settings; game and handles any bankswitching performed by the cartridge. @author Bradford W. Mott - @version $Id: Cart.hxx,v 1.12 2006-12-24 17:13:10 stephena Exp $ + @version $Id: Cart.hxx,v 1.13 2006-12-26 00:39:43 stephena Exp $ */ class Cartridge : public Device { @@ -46,10 +46,11 @@ class Cartridge : public Device @param size The size of the ROM image @param props The properties associated with the game @param settings The settings associated with the system + @param about Some info about this Cartridge @return Pointer to the new cartridge object allocated on the heap */ static Cartridge* create(const uInt8* image, uInt32 size, - const Properties& props, const Settings& settings); + const Properties& props, const Settings& settings, string& about); public: /** @@ -93,7 +94,7 @@ class Cartridge : public Device static int searchForBytes(const uInt8* image, uInt32 size, uInt8 byte1, uInt8 byte2); /** - Returns true if the image contains a extra RAM (aka SuperChip) + Returns true if the image is probably a SuperChip (256 bytes RAM) */ static bool isProbablySC(const uInt8* image, uInt32 size); @@ -107,6 +108,16 @@ class Cartridge : public Device */ static bool isProbably3E(const uInt8* image, uInt32 size); + /** + Returns true if the image is probably a E0 bankswitching cartridge + */ + static bool isProbablyE0(const uInt8* image, uInt32 size); + + /** + Returns true if the image is probably a E7 bankswitching cartridge + */ + static bool isProbablyE7(const uInt8* image, uInt32 size); + private: // Copy constructor isn't supported by cartridges so make it private Cartridge(const Cartridge&); diff --git a/stella/src/emucore/CartCV.cxx b/stella/src/emucore/CartCV.cxx index 39850df9d..74f513e8c 100644 --- a/stella/src/emucore/CartCV.cxx +++ b/stella/src/emucore/CartCV.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: CartCV.cxx,v 1.11 2006-12-08 16:49:21 stephena Exp $ +// $Id: CartCV.cxx,v 1.12 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #include @@ -196,7 +196,8 @@ bool CartridgeCV::load(Deserializer& in) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -uInt8* CartridgeCV::getImage(int& size) { +uInt8* CartridgeCV::getImage(int& size) +{ size = 2048; return &myImage[0]; } diff --git a/stella/src/emucore/Console.cxx b/stella/src/emucore/Console.cxx index f93aea6a4..e27c7b84d 100644 --- a/stella/src/emucore/Console.cxx +++ b/stella/src/emucore/Console.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Console.cxx,v 1.110 2006-12-22 23:14:39 stephena Exp $ +// $Id: Console.cxx,v 1.111 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #include @@ -66,6 +66,8 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, ourUserNTSCPalette(NULL), ourUserPALPalette(NULL) { + Cartridge* cartridge = (Cartridge*) NULL; + ostringstream buf; myControllers[0] = 0; myControllers[1] = 0; myMediaSource = 0; @@ -85,22 +87,9 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, // Load user-defined palette for this ROM loadUserPalette(); - // Make sure height is set properly for PAL ROM - if(myProperties.get(Display_Format).compare(0, 3, "PAL") == 0) - if(myProperties.get(Display_Height) == "210") - myProperties.set(Display_Height, "250"); - - // Make sure this ROM can fit in the screen dimensions - int sWidth, sHeight, iWidth, iHeight; - myOSystem->getScreenDimensions(sWidth, sHeight); - iWidth = atoi(myProperties.get(Display_Width).c_str()) << 1; - iHeight = atoi(myProperties.get(Display_Height).c_str()); - if(iWidth > sWidth || iHeight > sHeight) - { - myOSystem->frameBuffer().showMessage("PAL ROMS not supported, screen too small", - kMiddleCenter, kTextColorEm); - return; - } + // Query some info about this console + buf << " Cart Name: " << myProperties.get(Cartridge_Name) << endl + << " Cart MD5: " << md5 << endl; // Setup the controllers based on properties string left = myProperties.get(Controller_Left); @@ -199,8 +188,10 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, M6532* m6532 = new M6532(*this); TIA *tia = new TIA(*this, myOSystem->settings()); tia->setSound(myOSystem->sound()); - Cartridge* cartridge = Cartridge::create(image, size, myProperties, - myOSystem->settings()); + cartridge = Cartridge::create(image, size, myProperties, + myOSystem->settings(), myAboutString); + buf << myAboutString; + if(!cartridge) return; @@ -217,6 +208,46 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, // Reset, the system to its power-on state mySystem->reset(); + // Auto-detect NTSC/PAL mode if it's requested + myDisplayFormat = myProperties.get(Display_Format); + buf << " Specified display format: " << myDisplayFormat << endl; + if(myDisplayFormat == "AUTO-DETECT" || + myOSystem->settings().getBool("rominfo")) + { + // Run the system for 20 frames, looking for PAL frames + int palCount = 0; + for(int i = 0; i < 20; ++i) + { + myMediaSource->update(); + if(myMediaSource->scanlines() > 290) + ++palCount; + } + + myDisplayFormat = (palCount >= 10) ? "PAL" : "NTSC"; + if(myProperties.get(Display_Format) == "AUTO-DETECT") + buf << " Auto-detected display format: " << myDisplayFormat << endl; + } + + // Make sure height is set properly for PAL ROM + if(myDisplayFormat.compare(0, 3, "PAL") == 0) + if(myProperties.get(Display_Height) == "210") + myProperties.set(Display_Height, "250"); + + // Make sure this ROM can fit in the screen dimensions + int sWidth, sHeight, iWidth, iHeight; + myOSystem->getScreenDimensions(sWidth, sHeight); + iWidth = atoi(myProperties.get(Display_Width).c_str()) << 1; + iHeight = atoi(myProperties.get(Display_Height).c_str()); + if(iWidth > sWidth || iHeight > sHeight) + { + myOSystem->frameBuffer().showMessage("PAL ROMS not supported, screen too small", + kMiddleCenter, kTextColorEm); + return; + } + + mySystem->reset(); // Restart ROM again + + myAboutString = buf.str(); myIsValidFlag = true; } @@ -245,31 +276,30 @@ const Properties& Console::properties() const // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::toggleFormat() { - const string& format = myProperties.get(Display_Format); uInt32 framerate = 60; - if(format == "NTSC") + if(myDisplayFormat == "NTSC") { myProperties.set(Display_Format, "PAL"); mySystem->reset(); myOSystem->frameBuffer().showMessage("PAL Mode"); framerate = 50; } - else if(format == "PAL") + else if(myDisplayFormat == "PAL") { myProperties.set(Display_Format, "PAL60"); mySystem->reset(); myOSystem->frameBuffer().showMessage("PAL60 Mode"); framerate = 60; } - else if(format == "PAL60") + else if(myDisplayFormat == "PAL60") { myProperties.set(Display_Format, "NTSC"); mySystem->reset(); myOSystem->frameBuffer().showMessage("NTSC Mode"); framerate = 60; } - + myDisplayFormat = myProperties.get(Display_Format); setPalette(myOSystem->settings().getString("palette")); myOSystem->setFramerate(framerate); myOSystem->sound().setFrameRate(framerate); @@ -327,19 +357,17 @@ void Console::togglePalette() void Console::setPalette(const string& type) { // See which format we should be using - const string& format = myProperties.get(Display_Format); - const uInt32* palette = NULL; if(type == "standard") - palette = (format.compare(0, 3, "PAL") == 0) ? ourPALPalette : ourNTSCPalette; + palette = (myDisplayFormat.compare(0, 3, "PAL") == 0) ? ourPALPalette : ourNTSCPalette; else if(type == "original") - palette = (format.compare(0, 3, "PAL") == 0) ? ourPALPalette11 : ourNTSCPalette11; + palette = (myDisplayFormat.compare(0, 3, "PAL") == 0) ? ourPALPalette11 : ourNTSCPalette11; else if(type == "z26") - palette = (format.compare(0, 3, "PAL") == 0) ? ourPALPaletteZ26 : ourNTSCPaletteZ26; + palette = (myDisplayFormat.compare(0, 3, "PAL") == 0) ? ourPALPaletteZ26 : ourNTSCPaletteZ26; else if(type == "user" && myUserPaletteDefined) - palette = (format.compare(0, 3, "PAL") == 0) ? ourUserPALPalette : ourUserNTSCPalette; + palette = (myDisplayFormat.compare(0, 3, "PAL") == 0) ? ourUserPALPalette : ourUserNTSCPalette; else // return normal palette by default - palette = (format.compare(0, 3, "PAL") == 0) ? ourPALPalette : ourNTSCPalette; + palette = (myDisplayFormat.compare(0, 3, "PAL") == 0) ? ourPALPalette : ourNTSCPalette; myOSystem->frameBuffer().setPalette(palette); @@ -381,13 +409,12 @@ void Console::initialize() // This can be overridden by changing the framerate in the // VideoDialog box or on the commandline, but it can't be saved // (ie, framerate is now solely determined based on ROM format). - const string& format = myProperties.get(Display_Format); int framerate = myOSystem->settings().getInt("framerate"); if(framerate == -1) { - if(format == "NTSC" || format == "PAL60") + if(myDisplayFormat == "NTSC" || myDisplayFormat == "PAL60") framerate = 60; - else if(format == "PAL") + else if(myDisplayFormat == "PAL") framerate = 50; else framerate = 60; diff --git a/stella/src/emucore/Console.hxx b/stella/src/emucore/Console.hxx index 4bab1d50b..18ff699d0 100644 --- a/stella/src/emucore/Console.hxx +++ b/stella/src/emucore/Console.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Console.hxx,v 1.52 2006-12-22 23:14:39 stephena Exp $ +// $Id: Console.hxx,v 1.53 2006-12-26 00:39:43 stephena Exp $ //============================================================================ #ifndef CONSOLE_HXX @@ -38,7 +38,7 @@ class System; This class represents the entire game console. @author Bradford W. Mott - @version $Id: Console.hxx,v 1.52 2006-12-22 23:14:39 stephena Exp $ + @version $Id: Console.hxx,v 1.53 2006-12-26 00:39:43 stephena Exp $ */ class Console { @@ -127,6 +127,11 @@ class Console */ void setProperties(const Properties& props); + /** + Query some information about this console. + */ + string about() { return myAboutString; } + public: /** Overloaded assignment operator @@ -138,10 +143,15 @@ class Console public: /** - Toggle between NTSC and PAL mode. + Toggle between NTSC/PAL/PAL60 display format. */ void toggleFormat(); + /** + Query the currently selected display format (NTSC/PAL/PAL60). + */ + string getFormat() const { return myDisplayFormat; } + /** Toggle between the available palettes. */ @@ -171,7 +181,7 @@ class Console Determine whether the console object is valid (no errors occurred when it was created) */ - bool isValid() { return myIsValidFlag; } + bool isValid() const { return myIsValidFlag; } /** Initialize the video subsystem wrt this class. @@ -286,6 +296,12 @@ class Console uInt32* ourUserNTSCPalette; uInt32* ourUserPALPalette; + // Contains info about this console in string format + string myAboutString; + + // The currently defined display format (NTSC/PAL/PAL60) + string myDisplayFormat; + // Table of RGB values for NTSC static const uInt32 ourNTSCPalette[256]; diff --git a/stella/src/emucore/DefProps.hxx b/stella/src/emucore/DefProps.hxx index c8731bd1a..80af62443 100644 --- a/stella/src/emucore/DefProps.hxx +++ b/stella/src/emucore/DefProps.hxx @@ -14,33 +14,33 @@ static const char* DefProps[][23] = { { "1f21666b8f78b65051b7a609f1d48608", "CCE / Ultravision / K-Tel Vision", "C-851", "Condor Attack (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "5f73e7175474c1c22fb8030c3158e9b3", "Atari", "CX2665", "Frog Pond (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, { "a25bb76e9e773117e567fd4300b1bb23", "", "", "Interleaved ChronoColour Demo (NTSC) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e2ca84a2bb63d1a210ebb659929747a9", "", "", "Cosmic Creeps (1982) (Telesys) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "212", "Yes", "", "" }, - { "0ef64cdbecccb7049752a3de0b7ade14", "Atari", "", "Combat (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "", "" }, + { "e2ca84a2bb63d1a210ebb659929747a9", "", "", "Cosmic Creeps (1982) (Telesys) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "212", "Yes", "", "" }, + { "0ef64cdbecccb7049752a3de0b7ade14", "Atari", "", "Combat (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "2e1401b931c9eb064af5e0a7184e598d", "", "", "Death Derby (v0008) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d2cef8f19cafeec72d142e34a1bbc03", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "246", "", "", "" }, + { "4d2cef8f19cafeec72d142e34a1bbc03", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "246", "", "", "" }, { "6e372f076fb9586aff416144f5cfe1cb", "Atari", "CX2646 / 4975185", "Pac-Man (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, { "91c2098e88a6b13f977af8c003e0bca5", "Atari", "CX2676", "Centipede (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "", "" }, { "b2f0d7217147160b2f481954cedf814b", "", "", "Marquee Drawer (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d573089534ca596e64efef474be7b6bc", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [h1]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "152", "57", "", "", "", "" }, + { "d573089534ca596e64efef474be7b6bc", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [h1]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "8", "152", "57", "", "", "", "" }, { "f3213a8a702b0646d2eaf9ee0722b51c", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, - { "0805366f1b165a64b6d4df20d2c39d25", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "64", "191", "", "", "" }, + { "0805366f1b165a64b6d4df20d2c39d25", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "191", "", "", "" }, { "16cb43492987d2f32b423817cdaaf7c4", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, { "26bc2bdf447a17376aea7ef187ff6e44", "", "", "Amanda Invaders (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35be55426c1fec32dfb503b4f0651572", "", "C-817", "Air Raid (Men-A-Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "239", "Yes", "", "" }, { "456453a54ca65191781aef316343ae00", "", "", "Full Screen Bitmap (3-D Green) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "575c0fb61e66a31d982c95c9dea6865c", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "59", "220", "", "", "" }, - { "6672de8f82c4f7b8f7f1ef8b6b4f614d", "Ariola", "", "Angling (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "183", "", "", "" }, + { "575c0fb61e66a31d982c95c9dea6865c", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "59", "220", "", "", "" }, + { "6672de8f82c4f7b8f7f1ef8b6b4f614d", "Ariola", "", "Angling (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "183", "", "", "" }, { "76a9bf05a6de8418a3ebc7fc254b71b4", "Videosoft", "VS1008", "Color Bar Generator (Videosoft)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "876a953daae0e946620cf05ed41989f4", "Retroactive", "", "Qb (V2.08) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "9ad362179c2eea4ea115c7640b4b003e", "Activision", "AX-013", "Barnstorming (1982) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "", "" }, + { "876a953daae0e946620cf05ed41989f4", "Retroactive", "", "Qb (V2.08) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "9ad362179c2eea4ea115c7640b4b003e", "Activision", "AX-013", "Barnstorming (1982) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "194", "", "", "" }, { "ab5bf1ef5e463ad1cbb11b6a33797228", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "42", "192", "", "", "" }, { "bdb4b584ddc90c9d2ec7e21632a236b6", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 1) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Freeway Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "205", "", "", "" }, { "dcec46a98f45b193f07239611eb878c2", "", "", "Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eafe8b40313a65792e88ff9f2fe2655c", "Eric Ball", "ELB004", "Skeleton+ (NTSC)", "Stereo sound", "Homebrew", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fac28963307b6e85082ccd77c88325e7", "CCE", "", "Berzerk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "", "" }, - { "0443cfa9872cdb49069186413275fa21", "Mattel", "MT4518", "Burgertime (1982) (Mattel)", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "", "", "31", "180", "", "", "" }, - { "0b1056f1091cfdc5eb0e2301f47ac6c3", "Tigervision", "7-001", "King Kong (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "0443cfa9872cdb49069186413275fa21", "Mattel", "MT4518", "Burgertime (1982) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "31", "180", "", "", "" }, + { "0b1056f1091cfdc5eb0e2301f47ac6c3", "Tigervision", "7-001", "King Kong (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "133b56de011d562cbab665968bde352b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, { "19d6956ff17a959c48fcd8f4706a848d", "Mystique", "", "Burning Desire (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, { "227532d82505c3c185a878273c285d5f", "", "", "Hangman Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -48,121 +48,121 @@ static const char* DefProps[][23] = { { "31bb9b8ceed46cb3e506777a9e65f3ce", "", "", "4 Pak (Light Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "39bf392448c8bd39d48acc95ed3b423f", "", "", "Greeting Cart Barb (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4093382187f8387e6d011883e8ea519b", "HomeVision", "554-33391", "Col 'N (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "214", "", "", "" }, - { "490e3cc59d82f85fae817cdf767ea7a0", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "64", "188", "", "", "" }, + { "490e3cc59d82f85fae817cdf767ea7a0", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "188", "", "", "" }, { "523f5cbb992f121e2d100f0f9965e33f", "Joe Grand", "", "SCSIcide (1.30) (CGE 2001 Release) (Joe Grand)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "5b98e0536c3f60547dd708ae22adb04b", "", "", "Donkey Kong Gingerbread Man (Prototype) (Ben Hudman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63a6eda1da30446569ac76211d0f861c", "Activision", "AG-001", "Dragster (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "69ebf910ab9b63e5b8345f016095003b", "", "", "Maze Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72876fd7c7435f41d571f1101fc456ea", "Starsoft", "", "Die Ente und der Wolf (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "72876fd7c7435f41d571f1101fc456ea", "Starsoft", "", "Die Ente und der Wolf (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7a93d0c029eaa72236523eedc3f19645", "", "", "20 Sprites at Once Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "826481f6fc53ea47c9f272f7050eedf7", "Imagic", "", "Atlantis II (1982) (Imagic) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, - { "8c8a26ed57870daba8e13162d497bad1", "HES", "", "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "", "" }, - { "962ffd3eaf865230a7a312b80e6c5cfd", "", "", "Fathom (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "8c8a26ed57870daba8e13162d497bad1", "HES", "", "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, + { "962ffd3eaf865230a7a312b80e6c5cfd", "", "", "Fathom (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "9efb4e1a15a6cdd286e4bcd7cd94b7b8", "20th Century Fox", "", "Planet of the Apes (20th Century Fox) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "45", "173", "", "", "" }, { "a68a396ff1f3b311712f6bdf05dcefab", "", "", "Greeting Cart Amy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aeb104f1e7b166bc0cbaca0a968fde51", "Rob Kudla", "", "Ms. Pac-Man (1982) (Atari) [h1]", "Hack of Ms. Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "198", "", "", "" }, { "b8ed78afdb1e6cfe44ef6e3428789d5f", "Data Age", "112-007", "Bermuda Triangle (1982) (Data Age) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c225abfb584960efe1f359fc94b73379", "", "", "Joustpong (21-09-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ca7abc774a2fa95014688bc0849eee47", "Atari", "CX26110", "Crystal Castles (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "50", "174", "", "", "" }, - { "d0cdafcb000b9ae04ac465f17788ad11", "Starsoft", "", "Alice's Abenteuer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "240", "", "", "" }, + { "ca7abc774a2fa95014688bc0849eee47", "Atari", "CX26110", "Crystal Castles (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "", "" }, + { "d0cdafcb000b9ae04ac465f17788ad11", "Starsoft", "", "Alice's Abenteuer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "240", "", "", "" }, { "da0fb2a484d0d2d8f79d6e063c94063d", "", "", "Air Raiders (1982) (Mattel) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "202", "", "", "" }, { "df62a658496ac98a3aa4a6ee5719c251", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "40", "219", "", "", "" }, { "e63efdfda9a4003dcd77a854a781a06a", "Paul Slocum", "", "Combat Rock (PD) [a1]", "Hack of Combat (1977) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, { "ef66af190840871409fe1702d2483554", "", "", "DiscoTech (12-02-2003) (Andrew Davie, Paul Slocum And Christopher Tumber)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f750b5d613796963acecab1690f554ae", "Manuel Polik", "", "Gunfight 2600 (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "fc92d74f073a44bc6e46a3b3fa8256a2", "", "", "Megademo (19xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "01b09872dcd9556427761f0ed64aa42a", "", "", "Galaga (River Raid clone) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "30", "202", "", "", "" }, + { "01b09872dcd9556427761f0ed64aa42a", "", "", "Galaga (River Raid clone) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "202", "", "", "" }, { "0685bd0bcb975ceef7041749a5454a48", "Piero Cavina", "", "11 Sprite Demo (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "196", "", "", "" }, { "0963aa9f7f6cf5a36ff700001583624e", "Franklin Cruz", "", "Space Invaders 2 (Space Invaders Hack) [o1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "0d5af65ad3f19558e6f8e29bf2a9d0f8", "Atari", "CX26151", "Dark Chambers (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "185", "Yes", "", "No" }, + { "0d5af65ad3f19558e6f8e29bf2a9d0f8", "Atari", "CX26151", "Dark Chambers (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "185", "Yes", "", "No" }, { "10958cd0a1a81d599005f1797ab0e51d", "Eduardo", "", "Centipede 2k (2000) (PD)", "Hack of Centipede (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "", "" }, { "1442d1b35a6478fba22ae7dd1fcb5634", "", "", "Thrust (V0.2) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "197", "", "", "" }, - { "1862fca4f98e66f363308b859b5863af", "", "", "128-in-1 Junior Console (Chip 1) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "184", "", "", "" }, + { "1862fca4f98e66f363308b859b5863af", "", "", "128-in-1 Junior Console (Chip 1) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "184", "", "", "" }, { "1d1d2603ec139867c1d1f5ddf83093f1", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, { "20dca534b997bf607d658e77fbb3c0ee", "Mythicon", "MA-1002", "Fire Fly (1983) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24d9a55d8f0633e886a1b33ee1e0e797", "", "", "Dragon Defender (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "16", "249", "Yes", "", "" }, - { "282a77841cb3d33af5b56151acba770e", "Starsoft", "", "Black Hole (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "282a77841cb3d33af5b56151acba770e", "Starsoft", "", "Black Hole (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "2c3d5df0a55500cd59916dbb4fee3fa4", "", "", "Death Derby (Experiment 02) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "303242c239474f2d7763b843de58c1c3", "CCE", "", "Laser Blast (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "", "" }, - { "3347a6dd59049b15a38394aa2dafa585", "Parker Bros", "PB5760", "Montezuma's Revenge - Starring Panama Joe (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "3347a6dd59049b15a38394aa2dafa585", "Parker Bros", "PB5760", "Montezuma's Revenge - Starring Panama Joe (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "376944889dcfa96c73d3079f308e3d32", "Retroactive", "", "Qb (0.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3b69f8929373598e1752f43f8da61aa4", "Starsoft", "", "Die Springteufel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "", "" }, + { "3b69f8929373598e1752f43f8da61aa4", "Starsoft", "", "Die Springteufel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, { "3f039981255691d3859d04ef813a1264", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "186", "", "", "" }, { "4279485e922b34f127a88904b31ce9fa", "Activision", "AX-026", "Enduro (1983) (Activision) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, { "47711c44723da5d67047990157dcb5dd", "CCE", "", "Ice Hockey (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4b205ef73a5779acc5759bde3f6d33ed", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "64", "195", "", "", "" }, + { "4b205ef73a5779acc5759bde3f6d33ed", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "195", "", "", "" }, { "4f618c2429138e0280969193ed6c107e", "Activision", "AZ-028", "Robot Tank (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "", "" }, { "5409d20c1aea0b89c56993aec5dc5740", "", "", "Carnival Shooter (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5a2f2dcd775207536d9299e768bcd2df", "Starsoft", "", "Flippern (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "194", "", "", "" }, + { "5a2f2dcd775207536d9299e768bcd2df", "Starsoft", "", "Flippern (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "194", "", "", "" }, { "5df32450b9fbcaf43f9d83bd66bd5a81", "", "", "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6141c095d0aee4e734bebfaac939030a", "Starsoft", "", "Die Unterwasser-Bestien (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "", "" }, + { "6141c095d0aee4e734bebfaac939030a", "Starsoft", "", "Die Unterwasser-Bestien (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, { "655c84e5b951258c9d20f0bf2b9d496d", "", "", "2600_2003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "67cf913d1df0bf2d7ae668060d0b6694", "", "", "Hangman Monkey 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b8fb021bb2e1f1e9bd7ee57f2a8e709", "", "", "3-D Corridor (29-03-2003) (Paul Slocum) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "703d32062436e4c20c48313dff30e257", "", "", "Moving Maze Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "7450ae4e10ba8380c55b259d7c2b13e8", "", "", "Register Twiddler Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "184", "", "", "" }, - { "791bc8aceb6b0f4d9990d6062b30adfa", "Activision", "AB-035-04", "Pitfall! (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "201", "", "", "" }, + { "791bc8aceb6b0f4d9990d6062b30adfa", "Activision", "AB-035-04", "Pitfall! (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "201", "", "", "" }, { "7ccf350354ee15cd9b85564a2014b08c", "", "", "Big Dig (13-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "808c3b1e60ee0e7c65205fa4bd772221", "CCE", "", "Defender (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "85478bb289dfa5c63726b9153992a920", "", "", "Candi (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "89a68746eff7f266bbf08de2483abe55", "Atari", "CX2696", "Asterix (1988) (Atari) (Prototype) (NTSC)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "191", "", "", "" }, { "8f53a3b925f0fd961d9b8c4d46ee6755", "Starsoft", "SM8002", "Astrowar (Starsoft)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "202", "", "", "" }, - { "93c9f9239a4e5c956663dd7affa70da2", "Starsoft", "", "Billard (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "186", "Yes", "", "" }, - { "98555b95cb38e0e0b22b482b2b60a5b6", "", "", "Fire Spinner (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "213", "Yes", "", "" }, + { "93c9f9239a4e5c956663dd7affa70da2", "Starsoft", "", "Billard (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "186", "Yes", "", "" }, + { "98555b95cb38e0e0b22b482b2b60a5b6", "", "", "Fire Spinner (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "213", "Yes", "", "" }, { "9cbb07f1993a027bc2f87d5205457ec9", "", "", "Eckhard Stolberg's Scrolling Text Demo 1 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "", "" }, { "a15b5831a1fab52e4c416068c85ec011", "Hozer Video Games", "", "Gunfight 2600 - The Good, The Bad, The Ugly (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "230", "", "", "" }, { "a4ab331e8768eafdc20ce8b0411ff77a", "", "", "Demo Image Series #1 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a94b8ca630f467b574b614808d813919", "", "", "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "230", "", "", "" }, + { "a94b8ca630f467b574b614808d813919", "", "", "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "230", "", "", "" }, { "ad2e6bfb3b9b9b36ba8bf493ce764c49", "", "", "2600 Collison Demo 1 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b12a7f63787a6bb08e683837a8ed3f18", "", "", "Demon Attack (1982) (Imagic) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b65d4a38d6047735824ee99684f3515e", "", "", "Megaboy (Brazil) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bb34d1b831aa1f6b3c3452d80d01a759", "", "", "Miss Piggy's Wedding (Prototype) [b2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bfcabc6995ef42d0b6c06786993dc4d6", "", "", "Star Fire - Creating a Universe (09-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c471b97446a85304bbac021c57c2cb49", "First Star Software", "", "Boing! (1983) (First Star Software) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "48", "183", "Yes", "", "" }, - { "c7f13ef38f61ee2367ada94fdcc6d206", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) [!]", "", "Common", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "c471b97446a85304bbac021c57c2cb49", "First Star Software", "", "Boing! (1983) (First Star Software) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "183", "Yes", "", "" }, + { "c7f13ef38f61ee2367ada94fdcc6d206", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "cca33ae30a58f39e3fc5d80f94dc0362", "", "", "Okie Dokie (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "16", "128", "47", "178", "", "", "" }, { "cfe62ed7125ff9fae99b4c8a367c0399", "Activision", "AX-026", "Enduro (1983) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, - { "d341d39774277cee6a1d378a013f92ac", "", "", "Artillery Duel (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "26", "190", "", "", "" }, + { "d341d39774277cee6a1d378a013f92ac", "", "", "Artillery Duel (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "190", "", "", "" }, { "d7891b0faa4c7f764482762d0ed427a5", "", "", "Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "db339aea2b65b84c7cfe0eeab11e110a", "", "", "Chronocolor Frame Demo 2 (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "de1e9fb700baf8d2e5ae242bffe2dbda", "Activision", "", "Commando (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "", "" }, + { "de1e9fb700baf8d2e5ae242bffe2dbda", "Activision", "", "Commando (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, { "e0de3773f5b867795db557be7b8a703e", "", "", "Boulderdash (13 Blocks Wide) (02-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4c00beb17fdc5881757855f2838c816", "20th Century Fox", "11004", "Deadly Duck (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "e88340f5bd2f03e2e9ce5ecfa9c644f5", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "196", "", "", "" }, - { "ed2218b3075d15eaa34e3356025ccca3", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "188", "", "", "" }, + { "e88340f5bd2f03e2e9ce5ecfa9c644f5", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "196", "", "", "" }, + { "ed2218b3075d15eaa34e3356025ccca3", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "188", "", "", "" }, { "f1127ade54037236e75a133b1dfc389d", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "" }, { "f53f81fae276d72dbdba7064786a8266", "", "", "Death Derby (v0011) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f965cc981cbb0822f955641f8d84e774", "Answer", "", "Confrontation (1983) (Answer Software)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "220", "Yes", "", "" }, { "fb88c400d602fe759ae74ef1716ee84e", "20th Century Fox", "11031", "Crash Dive (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "201", "", "", "" }, - { "fe0b7f27e3ad50bbf9ff468ee56d553d", "", "", "Lines Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "192", "", "", "" }, + { "fe0b7f27e3ad50bbf9ff468ee56d553d", "", "", "Lines Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, { "00f7985c20b8bdf3c557fac4d3f26775", "Aaron Curtis", "", "AStar (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02e3f4ba156fb578bef7d7a0bf3400c1", "", "", "Booster (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "056ff67dd9715fafa91fb8b0ddcc4a46", "", "", "Brick Kick (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "230", "", "", "" }, - { "073d7aff37b7601431e4f742c36c0dc1", "", "SS-009", "Bermuda (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "30", "199", "", "", "" }, - { "08bd4c1dcc843f6a0b563d9fd80b3b11", "Starsoft", "", "Phantom Panzer II (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "212", "", "", "" }, + { "056ff67dd9715fafa91fb8b0ddcc4a46", "", "", "Brick Kick (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, + { "073d7aff37b7601431e4f742c36c0dc1", "", "SS-009", "Bermuda (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "", "" }, + { "08bd4c1dcc843f6a0b563d9fd80b3b11", "Starsoft", "", "Phantom Panzer II (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "212", "", "", "" }, { "0a981c03204ac2b278ba392674682560", "Atari", "CX2651 / 6699805 / 4975602", "Blackjack (1977) (Atari) [a1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "0c7926d660f903a2d6910c254660c32c", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "", "" }, + { "0c7926d660f903a2d6910c254660c32c", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "0e08cd2c5bcf11c6a7e5a009a7715b6a", "", "", "Boing! (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "175", "", "", "" }, - { "0fcff6fe3b0769ad5d0cf82814d2a6d9", "Starsoft", "", "Aufruhr im Zoo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "51", "220", "", "", "" }, + { "0fcff6fe3b0769ad5d0cf82814d2a6d9", "Starsoft", "", "Aufruhr im Zoo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "51", "220", "", "", "" }, { "1201c18cf00d2c236f42e4d7d8c86aa1", "", "", "Nick Bensema Demo (Nick Bensema)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13a991bc9c2ff03753aeb322d3e3e2e5", "Funvision", "", "Galactic (G) (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "220", "", "", "" }, + { "13a991bc9c2ff03753aeb322d3e3e2e5", "Funvision", "", "Galactic (G) (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "220", "", "", "" }, { "157bddb7192754a45372be196797f284", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "35", "194", "", "", "" }, { "176d3fba7d687f2b23158098e103c34a", "", "", "Combat AI (16-02-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "19829cfe884e30219c868b2d9a5b3540", "", "", "Death Derby (v0003) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1bb91bae919ddbd655fa25c54ea6f532", "Starsoft", "", "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "67", "187", "", "", "" }, + { "1bb91bae919ddbd655fa25c54ea6f532", "Starsoft", "", "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "67", "187", "", "", "" }, { "1e4990f2bfc79b47b9b091f0a1538eeb", "", "", "Greeting Cart Sue (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2008c76deba5953201ef75a09b2ff7dc", "", "", "Fortress (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "218c0fe53dfaaa37f3c823f66eafd3fc", "Atari", "CX2624", "Basketball (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "206", "", "", "" }, - { "2432f33fd278dea5fe6ae94073627fcc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "250", "Yes", "", "" }, + { "218c0fe53dfaaa37f3c823f66eafd3fc", "Atari", "CX2624", "Basketball (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "206", "", "", "" }, + { "2432f33fd278dea5fe6ae94073627fcc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "52", "250", "Yes", "", "" }, { "25bcf07491f65012a70a528959c4881c", "", "", "Greeting Cart Brook Burke Blue Bikini(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "278155fc9956e9b6ef2359eb238f7c7f", "", "", "Donkey Kong Junior (Coleco) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "292f2446a0325b7b423e88a2ebfeb5a0", "", "", "Cube Conquest (Non Interlaced) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2bc26619e31710a9884c110d8430c1da", "Atari", "CX2652", "Casino (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "62", "247", "", "", "" }, + { "2bc26619e31710a9884c110d8430c1da", "Atari", "CX2652", "Casino (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "62", "247", "", "", "" }, { "2d1cf85fbc732856bf76470cd4060f4a", "", "", "Daredevil (V1) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2ef36341d1bf42e02c7ea2f71e024982", "", "", "Space Invaders (Explosion Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "3105967f7222cc36a5ac6e5f6e89a0b4", "Sega", "011-02", "Spy Hunter (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "207", "", "", "" }, { "324cb4a749bcac4f3db9da842b85d2f7", "", "", "Climber 5 (01-05-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "201", "", "", "" }, - { "345769d085113d57937198262af52298", "", "", "Space Raid (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "200", "", "", "" }, + { "345769d085113d57937198262af52298", "", "", "Space Raid (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "56", "200", "", "", "" }, { "368d88a6c071caba60b4f778615aae94", "Atari", "CX26159", "Double Dunk (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "", "" }, { "386ff28ac5e254ba1b1bac6916bcc93a", "Starpath", "AR-4300", "Fireball (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "32", "200", "", "", "" }, { "3a771876e4b61d42e3a3892ad885d889", "Atari", "CX26120", "Defender II (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, @@ -170,31 +170,31 @@ static const char* DefProps[][23] = { { "3e49da621193d2611a4ea152d5d5ca3a", "", "", "Atari Logo Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f9cb1aba8ec20e2c243ae642f9942bf", "", "", "New Questions (1998) (John K. Harvey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "41810dd94bd0de1110bedc5092bef5b0", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "54", "176", "", "", "" }, - { "442602713cb45b9321ee93c6ea28a5d0", "Imagic", "", "Demon Attack (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "", "" }, - { "467340a18158649aa5e02a4372dcfccd", "", "", "H.E.R.O. (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, - { "481d20ec22e7a63e818d5ef9679d548b", "", "", "Freeway (AKA Rabbits) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "63", "193", "", "", "" }, - { "4a6be79310f86f0bebc7dfcba4d74161", "Telesys", "1006", "Demolition Herby (1982) (Telesys) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "187", "Yes", "", "" }, + { "442602713cb45b9321ee93c6ea28a5d0", "Imagic", "", "Demon Attack (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, + { "467340a18158649aa5e02a4372dcfccd", "", "", "H.E.R.O. (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "481d20ec22e7a63e818d5ef9679d548b", "", "", "Freeway (AKA Rabbits) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "63", "193", "", "", "" }, + { "4a6be79310f86f0bebc7dfcba4d74161", "Telesys", "1006", "Demolition Herby (1982) (Telesys) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "187", "Yes", "", "" }, { "4c4ce802cbfd160f7b3ec0f13f2a29df", "", "", "Beta Demo (V1.1) (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4dd6f53684ccbb569fe9f41498d80018", "", "", "Image - Nude1 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "50568c80ac61cab789d9923c9b05b68e", "ebivision", "", "Merlin's Walls - Standard Edition (1999) (Ebivision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5355f80cacf0e63a49cbf4ade4e27034", "Christian Samuel", "", "Cute Dead Things House by Christian Samuel (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "", "" }, { "55949cb7884f9db0f8dfcf8707c7e5cb", "", "CX2639 / 4975162", "Othello (1978) [p1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "589c73bbcd77db798cb92a992b4c06c3", "Xonox", "", "Artillery Duel (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "186", "", "", "" }, + { "589c73bbcd77db798cb92a992b4c06c3", "Xonox", "", "Artillery Duel (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "186", "", "", "" }, { "5ae73916fa1da8d38ceff674fa25a78a", "CCE", "", "Barnstorming (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "", "" }, { "5c618a50dfa23daac97ba459b9ff5206", "", "", "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "", "", "", "" }, - { "5f17fef8a64d64d119f8e76c50238762", "", "", "Acid Drop (1992) (Salu) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "", "", "" }, + { "5f17fef8a64d64d119f8e76c50238762", "", "", "Acid Drop (1992) (Salu) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "604e09724555807c28108049efe34a13", "", "", "Sokoban (01-01-2003) (Adam Wozniak)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "62ffd175cac3f781ef6e4870136a2520", "", "", "2600 Digital Clock (V x.xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6468d744be9984f2a39ca9285443a2b2", "Atari", "", "Othello (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "", "" }, + { "6468d744be9984f2a39ca9285443a2b2", "Atari", "", "Othello (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, { "66362890eb78d6ea65301592cce65f5b", "", "", "Euchre (13-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "678c1d71a1616d9d022f03d8545b64bb", "", "", "Demo Image Series #11 - Donald And Mario (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68cd2adc6b1fc9a1f263ab4561112f30", "", "", "Boulderdash Demo (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a9e0c72fab92df70084eccd9061fdbd", "CCE", "", "Beany Bopper (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d218dafbf5a691045cdc1f67ceb6a8f", "", "", "6 Digit Score Display (1998) (Robin Harbron) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f74ed915ffe73b524ef0f63819e2a1d", "", "", "An Exercise In Minimalism (V2) (1999) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "715dd9e0240638d441a3add49316c018", "", "", "128-in-1 Junior Console (Chip 2) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "715dd9e0240638d441a3add49316c018", "", "", "128-in-1 Junior Console (Chip 2) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "73158ea51d77bf521e1369311d26c27b", "Zellers", "", "Challenge (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "24", "220", "", "", "" }, - { "757f529026696e13838364dea382a4ed", "Activision", "AX-014", "Grand Prix (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "", "" }, + { "757f529026696e13838364dea382a4ed", "Activision", "AX-014", "Grand Prix (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, { "77cd9a9dd810ce8042bdb9d40e256dfe", "", "", "Evil Dead (2003) (Kyle Pittman) (Haunted House Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79d4af56036ec28f298cad964a2e2494", "", "", "Hangman Pac-Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7b6f3348dbf71ada88db0fdaf7feefe0", "", "", "3-D Corridor (Pink Spiral) (31-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -204,41 +204,41 @@ static const char* DefProps[][23] = { { "83f05ececae8be59ba1e51135f4bdcbf", "", "", "Demo Image Series #13 - Mario (4K Interleaved Chronocolour) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "862cf669cbced78f9ed31a5d375b2ebe", "", "", "Gunfight 2600 - Flicker acceptance (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "888debb162d7d1ae71025b4ab794257f", "", "", "Interleaved ChronoColour - Nude Art (17-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8b5b1e3a434ebbdc2c2a49dc68f46360", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "8b5b1e3a434ebbdc2c2a49dc68f46360", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "8da51e0c4b6b46f7619425119c7d018e", "Atari", "CX26183", "Sentinel (1990) (Atari)", "Uses Light Gun Controller (left only)", "Rare", "", "", "", "", "", "", "Lightgun", "None", "", "", "8", "144", "46", "192", "", "", "" }, - { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli / 20th Century Fox", "", "Crash Dive (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "", "" }, + { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli / 20th Century Fox", "", "Crash Dive (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "931b91a8ea2d39fe4dca1a23832b591a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "", "" }, { "9526e3db3bdfbc27989a9cbfd0ee34bf", "", "", "Atari Logo Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "97327d6962f8c64e6f926f79cd01c6b9", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "", "", "", "" }, - { "9905f9f4706223dadee84f6867ede8e3", "Funvision", "", "Challenge (Funvision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "240", "", "", "" }, + { "97327d6962f8c64e6f926f79cd01c6b9", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "", "", "", "" }, + { "9905f9f4706223dadee84f6867ede8e3", "Funvision", "", "Challenge (Funvision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "240", "", "", "" }, { "9be58a14e055b0e7581fc4d6c2f6b31d", "", "", "Adventure (Color Scrolling) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9e792a59f8795664cbaaff1ba152d731", "", "", "Bullet Demo (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a0297c4788f9e91d43e522f4c561b4ad", "Atari", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "PAL", "", "", "45", "228", "", "", "" }, + { "a0297c4788f9e91d43e522f4c561b4ad", "Atari", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "45", "228", "", "", "" }, { "a1ccf58ca588bd3e0fb35a1e2a41b423", "", "", "Greeting Cart Green Dress (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a3fee8ce15525ea00d45a06f04c215d1", "Aaron Curtis", "", "AStar (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "250", "", "", "" }, { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "a8101cb667e50a46165c6fb48c608b6b", "", "", "Kung Fu Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "aacbf0dd6021bc5f4cee6c96ff37e84f", "", "", "Death Derby (v0001) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ac5f78bae0638cf3f2a0c8d07eb4df69", "", "", "Minesweeper (V.99) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "ac5f78bae0638cf3f2a0c8d07eb4df69", "", "", "Minesweeper (V.99) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae10527840a1ac24de43730645ed508d", "Atari / Charles Morgan", "", "Planet Invaders by Charles Morgan (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "aff8cba0f2d2eb239953dd7116894a08", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "", "" }, + { "aff8cba0f2d2eb239953dd7116894a08", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, { "b21ee4639476eaec8204f00c712b7497", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "", "" }, { "b451307b8b5e29f1c5f2cf064f6c7227", "", "", "Demo Image Series #6 - Mario (Fixed) (26-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b7903268e235310dc346a164af4c7022", "UA / Thomas Jentzsch", "", "Cat Trax (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "33", "200", "YES", "", "" }, - { "b9f6fa399b8cd386c235983ec45e4355", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "152", "57", "", "", "", "" }, + { "b9f6fa399b8cd386c235983ec45e4355", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "8", "152", "57", "", "", "", "" }, { "bc526185ad324241782dc68ba5d0540b", "", "", "Dodge Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be929419902e21bd7830a7a7d746195d", "Activision", "AX-025", "Keystone Kapers (1983) (Activision)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "195", "", "", "" }, { "c16c79aad6272baffb8aae9a7fff0864", "US Games", "VC 2001", "Gopher (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "197", "", "", "" }, { "c3472fa98c3b452fa2fd37d1c219fb6f", "Atari", "CX2637 / 4975158", "Dodge 'em (1980) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "57", "180", "", "", "" }, - { "c5124e7d7a8c768e5a18bde8b54aeb1d", "", "", "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "c5124e7d7a8c768e5a18bde8b54aeb1d", "", "", "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "c73ae5ba5a0a3f3ac77f0a9e14770e73", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, - { "c9d02d3cfeef8b48fb71cb4520a4aa84", "", "", "Euchre (More for less) (PAL) (22-08-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "c9d02d3cfeef8b48fb71cb4520a4aa84", "", "", "Euchre (More for less) (PAL) (22-08-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cbad928e10aeee848786cc55394fb692", "", "", "Fu Kung! (V0.06a Cuttle Cart Compatible) (15-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd38ad19f51b1048d8e5e99c86a2a655", "", "", "Demo Image Series #5 - Flag (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cf3a9ada2692bb42f81192897752b912", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "226", "", "", "" }, + { "cf3a9ada2692bb42f81192897752b912", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "226", "", "", "" }, { "d05e371765929bf5d39c91c6ea189bec", "", "", "Death Derby (v0005 New Build) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d28afe0517a046265c418181fa9dd9a1", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "", "" }, - { "d4806775693fcaaa24cf00fc00edcdf3", "Atari", "CX26140", "Desert Falcon (1987) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "17", "", "", "", "" }, + { "d28afe0517a046265c418181fa9dd9a1", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "198", "", "", "" }, + { "d4806775693fcaaa24cf00fc00edcdf3", "Atari", "CX26140", "Desert Falcon (1987) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "17", "", "", "", "" }, { "d632b74fea533d593af82cf16e7c5e4a", "", "", "Fu Kung! (V0.13) (01-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d86deb100c6abed1588aa84b2f7b3a98", "Atari", "CX2625 / 6699827 / 4975114", "Football (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dad2ab5f66f98674f12c92abcfbf3a20", "", "", "Blue and White Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -247,41 +247,41 @@ static const char* DefProps[][23] = { { "dea0ade296f7093e71185e802b500db8", "CCE", "", "Fishing Derby (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "", "" }, { "dff33523ccd2fdc8912e84cab8e0d982", "", "", "Fu Kung! (V0.03) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1a51690792838c5c687da80cd764d78", "", "", "Alligator People (20th Century Fox) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e3c35eac234537396a865d23bafb1c84", "", "", "Nuts (Technovision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "", "", "", "" }, + { "e3c35eac234537396a865d23bafb1c84", "", "", "Nuts (Technovision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, { "e5a6e0bb7d56e2f08b237e15076e5699", "", "", "Color Table Display Helper (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e784a9d26707cfcd170a4c1c60422a72", "Starsoft", "", "Gefecht im All (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, - { "e9c71f8cdba6037521c9a3c70819d171", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox) (w-Skull Island Label) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "12", "136", "64", "187", "", "", "" }, - { "ec407a206b718a0a9f69b03e920a0185", "Starsoft", "", "Landung in der Normandie (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "e784a9d26707cfcd170a4c1c60422a72", "Starsoft", "", "Gefecht im All (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "e9c71f8cdba6037521c9a3c70819d171", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox) (w-Skull Island Label) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "64", "187", "", "", "" }, + { "ec407a206b718a0a9f69b03e920a0185", "Starsoft", "", "Landung in der Normandie (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee6665683ebdb539e89ba620981cb0f6", "Coleco", "2658", "Berenstain Bears (1982) (Coleco)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0536303f49006806bac3aec15738336", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "f1beca5a198cf08190487e5c27b8e540", "", "", "Fu Kung! (V0.16) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f4204fc92d17ed4cb567c40361ad58f1", "Inky", "", "Beanie Baby Bash by Inky (Beany Bopper Hack)", "Hack of Beany Bopper (1982) (20th Century Fox)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, - { "f6a9ea814d15b85bffe980c927df606b", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "220", "Yes", "", "" }, + { "f6a9ea814d15b85bffe980c927df606b", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "220", "Yes", "", "" }, { "f847fb8dba6c6d66d13724dbe5d95c4d", "Absolute", "AZ-042 / AG-042", "Skate Boardin' (1987) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "", "" }, { "f9de91d868d6ebfb0076af9063d7195e", "", "", "Maze Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fb0c32ef7af5b45486db663510094be8", "", "", "Demo Image Series #15 - Three Marios (NTSC) (Non-Interleave) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fbe554aa8f759226d251ba6b64a9cce4", "Atari", "CX2681", "Battlezone (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "62", "199", "", "", "No" }, - { "fd6e507b5df68beeeddeaf696b6828fa", "Activision", "", "Boxing (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "61", "", "", "", "" }, + { "fbe554aa8f759226d251ba6b64a9cce4", "Atari", "CX2681", "Battlezone (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "4", "152", "62", "199", "", "", "No" }, + { "fd6e507b5df68beeeddeaf696b6828fa", "Activision", "", "Boxing (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "61", "", "", "", "" }, { "feeae23f2eeac44b81a43e8292d0c574", "", "", "Greeting Cart Halle Berry (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "00b7b4cbec81570642283e7fc1ef17af", "Sega", "006-01", "Congo Bongo (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, - { "01297d9b450455dd716db9658efb2fae", "TechnoVision", "", "Save Our Ship (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "", "", "", "" }, + { "01297d9b450455dd716db9658efb2fae", "TechnoVision", "", "Save Our Ship (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "48", "", "", "", "" }, { "028024fb8e5e5f18ea586652f9799c96", "Coleco", "2468", "Carnival (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "212", "", "", "" }, { "038e1e79c3d4410defde4bfe0b99cc32", "Atari", "", "Aquaventure (1983) (Atari) (Prototype)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "200", "", "", "No" }, { "04dfb4acac1d0909e4c360fd2ac04480", "", "", "Jammed (2001) (XYPE) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "", "", "" }, { "05d61b925d3d2474bab83f0a79bb5df1", "", "", "Cosmic Ark Stars (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "071f84d10b343c7c05ce3e32af631687", "Atlantis-Ariola", "", "Krieg Der Sterne (Atlantis-Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "071f84d10b343c7c05ce3e32af631687", "Atlantis-Ariola", "", "Krieg Der Sterne (Atlantis-Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07c76f2d88552d20ad2c0ed7aef406c6", "", "", "Blob, The (Cody Pittman) (Halloween Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0856f202b18cd46e44fd1dc3b42e9bfb", "", "", "Frame Counter 1 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "09274c3fc1c43bf1e362fda436651fd8", "", "", "Acid Drop (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "09d19274c20768f842e8fae84b766abe", "", "", "Star Fire - Animated Patricles (06-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0ae3497e731ca0bf6a77b23441d9d9f9", "", "", "Analog Clock (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0bf1e354304f46c0caf8fc0f6f5e9525", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, - { "0cebb0bb45a856b23f56d21ce7d1bc34", "", "", "Crash Dive (1983) (20th Century Fox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "240", "", "", "" }, - { "0de53160a8b54c3aa5aed8d68c970b62", "Starsoft", "", "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "182", "", "", "" }, - { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli / CommaVid", "", "Cakewalk (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "", "" }, + { "0cebb0bb45a856b23f56d21ce7d1bc34", "", "", "Crash Dive (1983) (20th Century Fox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "240", "", "", "" }, + { "0de53160a8b54c3aa5aed8d68c970b62", "Starsoft", "", "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "182", "", "", "" }, + { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli / CommaVid", "", "Cakewalk (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "0f341d1f4e144e3163d9a5fc5a662b79", "", "", "RUN Platform Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "103f1756d9dc0dd2b16b53ad0f0f1859", "ITT Family Games", "554-33391", "Alien's Return (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "214", "", "", "" }, - { "114c599454d32f74c728a6e1f71012ba", "Activision", "AX-015", "Chopper Command (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "", "" }, + { "103f1756d9dc0dd2b16b53ad0f0f1859", "ITT Family Games", "554-33391", "Alien's Return (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "67", "214", "", "", "" }, + { "114c599454d32f74c728a6e1f71012ba", "Activision", "AX-015", "Chopper Command (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "194", "", "", "" }, { "1287535256bf5dff404839ac9e25c3e7", "", "", "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "12", "136", "39", "188", "Yes", "", "" }, { "13782adc70e285d51e2f4dd9c3094166", "", "", "Death Derby (21-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1423f560062c4f3c669d55891a2bcbe7", "CCE", "", "M.A.S.H. (CCE) (no logo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "", "" }, @@ -289,13 +289,13 @@ static const char* DefProps[][23] = { { "161ded4a85d3c78e44fffd40426f537f", "", "", "JtzBall (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "171cd6b55267573e6a9c2921fb720794", "Atari / Kurt Howe", "", "Adventure 34 by Kurt Howe (Adventure Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "None", "", "", "", "", "35", "195", "", "", "" }, { "17c0a63f9a680e7a61beba81692d9297", "US Games", "VC 2004", "Picnic (1982) (US Games) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "196", "", "", "" }, - { "18dc28bc22402f21e1c9b81344b3b8c5", "", "", "Galaxian (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "", "", "", "", "" }, - { "19a9d3f9fa1b1358fb53009444247aaf", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "59", "220", "", "", "" }, + { "18dc28bc22402f21e1c9b81344b3b8c5", "", "", "Galaxian (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, + { "19a9d3f9fa1b1358fb53009444247aaf", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "59", "220", "", "", "" }, { "1a23540d91f87584a04f184304a00648", "", "", "Race Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1c8c42d1aee5010b30e7f1992d69216e", "Mystique", "1009", "Gigolo (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "", "" }, { "1db3bc4601f22cf43be7ce015d74f59a", "", "", "Ship Demo (V 10) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1edfbde1dba5498c14dcb80277cd9b99", "", "", "Death Derby (v0006) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1f773a94d919b2a3c647172bbb97f6b4", "Atari", "CX2678", "Dumbo's Flying Circus (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "230", "", "", "" }, + { "1f773a94d919b2a3c647172bbb97f6b4", "Atari", "CX2678", "Dumbo's Flying Circus (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "27", "230", "", "", "" }, { "205070b6a0d454961dd9196a8e81d877", "", "", "Hangman Monkey Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "212d0b200ed8b45d8795ad899734d7d7", "Coca Cola", "", "Pepsi Invaders (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "224", "", "", "" }, { "2240655247d6de1c585564004a853ab7", "", "", "Fu Kung! (V0.17) (07-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -311,46 +311,46 @@ static const char* DefProps[][23] = { { "2c29182edf0965a7f56fe0897d2f84ba", "Atari", "CX26192", "Klax (1990) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2cefa695df2ed020899a7df7bb1e3a95", "", "", "A-Team (2002) (Manuel Polik And Fabrizio Zavagli) (A-Team Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2dbdca3058035d2b40c734dcf06a86d9", "Thomas Jentzsch", "", "Asteroids DC+ by Thomas Jentzsch (Asteroids Hack)", "Uses the Joystick (left) or Steering (right) Controller", "New Release (Hack)", "", "", "", "", "", "", "", "Driving", "", "", "", "", "37", "192", "Yes", "", "No" }, - { "2e842c2ee22e9dad9df16eed091315c4", "", "", "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "250", "", "", "" }, + { "2e842c2ee22e9dad9df16eed091315c4", "", "", "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "250", "", "", "" }, { "2fa5f90deb8b84ecaf64f5fb11c0fd93", "", "", "Death Derby (19-01-2003) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "30c92c685224dc7a72b9bbe5eb62d004", "", "", "Hangman Monkey Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "317a4cdbab090dcc996833d07cb40165", "Goliath", "", "Missile War (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "205", "", "", "" }, - { "321c3451129357af42a375d12afd4450", "", "", "Ikari Warriors (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "317a4cdbab090dcc996833d07cb40165", "Goliath", "", "Missile War (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "205", "", "", "" }, + { "321c3451129357af42a375d12afd4450", "", "", "Ikari Warriors (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "32f4e47a71601ab06cfb59e1c6a0b846", "Ed Federmeyer", "", "Sound X (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "", "" }, { "34303a7d4c9ad4500ca7f2ede9709595", "", "", "Excalibur 39 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3556e125681aea864e17b09f3f3b2a75", "", "", "Incoming (2 Player Demo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "36547bc6faa5132b87504e18d088e1d7", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "", "" }, + { "36547bc6faa5132b87504e18d088e1d7", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "250", "Yes", "", "" }, { "36f9a953ebdd9a8be97ccf27a2041903", "", "", "Chinese Character Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, { "384db97670817103dd8c0bbdef132445", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "40", "219", "", "", "" }, - { "391764720140c432aec454a468f77a40", "Video Game Program", "", "Miss Pack Man (Video Game Program) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "", "" }, + { "391764720140c432aec454a468f77a40", "Video Game Program", "", "Miss Pack Man (Video Game Program) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "198", "", "", "" }, { "3a2e2d0c6892aa14544083dfb7762782", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3b10106836565e5db28c7823c0898fbb", "", "", "Ghost Manor (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "230", "", "", "" }, + { "3b10106836565e5db28c7823c0898fbb", "", "", "Ghost Manor (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "230", "", "", "" }, { "3b966bf3c2ca34ac6ca1de4cf6383582", "", "", "Double-Height 6-Digit Score Display (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d2367b2b09c28f1659c082bb46a7334", "Imagic", "IA3203", "Atlantis (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, - { "3d934bb980e2e63e1ead3e7756928ccd", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "57", "205", "", "", "" }, + { "3d2367b2b09c28f1659c082bb46a7334", "Imagic", "IA3203", "Atlantis (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "3d934bb980e2e63e1ead3e7756928ccd", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "57", "205", "", "", "" }, { "3edd0525a19e4fc612d99c74dffd8716", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f75a5da3e40d486b21dfc1c8517adc0", "Atari", "", "Sky Diver (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "", "" }, - { "402b1ca3c230a60fb279d4a2a10fa677", "Atari", "", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "", "", "", "" }, - { "40d8ed6a5106245aa79f05642a961485", "Xonox", "99002", "Ghost Manor (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "230", "", "", "" }, - { "4233eb824c2b4811abef9b6d00355ae9", "Retroactive", "", "Qb (V0.10) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "", "" }, - { "4311a4115fb7bc68477c96cf44cebacf", "Funvision", "", "Challenge (Funvision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "17", "240", "", "", "" }, + { "3f75a5da3e40d486b21dfc1c8517adc0", "Atari", "", "Sky Diver (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "256", "", "", "" }, + { "402b1ca3c230a60fb279d4a2a10fa677", "Atari", "", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "", "", "", "" }, + { "40d8ed6a5106245aa79f05642a961485", "Xonox", "99002", "Ghost Manor (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "230", "", "", "" }, + { "4233eb824c2b4811abef9b6d00355ae9", "Retroactive", "", "Qb (V0.10) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "250", "Yes", "", "" }, + { "4311a4115fb7bc68477c96cf44cebacf", "Funvision", "", "Challenge (Funvision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "17", "240", "", "", "" }, { "448c2a175afc8df174d6ff4cce12c794", "", "", "Pitfall II - Lost Caverns (1984) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "461029ab23800833e9645be3e472d470", "", "", "Combat TC (v0.1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "46e9428848c9ea71a4d8f91ff81ac9cc", "", "", "Astroblast (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "46e9428848c9ea71a4d8f91ff81ac9cc", "", "", "Astroblast (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "47b82d47e491ac7fdb5053a88fccc832", "", "", "Asteroid 2 (Atari Freak 1 and Franklin Cruz)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "", "" }, { "4868a81e1b6031ed66ecd60547e6ec85", "Eric Mooney", "", "Invaders by Erik Mooney (V2.1) (1-3-98) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4999b45be0ab5a85bac1b7c0e551542b", "CCE", "", "Double Dragon (CCE)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "", "" }, - { "4ae8c76cd6f24a2e181ae874d4d2aa3d", "20th Century Fox", "11015", "Flash Gordon (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "198", "", "", "" }, + { "4999b45be0ab5a85bac1b7c0e551542b", "CCE", "", "Double Dragon (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "68", "190", "", "", "" }, + { "4ae8c76cd6f24a2e181ae874d4d2aa3d", "20th Century Fox", "11015", "Flash Gordon (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "62", "198", "", "", "" }, { "4c0fb2544ae0f8b5f7ae8bce7bd7f134", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "25", "", "", "", "" }, - { "4ca0959f846d2beada18ecf29efe137e", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "215", "", "", "" }, - { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)", "Bump 'n' Jump Hack", "", "", "E7", "", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "", "" }, + { "4ca0959f846d2beada18ecf29efe137e", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "215", "", "", "" }, + { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)", "Bump 'n' Jump Hack", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "", "" }, { "4e4895c3381aa4220f8c2795d6338237", "", "", "Backwards Cannonball v1 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "4faeb04b1b7fb0fa25db05753182a898", "", "", "2600 Digital Clock (V x.xx) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "514f911ecff2be5eeff2f39c49a9725c", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "220", "", "", "" }, + { "514f911ecff2be5eeff2f39c49a9725c", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "220", "", "", "" }, { "52bae1726d2d7a531c9ca81e25377fc3", "", "", "Space Instigators (V1.8 Fixed) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5385cf2a04de1d36ab55c73174b84db0", "", "", "Combat Rock (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "551a64a945d7d6ece81e9c1047acedbc", "Matthias Jaap", "", "Coffee Cup Soccer by matthias Jaap (Pele's Soccer Hack)", "Hack of Pele's Soccer (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "56300ed31fef018bd96768ccc982f7b4", "HES", "", "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "238", "", "", "" }, + { "56300ed31fef018bd96768ccc982f7b4", "HES", "", "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "238", "", "", "" }, { "57c5b351d4de021785cf8ed8191a195c", "", "CX26102", "Cookie Monster Munch (1983) (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "35", "192", "", "", "" }, { "599cbf919d47a05af975ad447df29497", "", "", "Baubles (V0.002) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5a734779d797ccef25dc8acfa47244c7", "", "", "Oh No! (Version 2) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -358,7 +358,7 @@ static const char* DefProps[][23] = { { "5c0227ad63300670a647fcebf595ea37", "Imagic / Josh", "", "Battle for Naboo by Josh (Atlantis Hack)", "Hack of Atlantis (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, { "5d8fb14860c2f198472b233874f6b0c9", "", "", "Boing! (PD) [a2]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "5e99aa93d0acc741dcda8752c4e813ce", "", "", "2600 Digital Clock (V b2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f46d1ff6d7cdeb4b09c39d04dfd50a1", "Atari", "CX2661", "Fun with Numbers (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "22", "", "", "", "" }, + { "5f46d1ff6d7cdeb4b09c39d04dfd50a1", "Atari", "CX2661", "Fun with Numbers (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "60358edf0c2cc76b1e549e031e50e130", "Manuel Polik", "", "Cyber Goth Galaxian by Manuel Polik (Galaxian Hack)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, { "60d304582d33e2957b73eb300a7495bb", "", "", "Jam Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61ef8c2fc43be9a04fe13fdb79ff2bd9", "", "", "Gas Gauge Demo - Revisited (2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -371,117 +371,117 @@ static const char* DefProps[][23] = { { "679d30c7886b283cbe1db4e7dbe5f2a6", "Colin Hughes", "", "Puzzle (Colin Hughes) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68597264c8e57ada93be3a5be4565096", "Data Age", "DA 1005", "Bugs (1982) (Data Age) [!]", "Uses paddle controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "698f569eab5a9906eec3bc7c6b3e0980", "", "", "Demons! (2003) (SpkLeader) (Phoenix Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6a82b8ecc663f371b19076d99f46c598", "Activision", "AX-026", "Enduro (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "12", "140", "64", "214", "", "", "" }, - { "6b71f20c857574b732e7a8e840bd3cb2", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "222", "", "", "" }, - { "6c91ac51421cb9fc72c9833c4f440d65", "ITT Family Games", "", "Cosmic Town (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "6a82b8ecc663f371b19076d99f46c598", "Activision", "AX-026", "Enduro (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "214", "", "", "" }, + { "6b71f20c857574b732e7a8e840bd3cb2", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "222", "", "", "" }, + { "6c91ac51421cb9fc72c9833c4f440d65", "ITT Family Games", "", "Cosmic Town (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "6de924c2297c8733524952448d54a33c", "CCE", "", "Moon Patrol (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "", "" }, { "6e7ed74082f39ad4166c823765a59909", "", "", "Poker Squares (V0.14) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fc394dbf21cf541a60e3b3631b817f1", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "201", "", "", "" }, + { "6fc394dbf21cf541a60e3b3631b817f1", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "62", "201", "", "", "" }, { "70a8480cfaf08776e5420365732159d2", "Rob Kudla", "", "Horizontally Scrolling Playfield Thing (Rob Kudla) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "71f09f128e76eb14e244be8f44848759", "", "", "Astro Attack (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "230", "", "", "" }, + { "71f09f128e76eb14e244be8f44848759", "", "", "Astro Attack (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "230", "", "", "" }, { "72db1194b1cc7d45b242f25eb1c148d3", "", "", "Pac-Man (1981) (Atari) [h1]", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, { "73cb1f1666f3fd30b52b4f3d760c928f", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "228", "Yes", "", "" }, { "75169c08b56e4e6c36681e599c4d8cc5", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "", "" }, - { "75e276ba12dc4504659481c31345703a", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "52", "", "", "", "" }, - { "7732e4e4cc2644f163d6650ddcc9d9df", "HES", "", "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "", "" }, + { "75e276ba12dc4504659481c31345703a", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "52", "", "", "", "" }, + { "7732e4e4cc2644f163d6650ddcc9d9df", "HES", "", "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, { "7860716fa5dbc0fffab93fb9a4cb4132", "", "", "Hangman Monkey Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79ab4123a83dc11d468fb2108ea09e2e", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "190", "", "", "" }, - { "79fcdee6d71f23f6cf3d01258236c3b9", "Atari", "CX2673", "Phoenix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "79fcdee6d71f23f6cf3d01258236c3b9", "Atari", "CX2673", "Phoenix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "7af40c1485ce9f29b1a7b069a2eb04a7", "Amiga", "3120", "Mogul Maniac (1983) (Amiga) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "33", "197", "", "", "" }, - { "7c757bb151269b2a626c907a22f5dae7", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "201", "", "", "" }, + { "7c757bb151269b2a626c907a22f5dae7", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "201", "", "", "" }, { "7d93071b3e3616093a6b5a98b0315751", "", "", "Gunfight 2600 - Music & Bugfixes 2 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, - { "7e4783a59972ae2cd8384f231757ea0b", "Atari", "CX26139", "Crossbow (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "188", "", "", "" }, - { "7f07cd2e89dda5a3a90d3ab064bfd1f6", "Ariola", "", "Boxen (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "60", "216", "", "", "" }, + { "7e4783a59972ae2cd8384f231757ea0b", "Atari", "CX26139", "Crossbow (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "188", "", "", "" }, + { "7f07cd2e89dda5a3a90d3ab064bfd1f6", "Ariola", "", "Boxen (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "216", "", "", "" }, { "7ffc2d80fd49a124808315306d19868e", "Ishido", "", "Domino (Ishido) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "81341f00b61ab37d19d1529f483d496d", "", "", "Fu Kung! (V0.04) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "819aeeb9a2e11deb54e6de334f843894", "Atari", "CX2661", "Fun with Numbers (1977) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, - { "8372eec01a08c60dbed063c5524cdfb1", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "", "", "", "" }, + { "8372eec01a08c60dbed063c5524cdfb1", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "", "", "", "" }, { "84d1cf884f029e458db196548db9c2ad", "Ishido", "", "Domino (Ishido) (PD) [b1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "85dcc70a0adeb2e001e5df387612de24", "", "", "Greeting Cart Gene (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8726c17ee7b559cb7bf2330d20972ad0", "", "", "Cave Demo (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "883258dcd68cefc6cd4d40b1185116dc", "Activision", "AZ-030", "Decathlon (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "", "" }, - { "8917f7c1ac5eb05b82331cf01c495af2", "Bitcorp", "PG202", "Space Tunnel (Bitcorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "259", "", "", "" }, + { "883258dcd68cefc6cd4d40b1185116dc", "Activision", "AZ-030", "Decathlon (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, + { "8917f7c1ac5eb05b82331cf01c495af2", "Bitcorp", "PG202", "Space Tunnel (Bitcorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "259", "", "", "" }, { "8a9d953ac3db52a313a90d6a9b139c76", "", "", "Hangman Invader Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "", "" }, + { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, { "8d00a38f4c8f8800f1c237215ac243fc", "", "", "3-D Corridor (Green) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e879aa58db41edb67cbf318b77766c4", "CCE / Thomas Jentzsch", "", "Cosmic Commuter (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "8", "152", "37", "192", "", "", "" }, - { "8fe00172e7fff4c1878dabcf11bb8dce", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "187", "Yes", "", "" }, + { "8fe00172e7fff4c1878dabcf11bb8dce", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "187", "Yes", "", "" }, { "910dd9bf98cc5bc080943e5128b15bf5", "", "", "Gunfight 2600 - Improved AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "9295570a141cdec18074c55dc7229d08", "Telegames", "", "Bump 'N' Jump (Telegames) (PAL) [!]", "", "", "", "E7", "", "", "", "", "", "", "", "PAL", "", "", "41", "188", "", "", "" }, + { "9295570a141cdec18074c55dc7229d08", "Telegames", "", "Bump 'N' Jump (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "188", "", "", "" }, { "937736d899337036de818391a87271e0", "Atari", "CX26108", "Donald Duck's Speedboat (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "", "" }, { "9469d18238345d87768e8965f9f4a6b2", "CCE", "", "Ms. Pac-Man (1982) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "No" }, { "95a89d1bf767d7cc9d0d5093d579ba61", "Playaround", "", "Lady in Wading (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "968efc79d500dce52a906870a97358ab", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "192", "", "", "" }, { "97d0151beb84acbe82aa6db18cd91b98", "", "", "Lunar Attack (2002) (Steve Engelhardt) (Z-Tack Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98e5e4d5c4dd9a986d30fd62bd2f75ae", "", "", "Air-Sea Battle (1977) (Atari) [o1][h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, - { "9989f974c3cf9c641db6c8a70a2a2267", "", "", "Colours Selector (Eckhard Stolberg) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "9b246683f44c963a50e41d6b485bee77", "", "", "Boring (PAL) (AD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "", "", "", "" }, + { "9989f974c3cf9c641db6c8a70a2a2267", "", "", "Colours Selector (Eckhard Stolberg) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9b246683f44c963a50e41d6b485bee77", "", "", "Boring (PAL) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, { "9c6d65bd3b477aace0376f705b354d68", "", "", "RPG Kernal (18-04-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9de0d45731f90a0a922ab09228510393", "20th Century Fox", "11003", "Fast Eddie (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, { "9eca521db1959156a115dee85a405194", "", "", "Fu Kung! (V0.08) (2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9f93734c68f6479eb022cab40814142e", "", "", "Push (V0.07) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a100eff2d7ae61ca2b8e65baf7e2aae8", "David Marli", "", "Muncher by David Marli (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "a19215975aeca1d98328173a124c47f7", "", "", "Death Derby (12-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a20b7abbcdf90fbc29ac0fafa195bd12", "Starsoft", "", "Motocross (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "", "" }, + { "a20b7abbcdf90fbc29ac0fafa195bd12", "Starsoft", "", "Motocross (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "45", "249", "", "", "" }, { "a302b922a8dbec47743f28b7f91d4cd8", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "a47e26096de6f6487bf5dd2d1cced294", "Atari", "CX2643 / 99815", "Code Breaker (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "PAL", "", "", "57", "", "", "", "" }, - { "a511f7ee13e4b35512f9217a677b4028", "", "", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "189", "", "", "" }, + { "a47e26096de6f6487bf5dd2d1cced294", "Atari", "CX2643 / 99815", "Code Breaker (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "57", "", "", "", "" }, + { "a511f7ee13e4b35512f9217a677b4028", "", "", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "189", "", "", "" }, { "a6127f470306eed359d85eb4a9cf3c96", "Atari", "CX26110", "Crystal Castles (1984) (Atari) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "", "" }, { "a7b584937911d60c120677fe0d47f36f", "Mattel", "MT5661", "Armor Ambush (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "", "" }, { "a8916734ff8c64ec3342f4c73fd5b57d", "", "", "Stand Alone Test Cart (SALT) Diagnostics (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a9cb638cd2cb2e8e0643d7a67db4281c", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "203", "", "", "" }, - { "ab434f4c942d6472e75d5490cc4dd128", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "", "" }, + { "ab434f4c942d6472e75d5490cc4dd128", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, { "ac0ddbcff34d064009591607746e33b8", "", "", "Atlantis FH (2003) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "acb6787b938079f4e74313a905ec3ceb", "", "", "Chronocolor Donkey Kong (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "adf1afac3bdd7b36d2eda5949f1a0fa3", "Starsoft", "", "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "adf1afac3bdd7b36d2eda5949f1a0fa3", "Starsoft", "", "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "ae83541cf4a4c0bce0adccd2c1bf6288", "", "", "Maze 003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "afe4eefc7d885c277fc0649507fbcd84", "Atari", "", "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "", "" }, - { "b061e98a4c854a672aadefa233236e51", "Atari", "CX2624", "Basic Programming (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Common", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "PAL", "8", "152", "44", "230", "Yes", "", "" }, + { "afe4eefc7d885c277fc0649507fbcd84", "Atari", "", "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "250", "Yes", "", "" }, + { "b061e98a4c854a672aadefa233236e51", "Atari", "CX2624", "Basic Programming (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Common", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "8", "152", "44", "230", "Yes", "", "" }, { "b1c4f026a854385259020744e589faa6", "", "", "Greeting Cart Blond on Brunette (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b2b78febdbc0ac184084092c1375162a", "", "", "Decathlon (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b4030c38a720dd84b84178b6ce1fc749", "Mattel", "MT5687", "International Soccer (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "", "" }, - { "b4f87ce75f7329c18301a2505fe59cd3", "Ariola", "", "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "", "" }, - { "b702641d698c60bcdc922dbd8c9dd49c", "Atari", "", "Space War (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "202", "", "", "" }, + { "b4f87ce75f7329c18301a2505fe59cd3", "Ariola", "", "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, + { "b702641d698c60bcdc922dbd8c9dd49c", "Atari", "", "Space War (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "62", "202", "", "", "" }, { "b80d50ecee73919a507498d0a4d922ae", "20th Century Fox", "11008", "Fantastic Voyage (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "193", "", "", "" }, { "b95a6274ca0e0c773bfdc06b4c3daa42", "", "", "3-D Corridor (29-03-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ba638f02faac0878c3b0f9669923485f", "", "", "Image - Baboon (10-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bb745c893999b0efc96ea9029e3c62ca", "Play Video", "", "Planet Patrol (1982) (Play Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "", "" }, - { "bce93984b920e9b56cf24064f740fe78", "Atari", "", "Checkers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "20", "140", "50", "", "", "", "" }, + { "bce93984b920e9b56cf24064f740fe78", "Atari", "", "Checkers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "20", "140", "50", "", "", "", "" }, { "be1922bd8e09d74da471287e1e968653", "", "", "Hangman Pacman Demo (Cropsy) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bf6b753ec11acfec3b40f8a4c476e77d", "", "", "Image - Girl (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c02e1afa0671e438fd526055c556d231", "", "", "A-Team, The (Atari) (Prototype) (PAL-60) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "c02e1afa0671e438fd526055c556d231", "", "", "A-Team, The (Atari) (Prototype) (PAL-60) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c1fdd44efda916414be3527a47752c75", "Parker Bros", "PB5920", "G.I. Joe - Cobra Strike (1983) (Parker Bros) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "8", "152", "27", "", "", "", "" }, { "c2a37f1c7603c5fd97df47d6c562abfa", "", "", "Bar-Score Demo (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3f53993ade534b0982ca3a286c85bb5", "", "", "Full Screen Bitmap Drawing System (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c4b73c35bc2f54b66cd786f55b668a82", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "", "" }, { "c59633dbebd926c150fb6d30b0576405", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "", "", "" }, { "c68a6bafb667bad2f6d020f879be1d11", "Atari", "", "Crystal Castles (1984) (Atari) (NTSC) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "", "" }, - { "c7d5819b26b480a49eb26aeb63cc831e", "", "AX-012", "Ice Hockey (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "", "" }, + { "c7d5819b26b480a49eb26aeb63cc831e", "", "AX-012", "Ice Hockey (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, { "c8c7da12f087e8d16d3e6a21b371a5d3", "", "", "Demo Image Series #9 - Genius (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ca4f8c5b4d6fb9d608bb96bc7ebd26c7", "Mattel", "MT4317", "Adventures of Tron (1983) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "46", "180", "", "", "" }, { "cb8399dc0d409ff1f531ef86b3b34953", "", "", "Demo Image Series #12 - Luigi And Mario (01-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cbe5a166550a8129a5e6d374901dffad", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "37", "194", "", "", "" }, { "ccbd36746ed4525821a8083b0d6d2c2c", "", "CX2649", "Asteroids [p1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "", "No" }, - { "cd88ef1736497288c4533bcca339f881", "", "", "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "ce904c0ae58d36d085cd506989116b0b", "Telegames", "", "International Soccer (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "", "" }, + { "cd88ef1736497288c4533bcca339f881", "", "", "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "ce904c0ae58d36d085cd506989116b0b", "Telegames", "", "International Soccer (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, { "cfb3260c603b0341d49ddfc94051ec10", "Dactar", "", "Boxing (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, { "cff1e9170bdbc29859b815203edf18fa", "Retroactive", "", "Push (V0.01) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "d0af33865512e9b6900714c26db5fa23", "Telegames", "", "Armor Ambush (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "195", "", "", "" }, + { "d0af33865512e9b6900714c26db5fa23", "Telegames", "", "Armor Ambush (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "195", "", "", "" }, { "d1a1841b7f2007a24439ac248374630a", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "d2d8c4f1ea7f347c8bcc7d24f45aa338", "", "", "20 Sprites at Once Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "230", "Yes", "", "" }, + { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "230", "Yes", "", "" }, { "d4aa6d6095258ce46aaf6f144b09eea7", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [b2]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d605ed12f4eaaaec3dcd5aa909a4bad7", "", "", "Chronocolor Frame Demo (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d6dc9b4508da407e2437bfa4de53d1b2", "HomeVision", "", "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "205", "", "", "" }, - { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "64", "209", "", "", "" }, + { "d6dc9b4508da407e2437bfa4de53d1b2", "HomeVision", "", "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "67", "205", "", "", "" }, + { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "64", "209", "", "", "" }, { "d90205e29bb73a4cdf28ea7662ba0c3c", "", "", "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "da732c57697ad7d7af414998fa527e75", "Atari", "CX26129", "Midnight Magic (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "61", "200", "Yes", "", "" }, - { "dafc3945677ccc322ce323d1e9930beb", "", "", "A-Team, The (Atari) (Prototype) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "", "" }, + { "da732c57697ad7d7af414998fa527e75", "Atari", "CX26129", "Midnight Magic (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "61", "200", "Yes", "", "" }, + { "dafc3945677ccc322ce323d1e9930beb", "", "", "A-Team, The (Atari) (Prototype) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "", "", "", "" }, { "dba270850ae997969a18ee0001675821", "Greg Troutman", "", "Dark Mage (4K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "", "" }, { "dc13df8420ec69841a7c51e41b9fbba5", "", "CX26132", "Garfield (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dd1ecb349691aa4805eb9835dc87c094", "", "", "Greeting Cart Original(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "de0173ed6be9de6fd049803811e5f1a8", "Xonox", "", "Motocross Racer (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "de61a0b171e909a5a4cfcf81d146dbcb", "Starsoft", "", "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "194", "", "", "" }, + { "de61a0b171e909a5a4cfcf81d146dbcb", "Starsoft", "", "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "55", "194", "", "", "" }, { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "", "No" }, { "df94affaece8b9a02da82e971ea9c0ca", "", "", "Image - Nude2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e040df95a055b18ebdb094e904cb71b2", "", "", "Score Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -490,7 +490,7 @@ static const char* DefProps[][23] = { { "e39843c56b7a4a08b18fa7949ec3ee6b", "", "", "Joshua Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e45449bde2f467a52da36ddd5b427d76", "", "", "Image - Qb Cover Art (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e51c23389e43ab328ccfb05be7d451da", "Starpath", "", "Sweat! - The Decathalon Game (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "39", "198", "", "", "" }, - { "e5fcc62e1d73706be7b895e887e90f84", "Atari", "", "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "", "" }, + { "e5fcc62e1d73706be7b895e887e90f84", "Atari", "", "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "e6e5bb0e4f4350da573023256268313d", "Ariola / Thomas Jentzsch", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e800e4aec7c6c54c9cf3db0d1d030058", "", "", "Qb (2.06) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "e923001015bedd7901569f035d9c592c", "", "", "Adventure II (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, @@ -502,19 +502,19 @@ static const char* DefProps[][23] = { { "efa1098c7d091b940c2543abe372f036", "Scott Stilphen", "", "E.T. The Extra-Terrestrial by Scott Stilphen (Pits Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "", "" }, { "f0b7db930ca0e548c41a97160b9f6275", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "16", "128", "37", "194", "", "", "" }, { "f16c709df0a6c52f47ff52b9d95b7d8d", "", "CX2662", "Hangman (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f280976d69d6e27a48506bd6bad11dcd", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "PAL", "", "", "38", "", "", "", "" }, + { "f280976d69d6e27a48506bd6bad11dcd", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "38", "", "", "", "" }, { "f38358cd8f5ecfedffd5aca1aa939f18", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex) [a1]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "f48735115ec302ba8bb2d2f3a442e814", "", "", "Dancing Plates (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "250", "Yes", "", "" }, - { "f687ec4b69611a7f78bd69b8a567937a", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "f48735115ec302ba8bb2d2f3a442e814", "", "", "Dancing Plates (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "250", "Yes", "", "" }, + { "f687ec4b69611a7f78bd69b8a567937a", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "f714a223954c28eccf459295517dcae6", "", "", "Big - Move This Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, { "f7e07080ed8396b68f2e5788a5c245e2", "", "TP-617", "Farmyard Fun (Telegames) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "212", "", "", "" }, { "f8ff34b53d86f55bd52d7a520af6d1dc", "", "", "Big Dig (04-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f97dee1aa2629911f30f225ca31789d4", "Avalon Hill", "", "Out of Control (1983) (Avalon Hill)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fa2f5f409cff75c9b9b9a5af84bd9909", "", "", "Greeting Cart Brook Burke Closeup(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "faebcb2ef1f3831b2fc1dbd39d36517c", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "66", "191", "", "", "" }, + { "faebcb2ef1f3831b2fc1dbd39d36517c", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "66", "191", "", "", "" }, { "fb4ca865abc02d66e39651bd9ade140a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "198", "", "", "" }, - { "fbac6476e7b2b20d246202af81662c88", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "59", "189", "", "", "" }, - { "fc2233fc116faef0d3c31541717ca2db", "Atari", "CX2646", "Pac-Man (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "223", "", "", "" }, + { "fbac6476e7b2b20d246202af81662c88", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "59", "189", "", "", "" }, + { "fc2233fc116faef0d3c31541717ca2db", "Atari", "CX2646", "Pac-Man (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "51", "223", "", "", "" }, { "fcf8e306f6615f74feba5cb25550038c", "", "", "Blue Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fdd4995a50395db14f518f63c2d63438", "", "", "Oh No! (Version 3) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe9ae625d924b54c9f8a14ac9a0f6c6d", "", "", "High Bid! (BG Dodson) (Pepsi Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -524,29 +524,29 @@ static const char* DefProps[][23] = { { "012020625a3227815e47b37fd025e480", "Atari", "CX2632", "Better Space Invaders (1999) (Rob Kudla) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "0164f26f6b38a34208cd4a2d0212afc3", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, { "02066b17f29082412c6754c1a2d6302e", "", "", "Demo Image Series #3 - Baboon (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "02a5fc90a0d183f870e8eebac1f16591", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "246", "", "", "" }, + { "02a5fc90a0d183f870e8eebac1f16591", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "246", "", "", "" }, { "033e21521e0bf4e54e8816873943406d", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "229", "", "", "" }, { "04014d563b094e79ac8974366f616308", "", "CX2690", "Pengo - 1 Player Only (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, - { "049626cbfb1a5f7a5dc885a0c4bb758e", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "58", "190", "", "", "" }, + { "049626cbfb1a5f7a5dc885a0c4bb758e", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "58", "190", "", "", "" }, { "0546f4e6b946f38956799dd00caab3b1", "HES / Thomas Jentzsch", "", "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "196", "", "", "" }, - { "05b45ba09c05befa75ac70476829eda0", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "PAL", "8", "144", "58", "199", "", "", "" }, + { "05b45ba09c05befa75ac70476829eda0", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "8", "144", "58", "199", "", "", "" }, { "05ebd183ea854c0a1b56c218246fbbae", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "06cfd57f0559f38b9293adae9128ff88", "Telegames", "", "Adventures on GX-12 (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "193", "", "", "" }, + { "06cfd57f0559f38b9293adae9128ff88", "Telegames", "", "Adventures on GX-12 (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "193", "", "", "" }, { "073cb76b006af034fd150be3f5e0e7e6", "", "", "Mobile 48 Sprite Kernel (Bug Fixed) (10-01-2003) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "075ec8eb0aa39f0539bbaf5980203edb", "", "", "Image - Megaman (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07f91e33e76f53bb9d2731fd5d8a35a5", "Atari", "CX2632", "Space Invaders (1978) (Atari) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "083b17a1a6b3efc464ba7e789f1e194d", "", "", "Greeting Cart (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0894aa7be77521f9df562be8d9555fe6", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, - { "08f4dc6f118f7c98e2406c180c08e78e", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "55", "205", "", "", "" }, + { "0894aa7be77521f9df562be8d9555fe6", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "08f4dc6f118f7c98e2406c180c08e78e", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "55", "205", "", "", "" }, { "09388bf390cd9a86dc0849697b96c7dc", "", "AK-045", "Pete Rose Baseball (1988) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "097074f24cde141fe6a0f26a10333265", "", "", "Marble Craze (V0.90) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "09e1ecf9bd2a3030d5670dba7a65e78d", "Atari", "CX2654", "Haunted House (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "196", "", "", "" }, + { "09e1ecf9bd2a3030d5670dba7a65e78d", "Atari", "CX2654", "Haunted House (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "196", "", "", "" }, { "0acaf71e60b89f6b6eab63db6ab84510", "", "", "This Planet Sucks (Greg Troutman) [a2]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "", "" }, - { "0afe6ae18966795b89314c3797dd2b1e", "", "", "Moon Patrol (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "189", "", "", "" }, + { "0afe6ae18966795b89314c3797dd2b1e", "", "", "Moon Patrol (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "189", "", "", "" }, { "0b55399cf640a2a00ba72dd155a0c140", "Imagic", "O3205", "Fathom (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "Yes", "", "" }, { "0c0392db94a20e4d006d885abbe60d8e", "", "", "Dodge Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0cb7af80fd0ddef84844481d85e5d29b", "", "", "Mr. Pac-Man (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0d1b3abf681a2fc9a6aa31a9b0e8b445", "Atari", "", "Laser Blast (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "", "", "", "" }, + { "0d1b3abf681a2fc9a6aa31a9b0e8b445", "Atari", "", "Laser Blast (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "55", "", "", "", "" }, { "0d90a0ee73d55539b7def24c88caa651", "Activision", "AG-005", "Skiing (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, { "0e0808227ef41f6825c06f25082c2e56", "", "", "Candi (Space Invaders Hack)[o1]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "0e224ea74310da4e7e2103400eb1b4bf", "", "", "Mind Maze (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -557,45 +557,45 @@ static const char* DefProps[][23] = { { "106855474c69d08c8ffa308d47337269", "Atari", "CX26151", "Dark Chambers (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "48", "170", "Yes", "", "No" }, { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "194", "", "", "" }, { "11cf751bc8173db105eabd119c5844ba", "", "", "Star Fire - Crosshair (12-02-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1267e3c6ca951ff1df6f222c8f813d97", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "211", "", "", "" }, - { "130c5742cd6cbe4877704d733d5b08ca", "ITT Family Games", "", "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "239", "", "", "" }, + { "1267e3c6ca951ff1df6f222c8f813d97", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "58", "211", "", "", "" }, + { "130c5742cd6cbe4877704d733d5b08ca", "ITT Family Games", "", "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "239", "", "", "" }, { "135708b9a7dd20576c1b66ab2a41860d", "", "", "Hangman Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13a37cf8170a3a34ce311b89bde82032", "Atari", "CX2684", "Galaxian (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "45", "198", "", "", "" }, + { "13a37cf8170a3a34ce311b89bde82032", "Atari", "CX2684", "Galaxian (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "45", "198", "", "", "" }, { "13d8326bf5648db4dafce45d25e62ddd", "", "", "Atari Logo Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1428029e762797069ad795ce7c6a1a93", "Sega", "", "Thunderground (1983) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "250", "Yes", "", "" }, + { "1428029e762797069ad795ce7c6a1a93", "Sega", "", "Thunderground (1983) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "250", "Yes", "", "" }, { "14c2548712099c220964d7f044c59fd9", "", "", "Boing! (PD)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "184", "Yes", "", "" }, - { "153f40e335e5cb90f5ce02e54934ab62", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "184", "", "", "" }, + { "153f40e335e5cb90f5ce02e54934ab62", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "184", "", "", "" }, { "15bf2ef7583bfcbbba630847a1dc5539", "Erik Eid", "", "Euchre (Jul 15) (2002) (Eric Eid) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "163e7e757e2dc44469123ff0e5daec5e", "", "", "Many Blue Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, { "16fbb36a6124567405a235821e8f69ee", "", "", "Star Fire (28-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1738b2e3f25ab3eef3cecb95e1d0d957", "", "", "Hangman Monkey Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17754da584db6f22838eea255e68b31e", "", "", "Death Derby (v0010) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1802cc46b879b229272501998c5de04f", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari)", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "27", "", "", "", "" }, - { "18b28b386abdadb3a700ac8fb68e639a", "Manuel Polik", "", "Gunfight 2600 (MP) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "195", "", "", "" }, + { "18b28b386abdadb3a700ac8fb68e639a", "Manuel Polik", "", "Gunfight 2600 (MP) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "61", "195", "", "", "" }, { "18f299edb5ba709a64c80c8c9cec24f2", "Bomb", "CA282", "Great Escape (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "220", "", "", "" }, - { "199985cae1c0123ab1aef921daace8be", "", "", "Euchre (Release Candidate 2) (PAL) (01-10-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "19abaf2144b6a7b281c4112cff154904", "", "", "Asteroids (1979) (Atari) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "", "" }, - { "19e739c2764a5ab9ed08f9095aa2af0b", "Atari", "CX26117", "Obelix (1983) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "194", "", "", "" }, + { "199985cae1c0123ab1aef921daace8be", "", "", "Euchre (Release Candidate 2) (PAL) (01-10-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19abaf2144b6a7b281c4112cff154904", "", "", "Asteroids (1979) (Atari) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "220", "Yes", "", "" }, + { "19e739c2764a5ab9ed08f9095aa2af0b", "Atari", "CX26117", "Obelix (1983) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "63", "194", "", "", "" }, { "1b1daaa9aa5cded3d633bfcbeb06479c", "", "", "Ship Demo (V 1502) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1c3f3133a3e5b023c77ecba94fd65995", "", "", "Planet Patrol (CCE) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "", "" }, { "1cca2197d95c5a41f2add49a13738055", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "38", "", "", "", "" }, { "1d5eac85e67b8cff1377c8dba1136929", "", "", "Chronocolor Donkey Kong Sideways (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1e0ef01e330e5b91387f75f700ccaf8f", "Starsoft", "", "Mein Weg (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "", "" }, - { "1e89f722494608d6ea15a00d99f81337", "Activision", "", "River Raid (1982) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "201", "", "", "" }, - { "1ee9c1ba95cef2cf987d63f176c54ac3", "Atari", "CX2675", "Ms. Pac-Man (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "No" }, + { "1e0ef01e330e5b91387f75f700ccaf8f", "Starsoft", "", "Mein Weg (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, + { "1e89f722494608d6ea15a00d99f81337", "Activision", "", "River Raid (1982) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "201", "", "", "" }, + { "1ee9c1ba95cef2cf987d63f176c54ac3", "Atari", "CX2675", "Ms. Pac-Man (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "No" }, { "1f349dd41c3f93c4214e5e308dccb056", "", "", "Virtual Pet Demo 2 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "", "" }, { "1fa58679d4a39052bd9db059e8cda4ad", "CCE", "", "Laser Gates (1983) (CCE) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "188", "", "", "" }, { "2016726db38ad6a68b4c48ba6fe51557", "Eric Mooney", "", "Invaders 2 by Eric Mooney (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "", "Donkey Kong Junior (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "", "Donkey Kong Junior (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "211f76dff0b7dad3f6fcac9d938ee61a", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "2179dfd7edee76efafe698c1bc763735", "", "", "Yellow Submarine (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "21d2c435bcccde7792d82844b3cf60f4", "Atari", "CX2677", "Dig Dug (V2) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "45", "216", "", "", "" }, - { "22675cacd9b71dea21800cbf8597f000", "Atari", "CX2605", "Outlaw - GunSlinger (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "230", "", "", "" }, + { "21d2c435bcccde7792d82844b3cf60f4", "Atari", "CX2677", "Dig Dug (V2) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "45", "216", "", "", "" }, + { "22675cacd9b71dea21800cbf8597f000", "Atari", "CX2605", "Outlaw - GunSlinger (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "61", "230", "", "", "" }, { "22f6b40fc82110d68e50a1208ae0bb97", "", "", "Purple Bar Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "23e4ca038aba11982e1694559f3be10f", "", "", "Big Dig (V3) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "244c6de27faff527886fc7699a41c3be", "", "", "Matt Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "193", "", "", "" }, - { "24b5f4bbdb853eca38ea0cae2dfe73a1", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "", "" }, - { "2517827950fee41a3b9de60275c8aa6a", "Activision", "", "Fishing Derby (1980) (Activision) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "188", "", "", "" }, + { "244c6de27faff527886fc7699a41c3be", "", "", "Matt Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "193", "", "", "" }, + { "24b5f4bbdb853eca38ea0cae2dfe73a1", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, + { "2517827950fee41a3b9de60275c8aa6a", "Activision", "", "Fishing Derby (1980) (Activision) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "188", "", "", "" }, { "25a943e9d5e312b516660b0627352448", "", "", "Image - Baboon (Interlaced Demo 1) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25e73efb9a6edf119114718bd2f646ba", "", "", "Miss Piggy's Wedding (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "28", "195", "", "", "" }, { "2683d29a282dd059535ac3bb250f540d", "", "", "Space Treat (12-01-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -610,9 +610,9 @@ static const char* DefProps[][23] = { { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "2b42da79a682ed6e2d735facbf70107e", "", "", "DKjr Improved (Donkey Kong Junior Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2bf34b6ad7d2317a2d0808b3fb93571b", "", "", "Easy Playfield Graphics (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2c3b2843295c9d6b16996971180a3fe9", "", "", "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "240", "", "", "" }, + { "2c3b2843295c9d6b16996971180a3fe9", "", "", "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "240", "", "", "" }, { "2c9fadd510509cc7f28f1ccba931855f", "", "", "Hangman Invader Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2d16a8b59a225ea551667be45f554652", "Starsoft", "", "Der Geheimkurier (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "", "", "", "" }, + { "2d16a8b59a225ea551667be45f554652", "Starsoft", "", "Der Geheimkurier (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "", "", "", "" }, { "2d76c5d1aad506442b9e9fb67765e051", "Apollo", "", "Lost Luggage (1981) (Apollo) (NTSC) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "", "" }, { "2e0aed5bb619edcefa3fafb4fbe7c551", "", "", "Qb (2.06) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "2e663eaa0d6b723b645e643750b942fd", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "191", "", "", "" }, @@ -620,17 +620,17 @@ static const char* DefProps[][23] = { { "2f273c423471d125d32d1d54d58f063a", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" }, { "3025bdc30b5aec9fb40668787f67d24c", "", "", "Demo Image Series #14 - Two Marios (4K Interleaved Chronocolour Vertical Movement) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3051b6071cb26377cd428af155e1bfc4", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "47", "195", "", "", "" }, - { "30e0ab8be713208ae9a978b34e9e8e8c", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "45", "229", "", "", "" }, - { "313243fc41e49ef6bd3aa9ebc0d372dd", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "30e0ab8be713208ae9a978b34e9e8e8c", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "45", "229", "", "", "" }, + { "313243fc41e49ef6bd3aa9ebc0d372dd", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "318a9d6dda791268df92d72679914ac3", "Activision", "AX-017", "Megamania (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, { "31f4692ee2ca07a7ce1f7a6a1dab4ac9", "", "CX2642 / 6699814", "Concentration (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "32244e55ce6ec6bfbd763f33384bdc2e", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, - { "328949872e454181223a80389d03c122", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "", "" }, + { "328949872e454181223a80389d03c122", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, { "331938989f0f33ca39c10af4c09ff640", "", "", "Combat - Tank AI (19-04-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "33d68c3cd74e5bc4cf0df3716c5848bc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "Yes", "", "" }, { "34340c8eecd1e557314789cc6477e650", "Joe Grand", "", "SCSIcide Pre-release 4 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "34ca2fcbc8ba4a0b544acd94991cfb50", "Atari", "", "Dukes of Hazzard V2 (Atari) (Prototype) [!]", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, - { "3577e19714921912685bb0e32ddf943c", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "237", "Yes", "", "" }, + { "3577e19714921912685bb0e32ddf943c", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "237", "Yes", "", "" }, { "3604e725e81dd0abede07fd1c82eb058", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "", "" }, { "3685060707df27d4091ba0ea2dc4b059", "", "", "PezZerk - PezMan in Ghost Manor (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "36c29ceee2c151b23a1ad7aa04bd529d", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "48", "171", "", "", "No" }, @@ -645,10 +645,10 @@ static const char* DefProps[][23] = { { "3b37ebc0674e3d5e49ffbdc4b65607a6", "", "", "Greeting Cart Decepticon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3b86a27132fb74d9b35d4783605a1bcb", "", "", "Wizard (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, { "3c4a6f613ca8ba27ce9e43c6c92a3128", "", "", "Qb (V0.04) (Non-Lax Version) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3cbdf71bb9fd261fbc433717f547d738", "CCE", "PG206", "Bobby is Going Home (CCE) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "245", "", "", "" }, + { "3cbdf71bb9fd261fbc433717f547d738", "CCE", "PG206", "Bobby is Going Home (CCE) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "46", "245", "", "", "" }, { "3d48b8b586a09bdbf49f1a016bf4d29a", "", "TP-606", "Hole Hunter (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "31", "238", "", "", "" }, { "3d8a2d6493123a53ade45e3e2c5cafa0", "Sears", "99843 / 75118", "Sky Diver (1978) (Atari) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "", "", "", "" }, - { "3e03086da53ecc29d855d8edf10962cb", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "216", "Yes", "", "" }, + { "3e03086da53ecc29d855d8edf10962cb", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "42", "216", "Yes", "", "" }, { "3e90cf23106f2e08b2781e41299de556", "Activision", "AX-018", "Pitfall! (1982) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, { "3f01bd6d059396f495a4cde7de0ab180", "", "", "Qb (Special Edition) (NTSC) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "3f540a30fdee0b20aed7288e4a5ea528", "Atari", "CX2670", "Atari Video Cube (1982) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "" }, @@ -661,19 +661,19 @@ static const char* DefProps[][23] = { { "425ee444a41d218598893d6b6e03431a", "", "", "Invaders Demo (2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42b2c3b4545f1499a083cfbc4a3b7640", "US Games", "VC 2003", "Eggomania (1982) (US Games)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "43c7eb836378b1b3df6788d908940b59", "", "", "Death Derby (2LK_16) (24-03-2003) (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4474b3ad3bf6aabe719a2d7f1d1fb4cc", "Activision", "AX-039", "Kung Fu Master (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "", "" }, + { "4474b3ad3bf6aabe719a2d7f1d1fb4cc", "Activision", "AX-039", "Kung Fu Master (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "192", "", "", "" }, { "45040679d72b101189c298a864a5b5ba", "20th Century Fox", "11022", "SpaceMaster X-7 (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "32", "205", "", "", "" }, - { "458883f1d952cd772cf0057abca57497", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "183", "", "", "" }, + { "458883f1d952cd772cf0057abca57497", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "183", "", "", "" }, { "463e66ad98806a49106cffa49c08e2ed", "", "", "Interlace Game Demo (01-09-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4690fdb70c86604bb35da26696818667", "", "", "Euchre (Release Candidate) (NTSC) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "470878b9917ea0348d64b5750af149aa", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, { "4799a40b6e889370b7ee55c17ba65141", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "26", "228", "", "", "" }, - { "47cd61f83457a0890de381e478f5cf5f", "Imagic", "O3205", "Fathom (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "192", "Yes", "", "" }, + { "47cd61f83457a0890de381e478f5cf5f", "Imagic", "O3205", "Fathom (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "192", "Yes", "", "" }, { "48287a9323a0ae6ab15e671ac2a87598", "Zellers", "", "Laser Volley (1983) (Zellers) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "188", "", "", "" }, { "48f18d69799a5f5451a5f0d17876acef", "", "", "Criminal Pursuit (Emag)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "Yes", "", "" }, - { "493e90602a4434b117c91c95e73828d1", "Telegames", "", "Lock 'N' Chase (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "493e90602a4434b117c91c95e73828d1", "Telegames", "", "Lock 'N' Chase (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "4a2fe6f0f6317f006fd6d4b34515448b", "", "", "Warring Worms (Midwest Classic Edition) (08-06-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135", "RealSports Boxing (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "185", "", "", "" }, + { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135", "RealSports Boxing (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "185", "", "", "" }, { "4afe528a082f0d008e7319ebd481248d", "", "", "Multi-Color Demo 1 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b9581c3100a1ef05eac1535d25385aa", "", "", "I.Q. 180 (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "235", "", "", "" }, { "4c39a2c97917d3d71739b3e21f60bba5", "", "", "Whale (Sub Scan Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -683,7 +683,7 @@ static const char* DefProps[][23] = { { "4dd6c7ab9ef77f2b4950d8fc7cd42ee1", "Retroactive", "", "Qb (V2.04) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "4e15ddfd48bca4f0bf999240c47b49f5", "", "50010", "Death Trap (1983) (Avalon Hill)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "4e99ebd65a967cabf350db54405d577c", "Coleco", "2663", "Time Pilot (1983) (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "193", "", "", "" }, - { "4f781f0476493c50dc578336f1132a67", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [p1][o1][!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "PAL", "", "", "54", "205", "", "", "" }, + { "4f781f0476493c50dc578336f1132a67", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [p1][o1][!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "54", "205", "", "", "" }, { "4fc1b85b8074b4b9436d097900e34f29", "", "", "John K Harvey's Equalizer (NTSC) (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "50ef88f9a5e0e1e6b86e175362a27fdb", "", "", "Multi-Sprite Game V2.4 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "51de328e79d919d7234cf19c1cd77fbc", "Atari", "CX2678", "Dukes of Hazzard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, @@ -700,33 +700,33 @@ static const char* DefProps[][23] = { { "58e313e2b5613b2439b5f12bb41e3eef", "", "", "Cube Conquest (Demo Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59e96de9628e8373d1c685f5e57dcf10", "Mystique", "1003", "Beat 'Em and Eat 'Em (1982) (Mystique) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "5a6febb9554483d8c71c86a84a0aa74e", "CCE", "2653", "Donkey Kong Junior (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, - { "5a93265095146458df2baf2162014889", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "219", "", "", "" }, + { "5a93265095146458df2baf2162014889", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "219", "", "", "" }, { "5af02776ebcdd8b5e39c4dfae61019e1", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 122283)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5b6f5bcbbde42fc77d0bdb3146693565", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "5b6f5bcbbde42fc77d0bdb3146693565", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "5bc9998b7e9a970e31d2cb60e8696cc4", "", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "5c1b1aa78b7609d43c5144c3b3b60adf", "", "", "Demo Image Series #8 - Two Marios (Different Interlacing) (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d2cc33ca798783dee435eb29debf6d6", "Atari", "", "Commando (1988) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "183", "", "", "" }, { "5dccf215fdb9bbf5d4a6d0139e5e8bcb", "Froggo", "FG 1009", "Sea Hunt (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "197", "", "", "" }, { "5e0c37f534ab5ccc4661768e2ddf0162", "", "5667 A106", "Glacier Patrol (1983) (Telegames)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5eeb81292992e057b290a5cd196f155d", "Wizard Video Games", "008", "Texas Chainsaw Massacre, The (1983) (Wizard Video)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f316973ffd107f7ab9117e93f50e4bd", "US Games", "VC 1004", "Commando Raid (1982) (US Games) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "5f316973ffd107f7ab9117e93f50e4bd", "US Games", "VC 1004", "Commando Raid (1982) (US Games) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "5f69453a69f21dc49697a80d2e933491", "", "", "Star Fire - Reduced Flickering (06-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5fb71cc60e293fe10a5023f11c734e55", "", "", "This Planet Sucks (Fix) (27-12-2002) (Greg Troutman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, - { "603c7a0d12c935df5810f400f3971b67", "Bitcorp", "", "Mr. Postman (1983) (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "239", "", "", "" }, + { "603c7a0d12c935df5810f400f3971b67", "Bitcorp", "", "Mr. Postman (1983) (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "239", "", "", "" }, { "6076b187a5d8ea7a2a05111c19b5d5cd", "", "", "Fu Kung! (V0.14) (01-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "613abf596c304ef6dbd8f3351920c37a", "", "", "Boring Pac-man (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61631c2f96221527e7da9802b4704f93", "", "", "Commando (1988) (Activision) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "183", "", "", "" }, - { "6272f348a9a7f2d500a4006aa93e0d08", "", "", "RealSports Soccer (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, + { "6272f348a9a7f2d500a4006aa93e0d08", "", "", "RealSports Soccer (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (8K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "", "" }, { "637efac676ff063f2fbb0abff77c4fa5", "", "", "Noize Maker Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63c7395d412a3cd095ccdd9b5711f387", "Eric Ball", "ELB005", "Skeleton+ (PAL)", "Stereo sound", "Homebrew", "Stereo", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "643e6451eb6b8ab793eb60ba9c02e000", "", "", "Ghostbusters II (V2)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "242", "Yes", "", "" }, + { "63c7395d412a3cd095ccdd9b5711f387", "Eric Ball", "ELB005", "Skeleton+ (PAL)", "Stereo sound", "Homebrew", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "643e6451eb6b8ab793eb60ba9c02e000", "", "", "Ghostbusters II (V2)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "242", "Yes", "", "" }, { "64b8e19c767191ccdc97acc6904c397b", "Jeffry Johnston", "", "Radial Pong - Version 6 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6522717cfd75d1dba252cbde76992090", "ITT Family Games", "554-33391", "Meteor Defense (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "6522717cfd75d1dba252cbde76992090", "ITT Family Games", "554-33391", "Meteor Defense (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "65917ae29a8c9785bb1f2acb0d6aafd0", "", "", "Junkosoft One Year Demo (1999) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "65bd29e8ab1b847309775b0de6b2e4fe", "Coleco", "2667", "Roc n' Rope (1984) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "6651e2791d38edc02c5a5fd7b47a1627", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 040584)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "66706459e62514d0c39c3797cbf73ff1", "Video Gems", "", "Treasure Below (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "PAL", "8", "152", "56", "230", "", "", "" }, + { "66706459e62514d0c39c3797cbf73ff1", "Video Gems", "", "Treasure Below (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "", "8", "152", "56", "230", "", "", "" }, { "66b54641b5786ea3ff0215aa39d61e01", "", "", "KC Pacman (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "675ae9c23fa1aae376cea86cad96f9a5", "", "", "Poker Squares (V0.25) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "67931b0d37dc99af250dd06f1c095e8d", "CommaVid", "CM-004", "Room of Doom (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, @@ -736,52 +736,52 @@ static const char* DefProps[][23] = { { "691d67910b08b63de8631901d1887c1f", "Starpath", "", "Survival Island (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "No" }, { "69974dd5d6420b90898cde50aec5ef39", "Activision", "AG-009", "Freeway (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, { "6a2c68f7a77736ba02c0f21a6ba0985b", "Atari", "", "Computer Chess (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "199", "", "", "" }, - { "6a882fb1413912d2ce5cf5fa62cf3875", "", "TP-605", "Dragon Defender (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "32", "249", "Yes", "", "" }, + { "6a882fb1413912d2ce5cf5fa62cf3875", "", "TP-605", "Dragon Defender (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "249", "Yes", "", "" }, { "6b01a519b413f8cfa2f399f4d2841b42", "", "", "Aphex Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b7a56b6ac2ca4bf9254474bf6ed7d80", "", "", "Horizonal Color Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, - { "6c1f3f2e359dbf55df462ccbcdd2f6bf", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "", "" }, + { "6c1f3f2e359dbf55df462ccbcdd2f6bf", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "195", "", "", "" }, { "6cd1dc960e3e8d5c5e0fbe67ab49087a", "", "", "Vertical Playfield Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d8a04ee15951480cb7c466e5951eee0", "Zirok", "", "Canguru (Zirok) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6e19428387686a77d8c8d2f731cb09e0", "", "", "Purple Cross Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6e59dd52f88c00d5060eac56c1a0b0d3", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "217", "", "", "" }, + { "6e59dd52f88c00d5060eac56c1a0b0d3", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "56", "217", "", "", "" }, { "6f2aaffaaf53d23a28bf6677b86ac0e3", "US Games", "VC 1001", "Space Jockey (1982) (US Games) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6fbd05b0ad65b2a261fa154b34328a7f", "", "", "Boardgame Demo (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ff4156d10b357f61f09820d03c0f852", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "33", "", "", "", "" }, { "706e3cc4931f984447213b92d1417aff", "", "", "Joustpong (06-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "713095cd968b1aff45a2562ea4bbcbfe", "", "", "Image - Qb (16-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "718ee85ea7ec27d5bea60d11f6d40030", "Salu / Thomas Jentzsch", "", "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "20", "242", "Yes", "", "" }, - { "72305c997f2cec414fe6f8c946172f83", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "56", "195", "Yes", "", "" }, + { "72305c997f2cec414fe6f8c946172f83", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "56", "195", "Yes", "", "" }, { "72bda70c75dfa2365b3f8894bace9e6a", "", "", "Atlantis (Hack 01) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72fd08deed1d6195942e0c6f392e9848", "HES", "", "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "", "" }, - { "73aa02458b413091ac940c0489301710", "Starsoft", "", "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "217", "", "", "" }, + { "72fd08deed1d6195942e0c6f392e9848", "HES", "", "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, + { "73aa02458b413091ac940c0489301710", "Starsoft", "", "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "217", "", "", "" }, { "740b47df422372fbef700b42cea4e0bf", "", "", "Dizzy Wiz (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "749fec9918160921576f850b2375b516", "Spectravideo", "SA-205", "China Syndrome (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "28", "212", "Yes", "", "" }, { "755fed16b48e81de05130708a905d00d", "", "", "Comitoid beta 3 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "75b22fdf632d76e246433db1ebccd3c4", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, - { "7608abdfd9b26f4a0ecec18b232bea54", "Atari", "", "Football (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "219", "", "", "" }, - { "76ee917d817ef9a654bc4783e0273ac4", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "", "" }, + { "75b22fdf632d76e246433db1ebccd3c4", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "7608abdfd9b26f4a0ecec18b232bea54", "Atari", "", "Football (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "219", "", "", "" }, + { "76ee917d817ef9a654bc4783e0273ac4", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, { "777aece98d7373998ffb8bc0b5eff1a2", "", "", "2600 Collison Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "78297db7f416af3052dd793b53ff014e", "", "", "Poker Squares (V0.17) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78b84cfb1c57b0488d674d2374e656e6", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "798b8921276eec9e332dfcb47a2dbb17", "", "", "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "", "", "PAL", "", "", "45", "228", "", "", "" }, + { "798b8921276eec9e332dfcb47a2dbb17", "", "", "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "", "", "", "", "", "45", "228", "", "", "" }, { "79b649fb812c50b4347d12e7ddbb8400", "", "", "Red Pong Number 2 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "Yes", "", "" }, { "79e5338dbfa6b64008bb0d72a3179d3c", "Mattel", "MT4313", "Star Strike (1982) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "", "" }, { "7a63d7ea3f2851bcf04f0bb4ba1a3929", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, - { "7ac4f4fb425db38288fa07fb8ff4b21d", "Sancho-Goliath", "", "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "35", "240", "", "", "" }, + { "7ac4f4fb425db38288fa07fb8ff4b21d", "Sancho-Goliath", "", "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "240", "", "", "" }, { "7b33407b2b198af74906b936ce1eecbb", "", "", "Ghostbuster 2 (NTSC) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "7ba07d4ea18bf3b3245c374d8720ad30", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "202", "", "", "" }, - { "7c9b3b8b25acf2fe3b8da834f69629c6", "", "", "I Robot (1984) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "7d5c3b7b908752b98e30690e2a3322c2", "Dactar", "", "Freeway (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "38", "200", "", "", "" }, - { "7d9c96b215d1941e87b6fb412eb9204f", "Atari", "", "Othello (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "215", "", "", "" }, + { "7ba07d4ea18bf3b3245c374d8720ad30", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "202", "", "", "" }, + { "7c9b3b8b25acf2fe3b8da834f69629c6", "", "", "I Robot (1984) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d5c3b7b908752b98e30690e2a3322c2", "Dactar", "", "Freeway (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, + { "7d9c96b215d1941e87b6fb412eb9204f", "Atari", "", "Othello (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "215", "", "", "" }, { "7e0dc330a32398f980637f9ded8f3ac4", "Tigervision", "7-012", "Espial (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "76", "196", "", "", "" }, { "7e7c4c59d55494e66eef5e04ec1c6157", "Baroque Gaming (Brian Eno)", "", "Warring Worms (2002) (Baroque Gaming)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "", "" }, { "7ed7130a6e4020161836414332b11983", "", "", "Fu Kung! (V0.05 Cuttle Card Compatible) (13-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7f525b07bc98080cc8950f7284e52ede", "", "", "128-in-1 Junior Console (Chip 4) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "", "" }, + { "7f525b07bc98080cc8950f7284e52ede", "", "", "128-in-1 Junior Console (Chip 4) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "7fcd1766de75c614a3ccc31b25dd5b7a", "Playaround", "", "Knight on the Town (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "805f9a32ef97ac25f999a25014dc5c23", "", "", "Balthazar (aka Babylon 5) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "80e52315919bd8a8b82a407ccd9bb13f", "", "", "Euchre (Jul 28) (2002) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "813985a940aa739cc28df19e0edd4722", "Imagic", "IA3201", "Star Voyager (1982) (Imagic)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "193", "", "", "" }, - { "81591a221419024060b890665beb0fb8", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "PAL", "", "", "54", "205", "", "", "" }, + { "81591a221419024060b890665beb0fb8", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "54", "205", "", "", "" }, { "81b3bf17cf01039d311b4cd738ae608e", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "Yes", "", "" }, { "831a0c908b1797093290b688baf5ba76", "", "", "Death Derby (2LK Demo) (26-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "83bdc819980db99bf89a7f2ed6a2de59", "Atari", "CX2637", "Dodge 'em (1980) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "57", "180", "", "", "" }, @@ -790,7 +790,7 @@ static const char* DefProps[][23] = { { "85a4133f6dcf4180e36e70ad0fca0921", "CCE", "", "Chopper Command (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "", "" }, { "85e564dae5687e431955056fbda10978", "Milton Bradley", "4362", "Survival Run (1983) (Milton Bradley)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "219", "Yes", "", "" }, { "86b4aa76bbeb70e1a4f9211a9880ba8e", "", "", "Incoming (1 Player Version) (05-11-2002) (Ben Larson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8747ba79cd39fa83a529bb26010db21b", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "229", "", "", "" }, + { "8747ba79cd39fa83a529bb26010db21b", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "47", "229", "", "", "" }, { "87b460df21b7bbcfc57b1c082c6794b0", "", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "202", "", "", "" }, { "8874b68751fd2ba6d3306a263ae57a7d", "Eric Mooney", "", "Invaders by Erik Mooney (Alpha 1) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "88dce4037471424bb38ab6841aaa8cab", "", "", "Double-Height 6-Digit Score Display (Two Background Color Change) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -800,64 +800,64 @@ static const char* DefProps[][23] = { { "8bbfd951c89cc09c148bfabdefa08bec", "UA Limited", "", "Pleiades (UA Limited)", "", "Prototype", "", "UA", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8c136e97c0a4af66da4a249561ed17db", "", "", "Poker Squares (V0.27) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8cd26dcf249456fe4aeb8db42d49df74", "Atari", "CX26139", "Crossbow (1987) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "195", "", "", "" }, - { "8d8b7d7b983f75debbdaac651e814768", "", "", "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic", "", "Laser Gates (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "233", "", "", "" }, + { "8d8b7d7b983f75debbdaac651e814768", "", "", "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic", "", "Laser Gates (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "233", "", "", "" }, { "8ee3f64dc0f349adc893fe93df5245d8", "", "", "Euchre (20-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8f88309afad108936ca70f8b2b084718", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "", "", "", "" }, - { "8fffc8f15bb2e6d24e211884a5479aa5", "Retroactive", "", "Qb (V1.00) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "", "" }, + { "8f88309afad108936ca70f8b2b084718", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "48", "", "", "", "" }, + { "8fffc8f15bb2e6d24e211884a5479aa5", "Retroactive", "", "Qb (V1.00) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "250", "Yes", "", "" }, { "90ccf4f30a5ad8c801090b388ddd5613", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "913d5d959b5021f879033c89797bab5e", "", "", "Robot Player Graphic (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, + { "913d5d959b5021f879033c89797bab5e", "", "", "Robot Player Graphic (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, { "91fdb6541f70c40b16aabf8308123be8", "", "", "Interlacing Game (19-08-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "92d1f6ac179ebe5963868d6bc1bdda8d", "HES", "", "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "230", "", "", "" }, + { "92d1f6ac179ebe5963868d6bc1bdda8d", "HES", "", "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "230", "", "", "" }, { "93511052bbc9423337905d4d17ecef96", "", "", "Incoming (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93b9229fc0ea4fb959d604f83f8f603c", "", "", "Amidar DS (Fast Enemies) (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "94102febc53b4a78342d11b645342ed4", "", "", "Joustpong (14-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "94e3fbc19107a169909e274187247a9d", "", "", "2-in-1 - Freeway and Tennis [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "193", "", "", "" }, { "956496f81775de0b69a116a0d1ad41cc", "CCE", "", "Alien (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "12", "136", "39", "188", "Yes", "", "" }, - { "95e1d834c57cdd525dd0bd6048a57f7b", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "", "" }, + { "95e1d834c57cdd525dd0bd6048a57f7b", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, { "966b11d3c147d894dd9e4ebb971ea309", "", "", "Marble Craze Song (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "191", "", "", "" }, { "96bcb3d97ce4ff7586326d183ac338a2", "", "", "Revenge of the Apes (Planet of the Apes Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "97933c9f20873446e4c1f8a4da21575f", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "60", "187", "Yes", "", "" }, + { "97933c9f20873446e4c1f8a4da21575f", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "187", "Yes", "", "" }, { "9848b5ef7a0c02fe808b920a2ac566d2", "", "", "Baseball (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "98ba601a60172cb46c5bf9a962fd5b1f", "", "", "Gorilla Kong (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ef1593624b409b9fb83a1c272a0aa7", "CCE", "", "Cosmic Ark (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "192", "", "", "" }, { "991d57bbcd529ad62925098e0aec1241", "", "", "Gunfight 2600 - The Final Kernel (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "9a25b3cfe2bbb847b66a97282200cca2", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "9b150a42fc788960fbb4cbe250259ee2", "Kroko", "", "3E Bankswitch Test (TIA @ $40)", "", "", "", "3E", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "9b150a42fc788960fbb4cbe250259ee2", "Kroko", "", "3E Bankswitch Test (TIA @ $40)", "", "", "", "3E", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9bd4e0d5f28ba6da417c26649171f8e4", "", "", "Hangman Pac-Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c40bf810f761ffc9c1b69c4647a8b84", "", "", "2-in-1 - Frostbite and River Raid [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9c6fd6ed3599978ab7b6f900484b9be6", "Andrew Wallace", "", "Laseresal 2002 (PAL-60) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "9c6fd6ed3599978ab7b6f900484b9be6", "Andrew Wallace", "", "Laseresal 2002 (PAL-60) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d2f05d0fe8b2dfcf770b02eda066fc1", "", "", "Push (V0.06) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9e192601829f5f5c2d3b51f8ae25dbe5", "Mystique", "", "Cathouse Blues (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "", "" }, { "9ea8ed9dec03082973244a080941e58a", "Eric Mooney, Piero Cavina", "", "INV+", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9eeb40f04a27efb1c68ba1d25e606607", "", "", "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "", "", "", "" }, - { "9f59eddf9ba91a7d93bce7ee4b7693bc", "Parker Bros / Thomas Jentzsch", "", "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "E0", "", "", "", "", "", "", "", "PAL60", "", "", "38", "192", "", "", "" }, + { "9eeb40f04a27efb1c68ba1d25e606607", "", "", "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "", "", "", "" }, + { "9f59eddf9ba91a7d93bce7ee4b7693bc", "Parker Bros / Thomas Jentzsch", "", "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "38", "192", "", "", "" }, { "a00ec89d22fcc0c1a85bb542ddcb1178", "CCE", "", "Phoenix (1982) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "188", "", "", "" }, { "a0d502dc8b90b1d7daa5f6effb10d349", "", "", "Demo Image Series #5 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a11099b6ec24e4b00b8795744fb12005", "Activision", "AK-049", "Rampage! (1989) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "12", "136", "53", "", "", "", "" }, + { "a11099b6ec24e4b00b8795744fb12005", "Activision", "AK-049", "Rampage! (1989) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "53", "", "", "", "" }, { "a184846d8904396830951217b47d13d9", "Activision", "AX-029", "Crackpots (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "", "" }, - { "a1ca372388b6465a693e4626cc98b865", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, - { "a1f9159121142d42e63e6fb807d337aa", "Starsoft", "11003", "Mr. T (AKA Fast Eddie) (Starsoft) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "198", "", "", "" }, + { "a1ca372388b6465a693e4626cc98b865", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "a1f9159121142d42e63e6fb807d337aa", "Starsoft", "11003", "Mr. T (AKA Fast Eddie) (Starsoft) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "58", "198", "", "", "" }, { "a2170318a8ef4b50a1b1d38567c220d6", "", "", "Surf's Up (1983) (Amiga) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a2aae759e4e76f85c8afec3b86529317", "Cooper Black", "", "Boom Bang (AKA Crackpots) (Cooper Black) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "198", "", "", "" }, { "a3b9d2be822eab07e7f4b10593fb5eaa", "", "", "GREGXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "193", "", "", "" }, { "a422194290c64ef9d444da9d6a207807", "Mattel", "MT5667", "Dark Cavern (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "189", "", "", "" }, { "a4aa7630e4c0ad7ebb9837d2d81de801", "", "", "Atari 2600 Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, { "a4c08c4994eb9d24fb78be1793e82e26", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "", "", "", "" }, - { "a5e9ed3033fb2836e80aa7a420376788", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "208", "", "", "" }, + { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "", "", "", "" }, + { "a5e9ed3033fb2836e80aa7a420376788", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "208", "", "", "" }, { "a641d14c516d00da81cd12c2dbaa06db", "", "", "Image - Baboon2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a74689a08746a667a299b0507e1e6dd9", "Starpath", "AR-4105", "Frogger (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "53", "", "", "", "" }, + { "a74689a08746a667a299b0507e1e6dd9", "Starpath", "AR-4105", "Frogger (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "53", "", "", "", "" }, { "a7cf2b9afdbb3a161bf418dbcf0321dc", "", "", "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "12", "136", "38", "190", "Yes", "", "" }, { "a8435ec570141de5d833c4abec499e55", "", "", "Happy Birthday Demo (2001) (Dennis Debro) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8d4a9500b18b0a067a1f272f869e094", "", "", "Red And White Checkerboard Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, { "a9784c24cddb33bd0d14442b97784f3d", "", "", "Omega Race DC (2003) (TJ) (Omega Race Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aa7bb54d2c189a31bb1fa20099e42859", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "236", "Yes", "", "" }, - { "ab10f2974dee73dab4579f0cab35fca6", "Starsoft", "", "Lilly Adventure (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "232", "", "", "" }, + { "aa7bb54d2c189a31bb1fa20099e42859", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "236", "Yes", "", "" }, + { "ab10f2974dee73dab4579f0cab35fca6", "Starsoft", "", "Lilly Adventure (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "232", "", "", "" }, { "ab56f1b2542a05bebc4fbccfc4803a38", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "192", "", "", "" }, { "abc64037ca5d5b04ae8a7eedbca3ed74", "", "", "Green and Yellow Number 1 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "ac53b83e1b57a601eeae9d3ce1b4a458", "Retroactive", "", "Qb (2.15) (Retroactive) (NTSC)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "ac9adbd6de786a242e19d4bec527982b", "Activision", "AX-012", "Ice Hockey (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "", "" }, + { "ac9adbd6de786a242e19d4bec527982b", "Activision", "AX-012", "Ice Hockey (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, { "acb962473185d7a652f90ed6591ae13b", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, { "adb770ff70e9adf08bbb907a7eccd240", "", "", "Inv Demo 3 (2001) (Erik Mooney) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae047e9468bda961d8e9e9d8ff52980f", "", "", "Tunnel Demo (Red Spiral) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -868,13 +868,13 @@ static const char* DefProps[][23] = { { "b00e8217633e870bf39d948662a52aac", "Konami", "011", "Marine Wars (1983) (Konami) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "172", "", "", "" }, { "b0c9cf89a6d4e612524f4fd48b5bb562", "Atari", "", "Combat II (1982) (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b1a6c96e9093352106bc335e96caa154", "Joe Grand", "", "SCSIcide Pre-release 1 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "37", "212", "", "", "" }, - { "b1e2d5dc1353af6d56cd2fe7cfe75254", "Atari", "CX26171", "Motorodeo (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "", "" }, + { "b1e2d5dc1353af6d56cd2fe7cfe75254", "Atari", "CX26171", "Motorodeo (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, { "b2761efb8a11fc59b00a3b9d78022ad6", "Atari", "CX2651 / 6699805 / 4975602", "Blackjack (1977) (Atari) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "b2d1e63f7f22864096b7b6c154151d55", "", "", "Bounce! (17-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b311ab95e85bc0162308390728a7361d", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" }, - { "b438a6aa9d4b9b8f0b2ddb51323b21e4", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "226", "", "", "" }, + { "b311ab95e85bc0162308390728a7361d", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" }, + { "b438a6aa9d4b9b8f0b2ddb51323b21e4", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "226", "", "", "" }, { "b4a4c87840613f102acb5b3a647d0a67", "", "", "Mobile 48 Sprite Kernel (04-01-2003) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b59417d083b0be2d49a7d93769880a4b", "", "", "Donkey Kong (1983) (Pet Boat) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "", "" }, + { "b59417d083b0be2d49a7d93769880a4b", "", "", "Donkey Kong (1983) (Pet Boat) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, { "b6960be26bee87d53ba4e2e71cfe772f", "", "", "3-D Corridor (Spiral Words) (31-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b731d35e4ac6b3b47eba5dd0991f452f", "", "", "Rubik's Cube 3D Demo (Final) (08-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b7e459d5416eeb196aaa8e092db14463", "", "", "Push (V0.02) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -882,43 +882,43 @@ static const char* DefProps[][23] = { { "b9232c1de494875efe1858fc8390616d", "Panda", "110", "Harbor Escape (1983) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "201", "", "", "" }, { "b9d1e3be30b131324482345959aed5e5", "Activision", "", "Kabobber (Activision) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "ba257438f8a78862a9e014d831143690", "US Games", "VC 2002", "Squeeze Box (1982) (US Games) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bae66907c3200bc63592efe5a9a69dbb", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "205", "", "", "" }, + { "bae66907c3200bc63592efe5a9a69dbb", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "205", "", "", "" }, { "bb6a5a2f7b67bee5d1f237f62f1e643f", "", "", "Demo Image Series #5 - Animegirl (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bc24440b59092559a1ec26055fd1270e", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "bc703ea6afb20bc089f04d8c9d79a2bd", "", "", "Gunfight 2600 - Not mergeable with Colbert wizardry... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "bd39598f067a1193ae81bd6182e756d1", "Telegames", "", "Night Stalker (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "206", "", "", "" }, - { "bdecc81f740200780db04a107c3a1eba", "Starsoft", "", "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "bd39598f067a1193ae81bd6182e756d1", "Telegames", "", "Night Stalker (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "206", "", "", "" }, + { "bdecc81f740200780db04a107c3a1eba", "Starsoft", "", "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "be41463cd918daef107d249f8cde3409", "Dan Hitchens and Mike Mika", "", "Berzerk (Voice Enhanced) (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "", "" }, - { "bedfbde71fb606601f936b5b057f26f7", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "194", "", "", "" }, + { "bedfbde71fb606601f936b5b057f26f7", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "194", "", "", "" }, { "bfa58198c6b9cd8062ee76a2b38e9b33", "", "", "20 Sprites at Once Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c00734a2233ef683d9b6e622ac97a5c8", "Atari", "CX26133", "A-Team, The (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "", "" }, - { "c08d0cee43077d3055febb00e5745c1d", "", "", "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "c08d0cee43077d3055febb00e5745c1d", "", "", "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "c1b038ce5cb6d85e956c5509b0e0d0d8", "", "", "Rotating Colors Demo 2 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c21450c21efb7715746e9fa87ad6f145", "Hozer Video Games", "", "Gunfight 2600 - It could've been soooo cool, but... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, - { "c246e05b52f68ab2e9aee40f278cd158", "Parker Bros / Thomas Jentzsch", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (NTSC by Thomas Jentzsch)", "", "Prototype (Video Format Conversion)", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c31a17942d162b80962cb1f7571cd1d5", "Rainbow Vision", "", "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "c246e05b52f68ab2e9aee40f278cd158", "Parker Bros / Thomas Jentzsch", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (NTSC by Thomas Jentzsch)", "", "Prototype (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c31a17942d162b80962cb1f7571cd1d5", "Rainbow Vision", "", "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "c3aeb796fdaf9429e8cd6af6346f337e", "", "", "If It's Not One Thing It's Another (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c446288fe62c0c2737639fd788ae4a21", "", "", "Mark's Sound Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "c482f8eebd45e0b8d479d9b71dd72bb8", "Retroactive", "", "Push (V0.03) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "c4bc8c2e130d76346ebf8eb544991b46", "", "", "Imagic Selector (Imagic)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c54b4207ce1d4bf72fadbb1a805d4a39", "Billy Eno", "", "Sniper (Feb 30) (2001) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "27", "229", "", "", "" }, - { "c5c7cc66febf2d4e743b4459de7ed868", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "66", "191", "", "", "" }, + { "c5c7cc66febf2d4e743b4459de7ed868", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "66", "191", "", "", "" }, { "c6556e082aac04260596b4045bc122de", "Atari", "CX2669", "Vanguard (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c6d48c6ae6461e0e82753540a985ac9e", "Ed Federmeyer", "", "Edtris (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "48", "188", "", "", "" }, { "c77c35a6fc3c0f12bf9e8bae48cba54b", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "186", "", "", "" }, { "c7e43ad79c5e5c029d9f5ffde23e32cf", "", "", "PAL-NTSC Detector (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c830f6ae7ee58bcc2a6712fb33e92d55", "Atari", "", "Tempest (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c92cfa54b5d022637fdcbdc1ef640d82", "Retroactive", "", "Qb (V2.05) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "c92cfa54b5d022637fdcbdc1ef640d82", "Retroactive", "", "Qb (V2.05) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "ca09fa7406b7d2aea10d969b6fc90195", "Activision", "AX-024", "Dolphin (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" }, { "ca53fc8fd8b3c4a7df89ac86b222eba0", "CCE", "", "Pac-Man (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, - { "cb0b5b8458a13a074e1fe82d3c4e8f3c", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [b1]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "cb0b5b8458a13a074e1fe82d3c4e8f3c", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [b1]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "cb9626517b440f099c0b6b27ca65142c", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "38", "", "", "", "" }, { "cbced209dd0575a27212d3eee6aee3bc", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "187", "Yes", "", "" }, { "cc1727dadf82e8fbf152e47d7e88d6c9", "", "", "Death Derby (v0004) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ccb5fa954fb76f09caae9a8c66462190", "", "ASC1001", "Malagai (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "Yes", "", "" }, - { "ccd6ce508eee4b3fca67212833edcd85", "", "", "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "", "" }, - { "cd568d6acb2f14477ebf7e59fb382292", "Ariola", "MT5687", "Football (AKA Fussball) (Ariola) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "", "" }, - { "cdb81bf33d830ee4ee0606ee99e84dba", "Starpath", "AR-4300", "Fireball (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "136", "52", "", "", "", "" }, + { "ccd6ce508eee4b3fca67212833edcd85", "", "", "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, + { "cd568d6acb2f14477ebf7e59fb382292", "Ariola", "MT5687", "Football (AKA Fussball) (Ariola) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "194", "", "", "" }, + { "cdb81bf33d830ee4ee0606ee99e84dba", "Starpath", "AR-4300", "Fireball (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "52", "", "", "", "" }, { "ce4bbe11d682c15a490ae15a4a8716cf", "", "", "Okie Dokie (Older) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "16", "128", "30", "178", "", "", "" }, { "cedbd67d1ff321c996051eec843f8716", "Froggo", "", "Karate (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "217", "", "", "" }, { "cf63ffac9da89ef09c6c973083061a47", "CCE", "", "M.A.S.H. (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "", "" }, @@ -933,81 +933,81 @@ static const char* DefProps[][23] = { { "d3171407c3a8bb401a3a62eb578f48fb", "", "", "Fire Spinner (Emag) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "207", "Yes", "", "" }, { "d3456b4cf1bd1a7b8fb907af1a80ee15", "Avalon Hill", "50030", "Wall Ball (1983) (Avalon Hill)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, { "d3bb42228a6cd452c111c1932503cc03", "UA Limited", "", "Funky Fish (UA Limited)", "", "Prototype", "", "UA", "", "", "", "", "", "", "", "", "", "", "36", "213", "Yes", "", "" }, - { "d4942f4b55313ff269488527d84ce35c", "", "", "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "d4942f4b55313ff269488527d84ce35c", "", "", "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "d536a84d4e1f170305e17f7078296a50", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, { "d5aa7472e7f2cc17e893a1a36f8dadf0", "", "", "Overhead Adventure Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "", "" }, - { "d62283aed0f4199adb2333de4c263e9c", "Atari", "CX2615", "Demons to Diamonds (1982) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "Yes", "PAL", "", "", "44", "229", "", "", "" }, + { "d62283aed0f4199adb2333de4c263e9c", "Atari", "CX2615", "Demons to Diamonds (1982) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "44", "229", "", "", "" }, { "d69559f9c9dc6ef528d841bf9d91b275", "Activision", "AX-016", "Starmaster (1982) (Activision) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d763e3a9cdcdd56c715ec826106fab6a", "Activision", "AG-001", "Dragster (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "d7f5bf138cfc7feab7b8ef1534c8b477", "", "", "Eric Bergstrom's KC-135 (Radar Map) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d84cda16d9303a7e2a658b168966c973", "", "", "Image - Clown (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d8acaa980cda94b65066568dd04d9eb0", "CCE", "", "Sea Hunt (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "197", "", "", "" }, - { "d9548ad44e67edec202d1b8b325e5adf", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "d9548ad44e67edec202d1b8b325e5adf", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da6465a34d2e44d26aa9a2a0cd1bce4d", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "", "" }, { "dac38b4dd3da73bb7b2e9d70c61d2b7c", "", "", "Hangman Monkey Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "daef7d8e5a09981c4aa81573d4dbb380", "Adam Thornton", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD)", "Hack of Dark Mage by SuperCharger", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "", "" }, { "db1753cc702c18d3917ec7f3b0e8659f", "", "", "Frame Counter 2 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "25", "225", "", "", "" }, + { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, { "dbabb80e92ff18d8eecf615c0539151e", "", "", "Sprite Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dbdaf82f4f0c415a94d1030271a9ef44", "CCE", "", "Kaboom! (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "192", "", "", "" }, { "dca941dab5c6f859b71883b13ade9744", "", "", "Hangman Pac-Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dd0cbe5351551a538414fb9e37fc56e8", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "250", "", "", "" }, - { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "25", "225", "", "", "" }, + { "dd0cbe5351551a538414fb9e37fc56e8", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "55", "250", "", "", "" }, + { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, { "dda23757407c4e217f64962c87ad0c82", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 2) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "de07e9cb43ad8d06a35f6506e22c62e9", "", "", "Oh No! (Version 4) (22-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "de29e46dbea003c3c09c892d668b9413", "CBS Electronics", "", "Carnival (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "212", "", "", "" }, + { "de29e46dbea003c3c09c892d668b9413", "CBS Electronics", "", "Carnival (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "212", "", "", "" }, { "de78b3a064d374390ac0710f95edde92", "Bomb", "CA281", "Assault (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "203", "", "", "" }, { "ded26e1cb17f875a9c17515c900f9933", "", "", "Space Treat (29-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df5cc5cccdc140eb7107f5b8adfacda1", "Cracker Jack Productions", "", "Lumberman by Cracker Jack Productions (Pac-Man Hack)", "Hack of Pac-Man (1981) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "df753cb87d3af4d03f694ab848638108", "", "", "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, + { "df753cb87d3af4d03f694ab848638108", "", "", "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, { "dfafa3fa58f5cc3f0342cca475df6095", "", "", "Space Treat (V1.1 Beta) (24-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e02156294393818ff872d4314fc2f38e", "Panda", "", "Dice Puzzle (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "244", "Yes", "", "" }, + { "e02156294393818ff872d4314fc2f38e", "Panda", "", "Dice Puzzle (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "244", "Yes", "", "" }, { "e0cf2dcc4c1348c468f5bb1e421c9164", "", "", "Invader Sprites in a Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e10d2c785aadb42c06390fae0d92f282", "Parker Bros", "PB5910", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "8", "249", "", "", "" }, { "e15b5525cf8f77297b322838df8d999c", "", "", "Sprite Demo 0 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e20eff36464df39b192a6c220a3da95e", "", "", "Indiana Pitfall (Pitfall Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2b682f6e6d76b35c180c7d847e93b4f", "", "", "Dodge Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e3600be9eb98146adafdc12d91323d0f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "230", "", "", "" }, + { "e3600be9eb98146adafdc12d91323d0f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "230", "", "", "" }, { "e39a13b13dc82c5fdbfbbfd55ba1230e", "", "", "Analog Clock (Additional Frame Info) (V0.0) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e40a818dac4dd851f3b4aafbe2f1e0c1", "", "CX26137", "Peek-A-Boo (Atari) (Prototype)", "Uses Keypad Controllers", "Prototype", "", "", "", "", "", "", "KEYBOARD", "", "", "", "", "", "36", "", "", "", "" }, { "e4b12deaafd1dbf5ac31afe4b8e9c233", "", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "194", "Yes", "", "" }, { "e4d41f2d59a56a9d917038682b8e0b8c", "", "", "Kiss Meets Pacman (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e556e07cc06c803f2955986f53ef63ed", "Coleco", "2665", "Front Line (1982) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, - { "e5d72ff8bab4450be57785cc9e83f3c0", "", "", "Kung Fu Superkicks (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "", "" }, - { "e61210293b14c9c4ecc91705072c6a7e", "", "", "Bugs (1983) (Gameworld) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "", "", "", "" }, + { "e5d72ff8bab4450be57785cc9e83f3c0", "", "", "Kung Fu Superkicks (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "", "", "" }, + { "e61210293b14c9c4ecc91705072c6a7e", "", "", "Bugs (1983) (Gameworld) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, { "e6508b878145187b87b9cded097293e7", "", "", "Oystron (V2.8) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "197", "", "", "" }, { "e73838c43040bcbc83e4204a3e72eef4", "CCE", "", "Apples and Dolls (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "e7dd8c2e6c100044002c1086d02b366e", "", "", "Barnstorming (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "", "" }, + { "e7dd8c2e6c100044002c1086d02b366e", "", "", "Barnstorming (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, { "e847e1b57a704ad9f029cc2d564bde11", "", "", "Death Derby (v0007) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e8e7b9bdf4bf04930c2bcaa0278ee637", "", "", "Boring Taz (Taz Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e957eb4612d6bd5940d3492dfa749668", "", "", "Tunnel Demo (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ea832e2cb6aae6f525f07452c381fa48", "", "", "Polar to Cartesian and VV (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eaf744185d5e8def899950ba7c6e7bb5", "Atari", "CX26172", "Xenophobe (1990) (Atari) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "eb46e99ec15858f8cd8c91cef384ce09", "Rainbow Vision", "", "Ground Zero (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "", "" }, + { "eb46e99ec15858f8cd8c91cef384ce09", "Rainbow Vision", "", "Ground Zero (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "199", "", "", "" }, { "ebcbc8a181a738e13df6216e5c329230", "Activision", "AX-022", "Seaquest (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, - { "ecf51385384b468834611d44a8429c03", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "193", "", "", "" }, + { "ecf51385384b468834611d44a8429c03", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "193", "", "", "" }, { "ed1a784875538c7871d035b7a98c2433", "", "", "Save Our Ship (Technovision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "214", "", "", "" }, { "eddef10fdc0029301064115ae0cd41d4", "CCE", "AG-009", "Freeway (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, { "ee659ae50e9df886ac4f8d7ad10d046a", "Exus", "", "Video Reflex (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ee6cbedf6c0aac90faa0a8dbc093ffbe", "CCE", "", "My Golf (CCE)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "", "" }, + { "ee6cbedf6c0aac90faa0a8dbc093ffbe", "CCE", "", "My Golf (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, { "ef263d40a23483ab339cac44d9515a56", "", "", "Fatal Run (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef71e9fb0d8d477226d8d42261fbf0a7", "Piero Cavina", "", "Multi-Sprite Demo V2.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "", "" }, - { "efffafc17b7cb01b9ca35324aa767364", "Cooper Black", "", "See Saw (Cooper Black) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "190", "", "", "" }, + { "efffafc17b7cb01b9ca35324aa767364", "Cooper Black", "", "See Saw (Cooper Black) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "", "", "" }, { "f066bea7ab0a37b83c83c924a87c5b67", "", "", "Air Raiders (1982) (Mattel) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "202", "", "", "" }, { "f0e0addc07971561ab80d9abe1b8d333", "Imagic", "IA3200", "Demon Attack (1982) (Imagic w-Picture Label) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "194", "", "", "" }, - { "f14d5e96ec3380aef57a4b70132c6677", "Goliath", "", "Pac Kong (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "52", "215", "", "", "" }, + { "f14d5e96ec3380aef57a4b70132c6677", "Goliath", "", "Pac Kong (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "52", "215", "", "", "" }, { "f1a0a23e6464d954e3a9579c4ccd01c8", "20th Century Fox", "11006", "Alien (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "39", "189", "Yes", "", "" }, - { "f1eeeccc4bba6999345a2575ae96508e", "Video Gems", "", "Steeple Chase (Video Gems) (PAL)", "Uses the Paddle Controllers", "", "", "", "A", "", "", "", "Paddles", "Paddles", "", "PAL", "8", "152", "", "250", "Yes", "", "" }, - { "f2d40c70cf3e1d03bc112796315888d9", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "PAL", "", "", "", "246", "", "", "" }, + { "f1eeeccc4bba6999345a2575ae96508e", "Video Gems", "", "Steeple Chase (Video Gems) (PAL)", "Uses the Paddle Controllers", "", "", "", "A", "", "", "", "Paddles", "Paddles", "", "", "8", "152", "", "250", "Yes", "", "" }, + { "f2d40c70cf3e1d03bc112796315888d9", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "246", "", "", "" }, { "f34f08e5eb96e500e851a80be3277a56", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "f3dfae774f3bd005a026e29894db40d3", "Starsoft", "", "See Saw (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "196", "", "", "" }, + { "f3dfae774f3bd005a026e29894db40d3", "Starsoft", "", "See Saw (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "196", "", "", "" }, { "f473f99e47d4026a7a571184922ebf04", "Philp R. Frey", "", "Donkey Claus by Philip R. Frey (Donkey Kong Hack)", "Hack of Donkey Kong (Coleco)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f4c2e50b01dff99bddbe037b3489511c", "", "", "Hypnotic (V0.04) (2001) (Inkling) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f5aa6bd10f662199c42e43863a30106c", "", "", "Music Kit (V1.0) - Song Player (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f69d4fcf76942fcd9bdf3fd8fde790fb", "CCE", "", "Aquaventure (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "200", "", "", "No" }, { "f6daebc0424fa0f8d9aaf26c86df50f4", "", "", "Color Tweaker (V1.0) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f73d2d0eff548e8fc66996f27acf2b4b", "CCE", "AX-018", "Pitfall! (CCE) (PAL-M) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "f7a138eed69665b5cd1bfa796a550b01", "Tigervision", "7-012", "Espial (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "76", "196", "", "", "" }, + { "f7a138eed69665b5cd1bfa796a550b01", "Tigervision", "7-012", "Espial (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "76", "196", "", "", "" }, { "f8240e62d8c0a64a61e19388414e3104", "Activision", "AX-013", "Barnstorming (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "", "" }, { "f8bfd99163d2c4ec688357786e6fba28", "", "", "Eckhard Stolberg's Scrolling Text Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "", "" }, { "f93d7fee92717e161e6763a88a293ffa", "20th Century Fox", "11013", "Porky's (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "229", "", "", "" }, @@ -1015,72 +1015,72 @@ static const char* DefProps[][23] = { { "f9cef637ea8e905a10e324e582dd39c2", "CCE", "", "Private Eye (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "193", "", "", "" }, { "fa0570561aa80896f0ead05c46351389", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "", "" }, { "fa529ec88eca679f6d5fd0ccb2120e46", "", "", "20 Sprites at Once Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "faffd84f3a8eceee2fa5ea5b0a3e6678", "Emag", "", "Immies & Aggies (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "", "", "", "" }, + { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "faffd84f3a8eceee2fa5ea5b0a3e6678", "Emag", "", "Immies & Aggies (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "", "", "", "" }, { "fb0e84cee4c108d24253bcb7e382cffd", "", "", "Interleaved ChronoColour Demo (SECAM) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fb5c8af97bd8ffe88323656f462645a7", "", "", "Interlace Demo (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fb91dfc36cddaa54b09924ae8fd96199", "", "", "Frogger II - Threedeep! (1984) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "fbb4f3debf48dc961b559384467f2057", "", "", "River Raid III (1985) (Digitel-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, { "fbfebee9c14694719e3eda4854dc42ee", "", "", "Baubles 3 (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fc6052438f339aea373bbc999433388a", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "", "" }, + { "fc6052438f339aea373bbc999433388a", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "256", "", "", "" }, { "fca4a5be1251927027f2c24774a02160", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, - { "fd10915633aea4f9cd8b518a25d62b55", "Atari", "", "Superman (1978) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "fd8b4ee0d57605b35e236e814f706ff1", "", "", "Phoenix (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "fd10915633aea4f9cd8b518a25d62b55", "Atari", "", "Superman (1978) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd8b4ee0d57605b35e236e814f706ff1", "", "", "Phoenix (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "fdf6680b2b1e8054293a39700a765692", "", "", "Alpha Demo - The Beta Demo 2 (2000) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe67087f9c22655ce519616fc6c6ef4d", "", "", "Cracked (1988) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fec0c2e2ab0588ed20c750b58cf3baa3", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "202", "", "", "" }, + { "fec0c2e2ab0588ed20c750b58cf3baa3", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "56", "202", "", "", "" }, { "ff4ed162386c795b4fb434903295b571", "", "", "Death Derby (v0002) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "", "", "", "" }, { "ffc0ff4305dd46b4b459885bd1818e2e", "Barry Laws Jr.", "", "Star Wars - The Battle of Alderaan (Star Strike Hack)", "Hack of Star Strike (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "", "" }, { "000509d1ed2b8d30a9d94be1b3b5febb", "", "", "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "", "" }, - { "008543ae43497af015e9428a5e3e874e", "Retroactive", "", "Qb (V2.09) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "00ce76ad69cdc2fa36ada01ae092d5a6", "", "", "Cosmic Avenger (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, - { "00e19ebf9d0817ccfb057e262be1e5af", "Atari", "CX2639", "Othello (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "230", "", "", "" }, + { "008543ae43497af015e9428a5e3e874e", "Retroactive", "", "Qb (V2.09) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "00ce76ad69cdc2fa36ada01ae092d5a6", "", "", "Cosmic Avenger (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "00e19ebf9d0817ccfb057e262be1e5af", "Atari", "CX2639", "Othello (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "57", "230", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "01293bd90a4579abb7aed2f7d440681f", "", "", "Snoopy (1983) (Century) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "", "" }, + { "01293bd90a4579abb7aed2f7d440681f", "", "", "Snoopy (1983) (Century) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "229", "", "", "" }, { "012b8e6ef3b5fd5aabc94075c527709d", "Starpath", "AR-4302", "Party Mix (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "192", "", "", "" }, { "01acf9881a2f8bfa2d49982b1b10fb64", "", "", "Image - Woody (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "01e5c81258860dd82f77339d58bc5f5c", "CCE", "", "Corrida da Matematica (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, { "0277c449fae63f6f1c8f94dedfcf0058", "", "", "Laser Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02811151906e477d47c135db5b1699c6", "", "", "FlickerSort Demo (Updated) (20-04-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "02ced7ea2b7cb509748db6bfa227ebec", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "43", "229", "", "", "" }, + { "02ced7ea2b7cb509748db6bfa227ebec", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "43", "229", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0375f589f7da06d2d2be532e0d4d4b94", "", "", "Push (V0.04) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "03b1051c9374678363c899914412cfc5", "", "", "Incoming (30-10-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "043f165f384fbea3ea89393597951512", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "", "" }, - { "047ac3b9faea64522b7a23c4465a7aa8", "Atari", "", "Defender (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, - { "04b488d4eef622d022a0021375e7e339", "Starsoft", "", "Tennis (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "32", "230", "", "", "" }, - { "04fccc7735155a6c1373d453b110c640", "HES", "", "My Golf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "", "" }, - { "056f5d886a4e7e6fdd83650554997d0d", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "A", "A", "", "", "", "None", "", "PAL", "4", "152", "64", "182", "", "", "" }, - { "05aedf04803c43eb5e09dfd098d3fd01", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "", "" }, - { "05ccf96247af12eef59698f1a060a54f", "Starsoft", "", "King Arthur (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "", "", "", "" }, - { "05eb4347f0ec8f4783983ca35ffd8d1b", "", "", "Qb (2.06) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "", "" }, + { "047ac3b9faea64522b7a23c4465a7aa8", "Atari", "", "Defender (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, + { "04b488d4eef622d022a0021375e7e339", "Starsoft", "", "Tennis (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "230", "", "", "" }, + { "04fccc7735155a6c1373d453b110c640", "HES", "", "My Golf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, + { "056f5d886a4e7e6fdd83650554997d0d", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "A", "A", "", "", "", "None", "", "", "4", "152", "64", "182", "", "", "" }, + { "05aedf04803c43eb5e09dfd098d3fd01", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "195", "", "", "" }, + { "05ccf96247af12eef59698f1a060a54f", "Starsoft", "", "King Arthur (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "", "", "", "" }, + { "05eb4347f0ec8f4783983ca35ffd8d1b", "", "", "Qb (2.06) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "250", "Yes", "", "" }, { "0614ed51acd027d531e7c85c4f435292", "", "", "Narnia (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "069c17beb1e8e0557adb8539fdcf6cba", "", "", "Phantom II / Pirate (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "", "", "" }, - { "06db908011065e5ebb37f4e253c2a0b0", "US Games", "", "Gopher (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "" }, + { "06db908011065e5ebb37f4e253c2a0b0", "US Games", "", "Gopher (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, { "072a6ea2181ca0df88ac0dedc67b239d", "", "", "Multiple Missiles Demo (19-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "074ec425ec20579e64a7ded592155d48", "Atari", "CX26162", "Fatal Run (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "152", "70", "178", "", "", "" }, + { "074ec425ec20579e64a7ded592155d48", "Atari", "CX26162", "Fatal Run (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "152", "70", "178", "", "", "" }, { "079fe9103515d15bc108577e234a484d", "", "", "Multi-Color Demo 0 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "07f42847a79e4f5ae55cc03304b18c25", "Froggo", "FG 1008", "Sea Hawk (1987) (Froggo-Zellers)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "081e2c114c9c20b61acf25fc95c71bf4", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros)", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "", "191", "", "", "" }, - { "083e7cae41a874b2f9b61736c37d2ffe", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "218", "", "", "" }, + { "083e7cae41a874b2f9b61736c37d2ffe", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "50", "218", "", "", "" }, { "0890a5b089191f45d0f08dd1e3235687", "", "", "Star Fire - 4K Version (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "08d60a58a691c7f690162850302dc0e1", "", "", "Poker Squares (V0.27) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "", "" }, + { "08d60a58a691c7f690162850302dc0e1", "", "", "Poker Squares (V0.27) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, { "0906c6e0e4bda9c10cfa4c5fc64d2f4b", "Retroactive", "", "Qb (V0.12) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0945081a6bd00345ff3d58eb7a07330a", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "0945081a6bd00345ff3d58eb7a07330a", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "096649575e451508006b17e0353259a5", "", "", "Yar Vs. Yar (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "", "" }, { "09abfe9a312ce7c9f661582fdf12eab6", "Atari", "CX26154", "Super Football (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "4", "152", "42", "182", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0a1b98937911d621b004b1617446d124", "", "", "Hangman Pac-Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0abf64ca504a116adca80f77f85e00fb", "", "", "Cube Conquest (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0aceb7c3bd13fe048b77a1928ed4267d", "Imagic", "IA3201", "Star Voyager (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "0aceb7c3bd13fe048b77a1928ed4267d", "Imagic", "IA3201", "Star Voyager (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "0af51ceb4aecc7a8fc89781ac44a1973", "Barry Laws Jr.", "", "Face Invaders Deluxe by Barry Laws Jr. (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "0b01909ba84512fdaf224d3c3fd0cf8d", "", "", "Revenge of the Apes (Planet of the Apes Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0b33252b680b65001e91a411e56e72e9", "CCE", "", "Atlantis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, - { "0b577e63b0c64f9779f315dca8967587", "Ariola", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "0b577e63b0c64f9779f315dca8967587", "Ariola", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "0bfabf1e98bdb180643f35f2165995d0", "", "CX2623 / 99819 / 75125", "Home Run (1978) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "218", "", "", "" }, { "0c48e820301251fbb6bcdc89bd3555d9", "Atari", "CX26120", "Stargate (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, { "0cb3211ec39a66e225e8faa9fbdb0757", "Activision", "AK-049", "Rampage! (1989) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "38", "200", "", "", "" }, @@ -1092,23 +1092,23 @@ static const char* DefProps[][23] = { { "0dfbdadf8f1bc718e7e1bb3ccd5fef3d", "", "", "Mr. Pac-Man (New start tune) (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0e86470791b26292abe1c64545c47985", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "0e86470791b26292abe1c64545c47985", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "50", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0f2e09c71cc216f79d22a804152ba24b", "Bob Colbert", "", "Scroller Demo (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "0f643c34e40e3f1daafd9c524d3ffe64", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0fba7d8c3520bdb681f75494e498ec36", "", "", "Gunfight 2600 - Final Run (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "0fd72a13b3b6103fc825a692c71963b4", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "" }, + { "0fd72a13b3b6103fc825a692c71963b4", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, { "103e9d616328969f5d7b4e0a381b25d5", "", "", "Playfield Illustration and Logo Demo (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "106326c262dfd3e8eaeabd961d2a0519", "", "", "PAL-NTSC Detector (15-11-2002) (CT)[a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "107cc025334211e6d29da0b6be46aec7", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "33", "194", "", "", "" }, - { "10f62443f1ae087dc588a77f9e8f43e9", "", "", "Dodge 'em (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, - { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "", "" }, + { "10f62443f1ae087dc588a77f9e8f43e9", "", "", "Dodge 'em (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "119305fe8e3c6cb878e8b610af8f0663", "", "", "Greeting Cart Ali Landry Closeup (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1228c01cd3c4b9c477540c5adb306d2a", "Atari", "", "Basketball (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "192", "", "", "" }, - { "1278f74ca1dfaa9122df3eca3c5bcaad", "Starsoft", "SS-013", "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "", "" }, + { "1228c01cd3c4b9c477540c5adb306d2a", "Atari", "", "Basketball (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "192", "", "", "" }, + { "1278f74ca1dfaa9122df3eca3c5bcaad", "Starsoft", "SS-013", "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "245", "", "", "" }, { "12cd04d3298633413a756795c49dc0c6", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, { "133a4234512e8c4e9e8c5651469d4a09", "", "", "Obelix (1983) (Atari) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, { "1351c67b42770c1bd758c3e42f553fea", "Digivision", "", "Keystone Kapers (Digivision) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "196", "", "", "" }, @@ -1120,20 +1120,20 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "143918368f4f4dfff90999188c0197c9", "", "", "Unknown Title (bin00016 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "14a56b493a8d9d10e94a3e100362e3a2", "Hozer Video Games", "", "Gunfight 2600 - Early Play-kernel (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "213", "", "", "" }, - { "14dbb3686dd31964332dc2ef0c55cad0", "", "", "Demo Image Series #15 - Three Marios (PAL) (Non-Interleave) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "14dbb3686dd31964332dc2ef0c55cad0", "", "", "Demo Image Series #15 - Three Marios (PAL) (Non-Interleave) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "152e55f88af3ff647e75a3070b7b6842", "Activision", "", "Turmoil (198x) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "52", "186", "", "", "" }, - { "155fa7f479dcba3b10b1494e236d6010", "", "", "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "57", "195", "", "", "" }, + { "155fa7f479dcba3b10b1494e236d6010", "", "", "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "57", "195", "", "", "" }, { "15b498199ed0ed28057bf0dbdce9b8d8", "Hozer Video Games", "", "Jammed (V0.2) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "15dd21c2608e0d7d9f54c0d3f08cca1f", "Data Age", "112-008", "Frankenstein's Monster (1983) (Data Age) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "206", "", "", "" }, { "1623da579aa30b957bb8fa6ccd89b30a", "", "", "Image - USA Flag (15-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "169d4c7bd3a4d09e184a3b993823d048", "Atari", "", "Superman (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "16e04823887c547dc24bc70dff693df4", "Atari", "", "Tennis (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "169d4c7bd3a4d09e184a3b993823d048", "Atari", "", "Superman (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "16e04823887c547dc24bc70dff693df4", "Atari", "", "Tennis (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "170e7589a48739cfb9cc782cbb0fe25a", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "", "" }, { "1733772165d7b886a94e2b4ed0f74ccd", "", "", "Boring Journey Escape (Journey - Escape Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17515a4d0b7ea5029ffff7dfa8456671", "Piero Cavina", "", "Multi-Sprite Demo V1.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, { "177504abd4260c4265e1338955e9fa47", "HCC Software", "", "Pitfall! (Steroids Hack)", "Hack of Pitfall! (Activision)", "", "", "", "", "", "", "", "", "", "", "", "8", "148", "40", "195", "", "", "" }, { "17ba72433dd41383065d4aa6dedb3d91", "", "", "SCSIcide (09-06-2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "17ee158d15e4a34f57a837bc1ce2b0ce", "", "", "Joust (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "17ee158d15e4a34f57a837bc1ce2b0ce", "", "", "Joust (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "180c234496f31a8671226277e0afbf2f", "", "", "Greeting Cart Mario And Luigi(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18760f1f9ca5e18610115cf7b815b824", "", "", "Star Fire (23-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18bebbbd41c234f82b1717b1905e6027", "", "", "Space Instigators (Public Release) (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1146,38 +1146,38 @@ static const char* DefProps[][23] = { { "19d9b5f8428947eae6f8e97c7f33bf44", "", "", "Fortress (Dual Version) (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "19e761e53e5ec8e9f2fceea62715ca06", "Panda", "104", "Scuba Diver (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "199", "", "", "" }, { "1aa7344b563c597eecfbfcf8e7093c27", "David Marli", "", "Slot Invaders by David Marli (Slot Machine Hack)", "Hack of Slot Machine (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "", "" }, - { "1b8c3c0bfb815b2a1010bba95998b66e", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "" }, - { "1bf503c724001b09be79c515ecfcbd03", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "226", "", "", "" }, + { "1b8c3c0bfb815b2a1010bba95998b66e", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, + { "1bf503c724001b09be79c515ecfcbd03", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "226", "", "", "" }, { "1c6eb740d3c485766cade566abab8208", "Atari", "CX26110", "Crystal Castles (1984) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "174", "", "", "" }, - { "1cafa9f3f9a2fce4af6e4b85a2bbd254", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari) (PAL) [!]", "Console ports are swapped", "Common", "", "", "", "", "", "Yes", "", "", "", "PAL", "", "", "64", "193", "", "", "" }, + { "1cafa9f3f9a2fce4af6e4b85a2bbd254", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari) (PAL) [!]", "Console ports are swapped", "Common", "", "", "", "", "", "Yes", "", "", "", "", "", "", "64", "193", "", "", "" }, { "1cf59fc7b11cdbcefe931e41641772f6", "Sega", "005-01", "Buck Rogers - Planet of Zoom (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, - { "1d2a28eb8c95da0d6d6b18294211839f", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "184", "", "", "" }, - { "1da2da7974d2ca73a823523f82f517b3", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "63", "193", "", "", "" }, + { "1d2a28eb8c95da0d6d6b18294211839f", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "184", "", "", "" }, + { "1da2da7974d2ca73a823523f82f517b3", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "63", "193", "", "", "" }, { "1e060a8025512ad2127e3da11e212ccc", "Starpath", "", "Sweat! - The Decathalon Game (2 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "35", "200", "", "", "" }, { "1e1817d9cbcc3ba75043b7db4e6c228f", "", "", "Star Fire (07-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1e587ca91518a47753a28217cd4fd586", "Telesys", "1001", "Coconuts (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "", "", "" }, { "1ec5bef77b91e59313cba205f15b06d7", "", "", "Overhead Adventure Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "1ee2cfc7d0333b96bd11f7f3ec8ce8bc", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "", "No" }, + { "1ee2cfc7d0333b96bd11f7f3ec8ce8bc", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f2ae0c70a04c980c838c2cdc412cf45", "", "", "Rubik's Cube (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "200309c8fba0f248c13751ed4fc69bab", "Jeffry Johnston", "", "Radial Pong - Version 1 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "200a9d2a7cb4441ce4f002df6aa47e38", "Eduardo", "", "Doomzerk (PD)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "", "" }, { "203abb713c00b0884206dcc656caa48f", "Imagic", "O3207", "Moonsweeper (1983) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "", "", "41", "188", "", "", "" }, + { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "41", "188", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "211774f4c5739042618be8ff67351177", "Atari", "CX2684", "Galaxian (1983) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, - { "2124cf92978c46684b6c39ccc2e33713", "Bitcorp", "", "Sea Monster (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, - { "213e5e82ecb42af237cfed8612c128ac", "Sancho", "", "Forest (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "36", "251", "Yes", "", "" }, + { "2124cf92978c46684b6c39ccc2e33713", "Bitcorp", "", "Sea Monster (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "213e5e82ecb42af237cfed8612c128ac", "Sancho", "", "Forest (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "251", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "21b09c40295c2d7074a83ae040f22edf", "", "", "Marble Craze (V0.90) (Easy Version) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2228c67d25e507603d4873d3934f0757", "", "", "Fu Kung! (V0.10) (28-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "225522777dc7155627808bde0c1d0ef0", "", "", "This Planet Sucks Demo 1 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, + { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "2351d26d0bfdee3095bec9c05cbcf7b0", "", "", "Warring Worms (19-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics", "2459", "Mouse Trap (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "Yes", "", "" }, + { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics", "2459", "Mouse Trap (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "Yes", "", "" }, { "240bfbac5163af4df5ae713985386f92", "Activision", "AX-022", "Seaquest (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, { "2447e17a4e18e6b609de498fe4ab52ba", "", "", "Super Futebol (Pussy Style) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, { "245f07c8603077a0caf5f83ee6cf8b43", "HomeVision / Thomas Jentzsch", "", "Parachute (HomeVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "47", "220", "", "", "" }, @@ -1185,34 +1185,34 @@ static const char* DefProps[][23] = { { "24b9adac1b4f85b0bac9bf9b9e180906", "Angelino", "", "Space 2002 by Angelino (Space Jockey Hack)", "Hack of Space Jockey (1982) (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24fbf8250a71611e40ef18552e61b009", "", "", "Movable Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "", "" }, { "25472dfdeef6a42581a231d631d6b04d", "", "", "Gunfight 2600 - Design thoughts (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, - { "25a21c47afe925a3ca0806876a2b4f3f", "Starsoft", "", "Der kleine Baer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "195", "", "", "" }, + { "25a21c47afe925a3ca0806876a2b4f3f", "Starsoft", "", "Der kleine Baer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "195", "", "", "" }, { "25b6dc012cdba63704ea9535c6987beb", "Avalon Hill", "50040", "Shuttle Orbiter (1983) (Avalon Hill)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25d4be3309b89583c6b39d9f93bf654f", "Activision", "AX-015", "Chopper Command (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "", "" }, - { "25f2e760cd7f56b88aac88d63757d41b", "Activision", "AG-002", "Boxing (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "64", "201", "", "", "" }, - { "262ccb882ff617d9b4b51f24aee02cbe", "Atari", "CX26154", "Super Football (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "64", "189", "", "", "" }, + { "25f2e760cd7f56b88aac88d63757d41b", "Activision", "AG-002", "Boxing (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "64", "201", "", "", "" }, + { "262ccb882ff617d9b4b51f24aee02cbe", "Atari", "CX26154", "Super Football (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "189", "", "", "" }, { "268f46038e29301568fa9e443e16e960", "", "", "Pitfall Unlimited (Atarius Maximus)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, { "26f4f8b098609164effef7809e0121e1", "", "", "Oystron (V2.7) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "2723e442d55d741a8e2d9293108cd5ed", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "", "" }, - { "277c7281ac945b8331e2e6fcad560c11", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "38", "200", "", "", "No" }, + { "277c7281ac945b8331e2e6fcad560c11", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "206", "", "", "" }, + { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "206", "", "", "" }, { "27c8a76cf59a9fc6b667468ef1e3f9e9", "", "", "Greeting Cart Atari-Troll(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2808dc745ff4321dc5c8122abef6711f", "Retroactive", "", "Qb (2.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "2823364702595feea24a3fbee138a243", "Bitcorp", "PG206", "Bobby is Going Home (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "245", "", "", "" }, - { "283dee88f295834c4c077d788f151125", "Retroactive", "", "Qb (2.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "28d5df3ed036ed63d33a31d0d8b85c47", "Bitcorp", "PG204", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "Yes", "", "" }, - { "291bcdb05f2b37cdf9452d2bf08e0321", "Atari", "", "32-in-1 (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "2823364702595feea24a3fbee138a243", "Bitcorp", "PG206", "Bobby is Going Home (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "45", "245", "", "", "" }, + { "283dee88f295834c4c077d788f151125", "Retroactive", "", "Qb (2.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "28d5df3ed036ed63d33a31d0d8b85c47", "Bitcorp", "PG204", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "Yes", "", "" }, + { "291bcdb05f2b37cdf9452d2bf08e0321", "Atari", "", "32-in-1 (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "292a0bb975b2587f9ac784c960e1b453", "", "", "Qb (05-02-2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "2942680c47beb9bf713a910706ffabfe", "", "", "Blue Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "297c405afd01f3ac48cdb67b00d273fe", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "180", "", "", "No" }, + { "297c405afd01f3ac48cdb67b00d273fe", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "", "No" }, { "299eb1ad959176b2c89f36082ee5e861", "", "", "Death Derby (14-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a0ba55e56e7a596146fa729acf0e109", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "", "" }, - { "2a2f46b3f4000495239cbdad70f17c59", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "250", "Yes", "", "" }, - { "2a9f9001540c55a302befd8e9d54b47b", "", "", "Mario Bros (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, + { "2a2f46b3f4000495239cbdad70f17c59", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "250", "Yes", "", "" }, + { "2a9f9001540c55a302befd8e9d54b47b", "", "", "Mario Bros (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, { "2ae700c9dba843a68dfdca40d7d86bd6", "TechnoVision / Thomas Jentzsch", "", "Pharaoh's Curse (TechnoVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "43", "236", "Yes", "", "" }, { "2b71a59a53be5883399917bf582b7772", "Greg Troutman", "", "Dark Mage (final beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "201", "Yes", "", "" }, { "2bd00beefdb424fa39931a75e890695d", "Atari", "CX2663", "Road Runner (1989) (Atari) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "28", "194", "", "", "" }, - { "2c0dc885d5ede94aa664bf3081add34e", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "220", "", "", "" }, + { "2c0dc885d5ede94aa664bf3081add34e", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "56", "220", "", "", "" }, { "2c2aea31b01c6126c1a43e10cacbfd58", "Paul Slocum", "", "Synthcart (2002) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "Yes", "", "" }, { "2c3b9c171e214e9e46bbaa12bdf8977e", "", "CX2639 / 4975162", "Othello (1978) [p1][o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2c8835aed7f52a0da9ade5226ee5aa75", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "", "" }, @@ -1220,66 +1220,66 @@ static const char* DefProps[][23] = { { "2cfb188c1091cc7ec2a7e60064d2a758", "", "", "Space Invaders Hack Demo (2003) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2d69a5f23784f1c2230143292a073b53", "", "", "Qb (Fixed background animation) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "2d9e65959808a6098c16c82a59c9d9dc", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "", "" }, + { "2d9e65959808a6098c16c82a59c9d9dc", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, { "2dfec1615c49501fefc02165c81955e6", "", "", "Song (05-11-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2e3728f3086dc3e71047ffd6b2d9f015", "Atari", "", "Outlaw (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "230", "", "", "" }, - { "2e82a1628ef6c735c0ab8fa92927e9b0", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "227", "", "", "" }, - { "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "61", "201", "", "", "" }, + { "2e3728f3086dc3e71047ffd6b2d9f015", "Atari", "", "Outlaw (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "230", "", "", "" }, + { "2e82a1628ef6c735c0ab8fa92927e9b0", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "227", "", "", "" }, + { "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "61", "201", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2f11ba54609777e2c6a5da9b302c98e8", "Atari", "", "Centipede (1982) (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "197", "", "", "" }, + { "2f11ba54609777e2c6a5da9b302c98e8", "Atari", "", "Centipede (1982) (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "197", "", "", "" }, { "2f66ebf037321ed0442ac4b89ce22633", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 2) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "", "" }, - { "2facd460a6828e0e476d3ac4b8c5f4f7", "", "", "Sancho - Words (198x) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "", "", "" }, + { "2facd460a6828e0e476d3ac4b8c5f4f7", "", "", "Sancho - Words (198x) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "235", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "30512e0e83903fc05541d2f6a6a62654", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, - { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "", "" }, + { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (1978) (Atari) [h3]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "", "" }, { "30f0b49661cfcfd4ec63395fab837dc3", "", "", "Star Trek - Strategic Operations Simulator (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "310ba30e25ea8957e58180b663503c0c", "Ed Federmeyer", "", "Sound X6 (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "185", "", "", "" }, { "3177cc5c04c1a4080a927dfa4099482b", "Atari", "CX26135", "RealSports Boxing (1987) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "185", "", "", "" }, { "318046ae3711c05fd16e479b298e5fcc", "Retroactive", "", "Qb (V2.08) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "319a142aab6260842ab616382848c204", "", "", "Marble Craze (05-02-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "31df1c50c4351e144c9a378adb8c10ba", "Starsoft", "", "Die Ratte und die Karotten (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "", "" }, + { "31df1c50c4351e144c9a378adb8c10ba", "Starsoft", "", "Die Ratte und die Karotten (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, { "32199271dc980eb31a2cc96e10a9e244", "", "", "Radial Pong - Version 12 (Jeffry Johnston) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3225676f5c0c577aeccfaa7e6bedd765", "CCE", "", "Pole Position (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, { "3276c777cbe97cdd2b4a63ffc16b7151", "", "CX2691", "Joust (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "200", "Yes", "", "" }, { "32ecb5a652eb73d287e883eea751d99c", "Dactar", "", "Bowling (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "215", "", "", "" }, { "3316ee2f887e9cb9b54dd23c5b98c3e2", "", "", "Texas Golf (miniature Gold Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "332f01fd18e99c6584f61aa45ee7791e", "Zellers / CCE", "C-845", "Raumpatrouille (CCE) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "28", "229", "Yes", "", "" }, + { "332f01fd18e99c6584f61aa45ee7791e", "Zellers / CCE", "C-845", "Raumpatrouille (CCE) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "28", "229", "Yes", "", "" }, { "335793736cbf6fc99c9359ed2a32a49d", "", "", "Analog Clock (V0.0) (20-01-2003) (AD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "340f546d59e72fb358c49ac2ca8482bb", "Sancho", "", "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "244", "", "", "" }, + { "340f546d59e72fb358c49ac2ca8482bb", "Sancho", "", "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "43", "244", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "345758747b893e4c9bdde8877de47788", "CBS Electronics", "", "Venture (1982) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "250", "Yes", "", "" }, - { "348615ffa30fab3cec1441b5a76e9460", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "345758747b893e4c9bdde8877de47788", "CBS Electronics", "", "Venture (1982) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "250", "Yes", "", "" }, + { "348615ffa30fab3cec1441b5a76e9460", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "34f4b1d809aa705ace6e46b13253fd3b", "", "", "Nothern Alliance (Aaron Bergstrom) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3576037c9281656655fa114a835be553", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "", "No" }, + { "3576037c9281656655fa114a835be553", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "35b10a248a7e67493ec43aeb9743538c", "", "", "Defender (Dor-x) (Defender Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35fa32256982774a4f134c3347882dff", "Retroactive", "", "Qb (V0.05) (Macintosh) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3624e5568368929fabb55d7f9df1022e", "Activision", "", "Double Dragon (1989) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "", "" }, - { "367411b78119299234772c08df10e134", "Atari", "", "Skiing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "194", "", "", "" }, + { "3624e5568368929fabb55d7f9df1022e", "Activision", "", "Double Dragon (1989) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "68", "190", "", "", "" }, + { "367411b78119299234772c08df10e134", "Atari", "", "Skiing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "36b20c427975760cb9cf4a47e41369e4", "Coleco", "2451", "Donkey Kong (198x)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "36e47ed74968c365121eab60f48c6517", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "216", "", "", "" }, - { "372bddf113d088bc572f94e98d8249f5", "Dynamics-Goliath", "", "Breakdown (AKA Capture) (Dynamics-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "37527966823ee9243d34c7da8302774f", "US Games", "", "Word Zapper (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "36e47ed74968c365121eab60f48c6517", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "216", "", "", "" }, + { "372bddf113d088bc572f94e98d8249f5", "Dynamics-Goliath", "", "Breakdown (AKA Capture) (Dynamics-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "37527966823ee9243d34c7da8302774f", "US Games", "", "Word Zapper (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "378a62af6e9c12a760795ff4fc939656", "", "", "Motorodeo (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "37f42ab50018497114f6b0f4f01aa9a1", "", "", "Droid Demo 2-M (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3856b9425cc0185ed770376a62af0282", "Kyle Pittman", "", "Yellow Submarine (Bermuda Triangle Hack)", "Hack of Bermuda Triangle (Data Age)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3889351c6c2100b9f3aef817a7e17a7a", "CCE", "", "Dolphin (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" }, - { "38de7b68379770b9bd3f7bf000136eb0", "Imagic", "O3213", "Subterrenea (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "38de7b68379770b9bd3f7bf000136eb0", "Imagic", "O3213", "Subterrenea (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "392f00fd1a074a3c15bc96b0a57d52a1", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari)", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "200", "Yes", "", "" }, { "39790a2e9030751d7db414e13f1b6960", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "39da69ff9833f8c143f03b6e0e7a996b", "Activision / Charles Morgan", "", "Ventrra Invaders 2002 by Charles Morgan (Space Invaders Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, { "3a35d7f1dc2a33565c8dca52baa86bc4", "", "", "Rubik's Cube Demo 2 (23-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3a526e6a1f9fe918af0f2ce997dfea73", "CBS Electronics", "", "Donkey Kong (1983) (CBS Electronics) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "212", "", "", "" }, + { "3a526e6a1f9fe918af0f2ce997dfea73", "CBS Electronics", "", "Donkey Kong (1983) (CBS Electronics) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "56", "212", "", "", "" }, { "3ab5d138e26d88c8190e7cc629a89493", "", "", "Phased Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3b097a7ed5bd2a84dc3d3ed361e9c31c", "", "", "Interleaved ChronoColour Demo (PAL) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "3b2c32fcd331664d037952bcaa62df94", "", "", "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "", "" }, + { "3b097a7ed5bd2a84dc3d3ed361e9c31c", "", "", "Interleaved ChronoColour Demo (PAL) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b2c32fcd331664d037952bcaa62df94", "", "", "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "", "", "" }, { "3b5751a8d20f7de41eb069f76fecd5d7", "", "", "Eckhard Stolberg's Scrolling Text Demo 4 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "", "" }, - { "3b76242691730b2dd22ec0ceab351bc6", "Mattel", "MT4318", "Masters of the Universe - The Power of He-Man (1983) (Mattel)", "", "Rare", "", "E7", "A", "", "", "", "", "", "", "", "", "", "38", "185", "Yes", "", "" }, + { "3b76242691730b2dd22ec0ceab351bc6", "Mattel", "MT4318", "Masters of the Universe - The Power of He-Man (1983) (Mattel)", "", "Rare", "", "", "A", "", "", "", "", "", "", "", "", "", "38", "185", "Yes", "", "" }, { "3b91c347d8e6427edbe942a7a405290d", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "200", "", "", "" }, { "3c3a2bb776dec245c7d6678b5a56ac10", "", "", "Unknown Title (bin00003) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c57748c8286cf9e821ecd064f21aaa9", "Atari", "CX26118", "Millipede (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "", "" }, @@ -1292,22 +1292,22 @@ static const char* DefProps[][23] = { { "3da7cc7049d73d34920bb73817bd05a9", "Activision", "AX-023", "Oink! (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "", "" }, { "3e33ac10dcf2dff014bc1decf8a9aea4", "Spectravideo", "", "Chase the Chuckwagon (1983) (Spectravideo)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "3e6dab92009d6034618cb6b7844c5216", "", "", "Ed Invaders (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, - { "3eccf9f363f5c5de0c8b174a535dc83b", "Activision", "AX-027", "Plaque Attack (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "", "" }, - { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "16", "128", "63", "194", "", "", "" }, + { "3eccf9f363f5c5de0c8b174a535dc83b", "Activision", "AX-027", "Plaque Attack (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, + { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "16", "128", "63", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f3ad2765c874ca13c015ca6a44a40a1", "CCE", "", "Crackpots (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "191", "", "", "" }, { "3f5a43602f960ede330cd2f43a25139e", "Activision", "AG-003", "Checkers (1980) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "20", "140", "27", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f96eb711928a6fac667c04ecd41f59f", "", "", "Rodeo Champ (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "190", "", "", "" }, + { "3f96eb711928a6fac667c04ecd41f59f", "", "", "Rodeo Champ (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "190", "", "", "" }, { "3fd53bfeee39064c945a769f17815a7f", "CCE", "", "Sea Hawk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, - { "3ff5165378213dab531ffa4f1a41ae45", "Starsoft", "", "Pygmy (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "194", "", "", "" }, - { "405f8591b6941cff56c9b392c2d5e4e5", "Telegames", "", "Star Strike (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "192", "", "", "" }, - { "407a0c6cc0ff777f67b669440d68a242", "Erik Eid", "", "Euchre (Alpha) (PAL) (31-08-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "3ff5165378213dab531ffa4f1a41ae45", "Starsoft", "", "Pygmy (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "194", "", "", "" }, + { "405f8591b6941cff56c9b392c2d5e4e5", "Telegames", "", "Star Strike (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "56", "192", "", "", "" }, + { "407a0c6cc0ff777f67b669440d68a242", "Erik Eid", "", "Euchre (Alpha) (PAL) (31-08-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "40aa851e8d0f1c555176a5e209a5fabb", "", "", "Euchre (More for less) (NTSC) (22-08-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "40d7ccd460c9b1198238af6ceea1737d", "", "", "Star Fire - Enemy Mine (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "40d9f5709877ecf3dd1184f9791dd35e", "Dactar", "", "Skiing (1980) (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "37", "194", "", "", "" }, + { "40d9f5709877ecf3dd1184f9791dd35e", "Dactar", "", "Skiing (1980) (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, { "415c11fcac66bbd2ace2096687774b5a", "", "", "Fu Kung! (V0.00) (07-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4189adfc1b30c121248876e3a1a3ac7e", "Eric Ball", "", "Skeleton (Complete) (06-09-2002) (Eric Ball)", "", "New Release", "Stereo", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "4189adfc1b30c121248876e3a1a3ac7e", "Eric Ball", "", "Skeleton (Complete) (06-09-2002) (Eric Ball)", "", "New Release", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "41f252a66c6301f1e8ab3612c19bc5d4", "Atari", "CX2681", "Battlezone (1983) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "4", "152", "32", "200", "", "", "No" }, { "4251b4557ea6953e88afb22a3a868724", "", "", "Robot City (V1.1) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1319,29 +1319,29 @@ static const char* DefProps[][23] = { { "4476c39736090dabac09f6caf835fc49", "", "", "Text Screen (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "44f71e70b89dcc7cf39dfd622cfb9a27", "Tigervision", "", "Polaris (1983) (Tigervision) (maybe beta)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "35", "", "", "", "" }, { "4543b7691914dfd69c3755a5287a95e1", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "Yes", "", "" }, - { "457e7d4fcd56ebc47f5925dbea3ee427", "Carrere Video", "", "Space Jockey (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "245", "", "", "" }, - { "45beef9da1a7e45f37f3f445f769a0b3", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "230", "", "", "" }, + { "457e7d4fcd56ebc47f5925dbea3ee427", "Carrere Video", "", "Space Jockey (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "245", "", "", "" }, + { "45beef9da1a7e45f37f3f445f769a0b3", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "44", "230", "", "", "" }, { "463dd4770506e6c0ef993a40c52c47be", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "468f2dec984f3d4114ea84f05edf82b6", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "60", "212", "Yes", "", "" }, + { "468f2dec984f3d4114ea84f05edf82b6", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "", "" }, { "46c43fdcbce8fde3a91ebeafc05b7cbd", "", "", "Invaders Demo (PAL) (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4702d8d9b48a332724af198aeac9e469", "Atari", "CX2699", "Taz (1983) (Atari) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "191", "", "", "" }, - { "47464694e9cce07fdbfd096605bf39d4", "Activision", "AK-050-04", "Double Dragon (1989) (Activision) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "68", "190", "", "", "" }, - { "47911752bf113a2496dbb66c70c9e70c", "Atari", "CX26101", "Oscar's Trash Race (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "", "", "PAL", "", "", "46", "227", "", "", "" }, - { "47aad247cce2534fd70c412cb483c7e0", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "205", "", "", "" }, + { "47464694e9cce07fdbfd096605bf39d4", "Activision", "AK-050-04", "Double Dragon (1989) (Activision) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "68", "190", "", "", "" }, + { "47911752bf113a2496dbb66c70c9e70c", "Atari", "CX26101", "Oscar's Trash Race (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "46", "227", "", "", "" }, + { "47aad247cce2534fd70c412cb483c7e0", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "205", "", "", "" }, { "47bb1c677fe7ba5f376372ae7358e790", "", "", "Star Fire (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "481f9a742052801cc5f3defb41cb638e", "Jeffry Johnston", "", "Radial Pong - Version 4 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "484b0076816a104875e00467d431c2d2", "Atari", "CX26150", "Q-bert (1988) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "45", "202", "", "", "" }, - { "48e5c4ae4f2d3b62b35a87bca18dc9f5", "Starsoft", "", "Bobby geht nach Hause (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "219", "", "", "" }, - { "4901c05068512828367fde3fb22199fe", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "235", "", "", "" }, + { "48e5c4ae4f2d3b62b35a87bca18dc9f5", "Starsoft", "", "Bobby geht nach Hause (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "219", "", "", "" }, + { "4901c05068512828367fde3fb22199fe", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "46", "235", "", "", "" }, { "493daaf9fb1ba450eba6b8ed53ffb37d", "", "", "3-D Corridor Demo (27-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "49571b26f46620a85f93448359324c28", "", "", "Save Our Ship (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "49571b26f46620a85f93448359324c28", "", "", "Save Our Ship (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a1a0509bfc1015273a542dfe2040958", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a45c6d75b1ba131f94a9c13194d8e46", "", "", "How to Draw a Playfield II (Joystick Hack) (1997) (Eric Bacher) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a9009620038f7f30aaeb2a00ae58fde", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, { "4ac9f40ddfcf194bd8732a75b3f2f214", "Atari", "CX26106", "Grover's Music Maker (Atari) (Prototype)", "Uses Kids/Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "", "" }, - { "4af4103759d603c82b1c9c5acd2d8faf", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "Yes", "", "" }, + { "4af4103759d603c82b1c9c5acd2d8faf", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "Yes", "", "" }, { "4b143d7dcf6c96796c37090cba045f4f", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, { "4b753a97aee91e4b3e4e02f5e9758c72", "", "", "Asymmetric Reflected Playfield (Glenn Saunders And Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4bcc7f6ba501a26ee785b7efbfb0fdc8", "", "CX2690", "Pengo (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, @@ -1357,24 +1357,24 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4df9d7352a56a458abb7961bf10aba4e", "", "", "Traffic (RJPG) (PAL)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "", "35", "208", "", "", "" }, { "4e2c884d04b57b43f23a5a2f4e9d9750", "", "", "Baby Center Animation (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4e66c8e7c670532569c70d205f615dad", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, - { "4f2d47792a06da224ba996c489a87939", "", "", "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "4e66c8e7c670532569c70d205f615dad", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, + { "4f2d47792a06da224ba996c489a87939", "", "", "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "4f64d6d0694d9b7a1ed7b0cb0b83e759", "20th Century Fox", "11016", "Revenge of the Beefsteak Tomatoes (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4f89b897444e7c3b36aed469b8836839", "", "", "BMX Air Master (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "202", "", "", "" }, + { "4f89b897444e7c3b36aed469b8836839", "", "", "BMX Air Master (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "202", "", "", "" }, { "4fbe0f10a6327a76f83f83958c3cbeff", "", "", "Keystone Kapers (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "200", "", "", "" }, { "502044b1ac111b394e6fbb0d821fca41", "", "", "Hangman Invader 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "50a410a5ded0fc9aa6576be45a04f215", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "191", "", "", "" }, - { "512e874a240731d7378586a05f28aec6", "Tigervision", "7-005", "Marauder (1982) (Tigervision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "200", "", "", "" }, - { "516ffd008057a1d78d007c851e6eff37", "ParkerB", "", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "256", "", "", "" }, + { "50a410a5ded0fc9aa6576be45a04f215", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "191", "", "", "" }, + { "512e874a240731d7378586a05f28aec6", "Tigervision", "7-005", "Marauder (1982) (Tigervision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "63", "200", "", "", "" }, + { "516ffd008057a1d78d007c851e6eff37", "ParkerB", "", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "256", "", "", "" }, { "51f15b39d9f502c2361b6ba6a73464d4", "", "", "Amanda Invaders (PD) [o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, - { "525ea747d746f3e80e3027720e1fa7ac", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "525ea747d746f3e80e3027720e1fa7ac", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "52a0003efb3b1c49fcde4dbc2c685d8f", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "52e1954dc01454c03a336b30c390fb8d", "Retroactive", "", "Qb (2.14) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "534e23210dd1993c828d944c6ac4d9fb", "Mattel", "MT4648", "Kool Aid Man (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "199", "", "", "" }, { "5360693f1eb90856176bd1c0a7b17432", "", "", "Oystron (V2.85) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "539d26b6e9df0da8e7465f0f5ad863b7", "Atari", "CX2636 / 4975156", "Video Checkers (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, - { "540075f657d4b244a1f74da1b9e4bf92", "", "", "Festival (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "201", "", "", "" }, + { "540075f657d4b244a1f74da1b9e4bf92", "", "", "Festival (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "62", "201", "", "", "" }, { "543b4b8ff1d616fa250c648be428a75c", "", "", "Adventure (1978) (Atari) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "54a1c1255ed45eb8f71414dadb1cf669", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "207", "", "", "" }, { "551ef75593ec18d078e8f5cc0229e1c4", "", "", "Star Fire - New Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1382,30 +1382,30 @@ static const char* DefProps[][23] = { { "55ace3c775f42eb46f08bb1dca9114e7", "", "", "Shadow Keep (04-03-2003) (Andrew Towers)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "562acb1b7ff182aba133bda8e21ad7c1", "", "", "Space Treat Deluxe (08-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5641c0ff707630d2dd829b26a9f2e98f", "Xonox", "", "Motocross Racer - Joystick (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "571c6d9bc71cb97617422851f787f8fe", "Activision", "AG-004", "Fishing Derby (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "571c6d9bc71cb97617422851f787f8fe", "Activision", "AG-004", "Fishing Derby (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "57939b326df86b74ca6404f64f89fce9", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, { "57a66b6db7efc5df17b0b0f2f2c2f078", "Retroactive", "", "Qb (V2.08) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "5835a78a88f97acea38c964980b7dbc6", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "206", "Yes", "", "" }, + { "5835a78a88f97acea38c964980b7dbc6", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "56", "206", "Yes", "", "" }, { "585f73010e205ae5b04ee5c1a67e632d", "", "", "Daredevil (V3) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "58c396323ea3e85671e34c98eb54e2a4", "", "", "Color Tweaker (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59135f13985b84c4f13cc9e55eec869a", "", "", "Multi-Sprite Game V2.0 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59b70658f9dd0e2075770b07be1a35cf", "Video Gems / Thomas Jentzsch", "", "Surfer's Paradise - But Danger Below! (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "59f596285d174233c84597dee6f34f1f", "CCE", "", "River Raid (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, - { "5a5390f91437af9951a5f8455b61cd43", "Retroactive", "", "Qb (0.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "250", "Yes", "", "" }, + { "5a5390f91437af9951a5f8455b61cd43", "Retroactive", "", "Qb (0.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5a8afe5422abbfb0a342fb15afd7415f", "Atari", "CX26155", "Sprint Master (1988) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "27", "192", "", "", "" }, { "5acf9865a72c0ce944979f76ff9610f0", "", "", "Dodge Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5aea9974b975a6a844e6df10d2b861c4", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, { "5af9cd346266a1f2515e1fbc86f5186a", "Sega", "002-01", "Sub Scan (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "45", "194", "", "", "" }, - { "5b574faa56836da0866ba32ae32547f2", "", "", "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "5b574faa56836da0866ba32ae32547f2", "", "", "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "5b7ea6aa6b35dc947c65ce665fde624b", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, { "5bba254e18257e578c245ed96f6b003b", "", "", "Music Effects Demo (21-01-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5bd79139a0c03b63f6f2cf00a7d385d2", "", "", "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "", "" }, - { "5c0520c00163915a4336e481ca4e7ef4", "Rainbow Vision", "", "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "67", "183", "", "", "" }, + { "5c0520c00163915a4336e481ca4e7ef4", "Rainbow Vision", "", "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "67", "183", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5ce98f22ade915108860424d8dde0d35", "", "", "Hangman Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d799bfa9e1e7b6224877162accada0d", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "36", "195", "", "", "" }, - { "5db9e5bf663cad6bf159bc395f6ead53", "Goliath", "", "Time Race (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "256", "", "", "" }, + { "5db9e5bf663cad6bf159bc395f6ead53", "Goliath", "", "Time Race (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "256", "", "", "" }, { "5de8803a59c36725888346fdc6e7429d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "5df559a36347d8572f9a6e8075a31322", "Digivision", "", "Enduro (Digivision) (Brazil) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, { "5e1cd11a6d41fc15cf4792257400a31e", "Philip R. Frey", "", "Return of Mario Bros by Philip R. Frey (Mario Bros Hack)", "Hack of Mario Bros. (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, @@ -1429,35 +1429,35 @@ static const char* DefProps[][23] = { { "62992392ea651a16aa724a92e4596ed6", "Eric Mooney", "", "Invaders by Erik Mooney (Beta) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (1978) (Atari) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "", "" }, { "6337927ad909aa739d6d0044699a916d", "Jeffry Johnston", "", "Radial Pong - Version 2 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "635cc7a0db33773959d739d04eff96c2", "", "", "Minesweeper (V.90) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "635cc7a0db33773959d739d04eff96c2", "", "", "Minesweeper (V.90) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "638cc82ea96f67674595ba9ae05da6c6", "Rainbow Vision", "SS-011", "Super Ferrari (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "58", "", "", "", "" }, { "63c5fef3208bb1424d26cf1ab984b40c", "", "", "Analog Clock (V0.1) (20-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63e9e612bbee31045f8d184a4e53f8ec", "", "", "Moby Blues (2002) (ATARITALIA) (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "645bf7f9146f0e4811ff9c7898f5cd93", "Xonox", "", "Super Kung-Fu (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "195", "", "", "" }, + { "645bf7f9146f0e4811ff9c7898f5cd93", "Xonox", "", "Super Kung-Fu (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "", "", "" }, { "647162cceb550fd49820e2206d9ee7e8", "", "", "Skeleton (NTSC) (2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "64ca518905311d2d9aeb56273f6caa04", "CCE", "", "Cubo Magico (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "651d2b6743a3a18b426bce2c881af212", "CCE", "", "Pac-Man (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, - { "65490d61922f3e3883ee1d583ce10855", "Atari", "CX2692", "Moon Patrol (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "189", "", "", "" }, + { "65490d61922f3e3883ee1d583ce10855", "Atari", "CX2692", "Moon Patrol (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "189", "", "", "" }, { "656dc247db2871766dffd978c71da80c", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "36", "198", "", "", "" }, { "659a20019de4a23c748ec2292ea5f221", "Retroactive", "", "Qb (V2.05) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "65ba1a4c643d1ab44481bdddeb403827", "Starsoft", "", "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "62", "198", "", "", "" }, + { "65ba1a4c643d1ab44481bdddeb403827", "Starsoft", "", "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "198", "", "", "" }, { "662eca7e3d89175ba0802e8e3425dedb", "", "", "Hangman Pac-Man Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "663ef22eb399504d5204c543b8a86bcd", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics) (PAL) [!]", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "Yes", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "663ef22eb399504d5204c543b8a86bcd", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics) (PAL) [!]", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "669840b0411bfbab5c05b786947d55d4", "Atari", "CX26117", "Obelix (1983) (Atari) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "194", "", "", "" }, - { "66b92ede655b73b402ecd1f4d8cd9c50", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [a2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "198", "", "", "" }, - { "66c4e0298d4120df333bc2f3e163657e", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "39", "189", "", "", "" }, - { "67631ea5cfe44066a1e76ddcb6bcb512", "", "", "Termool (AKA Fast Eddie) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "669840b0411bfbab5c05b786947d55d4", "Atari", "CX26117", "Obelix (1983) (Atari) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "63", "194", "", "", "" }, + { "66b92ede655b73b402ecd1f4d8cd9c50", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [a2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "198", "", "", "" }, + { "66c4e0298d4120df333bc2f3e163657e", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, + { "67631ea5cfe44066a1e76ddcb6bcb512", "", "", "Termool (AKA Fast Eddie) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "679e910b27406c6a2072f9569ae35fc8", "Data Age", "DA 1002", "Warplock (1982) (Data Age)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "195", "Yes", "", "" }, { "67ce6cdf788d324935fd317d064ed842", "Retroactive", "", "Qb (V2.09) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "6805734a0b7bcc8925d9305b071bf147", "", "99003", "Kung Fu (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "218", "", "", "" }, - { "68489e60268a5e6e052bad9c62681635", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "259", "", "", "" }, - { "685e9668dc270b6deeb9cfbfd4d633c3", "CommaVid", "CM-004", "Room of Doom (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "225", "Yes", "", "" }, + { "6805734a0b7bcc8925d9305b071bf147", "", "99003", "Kung Fu (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "50", "218", "", "", "" }, + { "68489e60268a5e6e052bad9c62681635", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "259", "", "", "" }, + { "685e9668dc270b6deeb9cfbfd4d633c3", "CommaVid", "CM-004", "Room of Doom (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "225", "Yes", "", "" }, { "68878250e106eb6c7754bc2519d780a0", "CCE", "", "Snail Against Squirrel (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "14", "245", "", "", "" }, { "6913c90002636c1487538d4004f7cac2", "", "CX26131", "Monstercise (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "693137592a7f5ccc9baae2d1041b7a85", "", "", "Qb (V2.02) (Stella) (2001) (Retroactive) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -1466,7 +1466,7 @@ static const char* DefProps[][23] = { { "6a03c28d505bab710bf20b954e14d521", "", "", "Pressure Gauge 2 Beta (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a3b0c33cf74b1e213a629e3c142b73c", "", "", "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6a9b30ca46b0dba9e719f4cbd340e01c", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "202", "", "", "" }, + { "6a9b30ca46b0dba9e719f4cbd340e01c", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "202", "", "", "" }, { "6ac3fd31a51730358708c7fdc62487f8", "Matthias Jaap", "", "PC Invaders by Matthias Jaap (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "6b683be69f92958abe0e2a9945157ad5", "US Games", "VC 2007 / VC 1007", "Entombed (1982) (US Games) [!]", "Released as Name That Game for a contest (winning name was Entombed)", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "6b75f8fa4fd011a6698c58315f83d2ac", "Thomas Jentzsch", "", "Sprintmaster DC (TJ)", "Uses the Driving Controllers, Hack of Sprintmaster (Atari)", "New Release (Hack)", "", "", "", "", "", "", "Driving", "Driving", "", "", "8", "144", "27", "192", "", "", "" }, @@ -1477,17 +1477,17 @@ static const char* DefProps[][23] = { { "6ce2110ac5dd89ab398d9452891752ab", "Polyvox", "", "River Raid (Polyvox)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, { "6d74ebaba914a5cfc868de9dd1a5c434", "", "", "Fortress (Smooth Version) (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6dda84fb8e442ecf34241ac0d1d91d69", "Atari", "CX2677", "Dig Dug (1983) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "", "12", "136", "37", "188", "", "", "" }, - { "6dfad2dd2c7c16ac0fa257b6ce0be2f0", "Parker Bros", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)", "", "Prototype", "", "E0", "", "", "", "", "", "", "", "PAL", "", "", "25", "256", "", "", "" }, + { "6dfad2dd2c7c16ac0fa257b6ce0be2f0", "Parker Bros", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "25", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6e4521989a60a0ddf4ff1fc6e6e5fc3d", "", "", "Star Fire (01-05-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6e5d5ba193d2540aec2e847aafb2a5fb", "Retroactive", "", "Qb (2.14) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "6efe876168e2d45d4719b6a61355e5fe", "Bitcorp", "PG207", "Mission 3000 A.D. (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "194", "Yes", "", "" }, + { "6efe876168e2d45d4719b6a61355e5fe", "Bitcorp", "PG207", "Mission 3000 A.D. (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "58", "194", "Yes", "", "" }, { "6f5b3021a88930a9bba3770094c95f3d", "", "", "Image - Clown (09-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6fa0ac6943e33637d8e77df14962fbfc", "Rob Fulop", "", "Cubicolor (Rob Fulop)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "6fc27a9233fc69d28d3f190b4ff80f03", "", "", "UFO #6 by Charles Morgan (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fe67f525c39200a798985e419431805", "Atari", "CX2689", "Kangaroo (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "6fe67f525c39200a798985e419431805", "Atari", "CX2689", "Kangaroo (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "6ffc95108e5add6f9b8abcaf330be835", "Charles Morgan", "", "TP Bug by Charles Morgan (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "703f0f7af350b0fa29dfe5fbf45d0d75", "", "", "4 Pak (Dark Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "190", "", "", "" }, + { "703f0f7af350b0fa29dfe5fbf45d0d75", "", "", "4 Pak (Dark Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "190", "", "", "" }, { "7096a198531d3f16a99d518ac0d7519a", "Telegames", "1004", "Ram It (1982) (Telegames) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "70d14c66c319683b4c19abbe0e3db57c", "", "", "Oystron (V2.82) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "197", "", "", "" }, { "7146dd477e019f81eac654a79be96cb5", "Atari", "CX2685", "Gravitar (1988) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, @@ -1496,30 +1496,30 @@ static const char* DefProps[][23] = { { "72097e9dc366900ba2da73a47e3e80f5", "", "", "Euchre (15-06-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "728152f5ae6fdd0d3a9b88709bee6c7a", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "72a5b5052272ac785fa076709d16cef4", "", "", "KC Munckin (29-01-2003) (J. Parlee)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72d0acb5de0db662de0360a6fc59334d", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "" }, + { "72d0acb5de0db662de0360a6fc59334d", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72ffbef6504b75e69ee1045af9075f66", "Atari", "CX2632 / 4975153", "Space Invaders (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "73a710e621d44e97039d640071908aef", "", "", "Barber Pole Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "", "" }, - { "73c545db2afd5783d37c46004e4024c2", "CBS Electronics", "", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "205", "", "", "" }, + { "73c545db2afd5783d37c46004e4024c2", "CBS Electronics", "", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "205", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "742de93b8d849220f266b627fbabba82", "", "", "SCSIcide (25-02-2001) (Chris Wilkson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "747d3031eb37e32abc7f6e5ee928cd8f", "", "", "Greeting Cart Goth (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "74d072e8a34560c36cacbc57b2462360", "Sancho", "", "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "39", "243", "", "", "" }, + { "74d072e8a34560c36cacbc57b2462360", "Sancho", "", "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "243", "", "", "" }, { "7550b821ee56fb5833dca2be88622d5a", "", "", "Multiple Moving Objects Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7574480ae2ab0d282c887e9015fdb54c", "Atari", "CX2699", "Taz (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "191", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "75b557be7f08db84ec5b242207b9f241", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "75ea128ba96ac6db8edf54b071027c4e", "Atari", "", "Slot Machine (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "", "" }, - { "7628d3cadeee0fd2e41e68b3b8fbe229", "Atari", "", "Fishing Derby (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "188", "", "", "" }, + { "75ea128ba96ac6db8edf54b071027c4e", "Atari", "", "Slot Machine (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "256", "", "", "" }, + { "7628d3cadeee0fd2e41e68b3b8fbe229", "Atari", "", "Fishing Derby (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "188", "", "", "" }, { "76c88341017eae660efc6e49c4b6ab40", "", "", "Indiana Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "", "" }, { "76f66ce3b83d7a104a899b4b3354a2f2", "UA", "", "Cat Trax (1983) (UA)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "200", "Yes", "", "" }, - { "7778ac65d775a079f537e97cbdad541c", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "", "" }, + { "7778ac65d775a079f537e97cbdad541c", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, { "77887e4192a6b0a781530e6cf9be7199", "Atari", "CX2604", "Space War (1978) (Atari) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "", "" }, - { "77d0a577636e1c9212aeccde9d0baa4b", "Atari", "CX2621", "Video Olympics (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "PAL", "", "", "56", "205", "", "", "" }, + { "77d0a577636e1c9212aeccde9d0baa4b", "Atari", "CX2621", "Video Olympics (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "56", "205", "", "", "" }, { "7836794b79e8060c2b8326a2db74eef0", "", "", "RIOT RAM Test (26-11-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "78821ef76ebc3934850d1bc1b9e4f4b0", "", "", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "214", "", "", "" }, + { "78821ef76ebc3934850d1bc1b9e4f4b0", "", "", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "214", "", "", "" }, { "78c2de58e42cd1faac2ea7df783eaeb3", "", "", "Fu Kung! (V0.07) (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "792b1d93eb1d8045260c840b0688ec8f", "Kroko", "", "3E Bankswitch Test (TIA @ $00)", "", "", "", "3E", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "792b1d93eb1d8045260c840b0688ec8f", "Kroko", "", "3E Bankswitch Test (TIA @ $00)", "", "", "", "3E", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "798cc114f1623c14085868cd3494fe8e", "", "", "Pins Revenge (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79c27f90591e3fdc7d2ed020ecbedeb3", "CCE", "AX-022", "Seaquest (CCE) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, @@ -1535,101 +1535,101 @@ static const char* DefProps[][23] = { { "7c00e7a205d3fda98eb20da7c9c50a55", "", "AP 2004", "Lost Luggage (1981) (Apollo) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ca7a471d70305c673fedd08174a81e8", "Tim Snider", "", "Venture II (2001) (Tim Snider)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "7ced6709f091e79a2ab9575d3516a4ac", "Activision", "AX-027", "Plaque Attack (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "", "" }, + { "7ced6709f091e79a2ab9575d3516a4ac", "Activision", "AX-027", "Plaque Attack (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, { "7d903411807704e725cf3fafbeb97255", "", "", "Cosmic Ark (no stars) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "192", "", "", "" }, - { "7d940d749e55b96b7b746519fa06f2de", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "50", "", "", "", "" }, + { "7d940d749e55b96b7b746519fa06f2de", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "50", "", "", "", "" }, { "7db7c5fd8d3f53127a4bb0092c91d983", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "7dcbfd2acc013e817f011309c7504daa", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "Yes", "", "" }, - { "7e464186ba384069582d9f0c141f7491", "Playaround", "", "General Retreat (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "7e464186ba384069582d9f0c141f7491", "Playaround", "", "General Retreat (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "7e52a95074a66640fcfde124fffd491a", "Atari", "CX2673", "Phoenix (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "", "" }, { "7e9da5cb84d5bc869854938fe3e85ffa", "Atari", "CX2604", "Space War (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "", "" }, { "7eafc9827e8d5b1336905939e097aae7", "", "", "Elk Attack (1987) (Atari)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, { "7edc8fcb319b3fb61cac87614afd4ffa", "Activision", "AG-003", "Checkers (1980) (Activision) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "16", "144", "27", "", "", "", "" }, - { "7f430c33044e0354815392b53a9a772d", "HES", "", "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "", "" }, + { "7f430c33044e0354815392b53a9a772d", "HES", "", "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7f790939f7eaa8c47a246c4283981f84", "", "", "This Planet Sucks Demo 3 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, { "7fd52208fb6391bae0cd7e68c27bde6f", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, { "801ba40f3290fc413e8c816c467c765c", "Hozer Video Games", "", "Gunfight 2600 - Westward Ho! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, - { "8068e07b484dfd661158b3771d6621ca", "Epyx", "8056100286", "California Games (1988) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "43", "230", "", "", "" }, + { "8068e07b484dfd661158b3771d6621ca", "Epyx", "8056100286", "California Games (1988) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "230", "", "", "" }, { "80cec82239913cb8c4016eb13749de44", "David Marli", "", "Invaders from Space by David Marli (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "8108162bc88b5a14adc3e031cf4175ad", "Rainbow Vision", "", "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "251", "", "", "" }, + { "8108162bc88b5a14adc3e031cf4175ad", "Rainbow Vision", "", "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "251", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "81414174f1816d5c1e583af427ac89fc", "Video Gems / Thomas Jentzsch", "", "Treasure Below (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "8", "152", "26", "225", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8190b403d67bf9792fe22fa5d22f3556", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "8190b403d67bf9792fe22fa5d22f3556", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "81a010abdba1a640f7adf7f84e13d307", "Telegames", "7062 A305", "Universal Chaos (Telegames)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "Yes", "", "" }, - { "822a950f27ff0122870558a89a49cad3", "", "", "Space Jockey (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, - { "82bf0dff20cee6a1ed4bb834b00074e6", "Starsoft", "", "Der hungrige Panda (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "212", "", "", "" }, + { "822a950f27ff0122870558a89a49cad3", "", "", "Space Jockey (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "82bf0dff20cee6a1ed4bb834b00074e6", "Starsoft", "", "Der hungrige Panda (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "51", "212", "", "", "" }, { "835759ff95c2cdc2324d7c1e7c5fa237", "20th Century Fox", "11011", "M.A.S.H. (1982) (20th Century Fox)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "198", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "83d15fb9843d9f84aa3710538403f434", "", "", "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "195", "", "", "" }, + { "83d15fb9843d9f84aa3710538403f434", "", "", "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "195", "", "", "" }, { "83fafd7bd12e3335166c6314b3bde528", "Epyx", "8056100251", "Winter Games (1987) (Epyx) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "843435eb360ed72085f7ab9374f9749a", "Joe Grand", "", "SCSIcide (1.31) (Joe Grand)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "850ffd5849c911946b24544ea1e60496", "", "", "Invasion (07-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8538c5e3ee83267774480649f83fa8d6", "", "", "Escape Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "855a42078b14714bcfd490d2cf57e68d", "", "", "Miss Piggy's Wedding (Prototype) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "85b1bca93e69f13905107cc802a02470", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "46", "230", "", "", "" }, + { "85b1bca93e69f13905107cc802a02470", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "46", "230", "", "", "" }, { "85e48d68c8d802e3ba9d494a47d6e016", "", "", "Ship Demo (V 15) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "86128001e69ab049937f265911ce7e8a", "Apollo", "", "Lochjaw (1982) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8654d7f0fb351960016e06646f639b02", "", "", "Ski Hunt (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "235", "", "", "" }, + { "8654d7f0fb351960016e06646f639b02", "", "", "Ski Hunt (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "235", "", "", "" }, { "8712cceec5644aacc2c21203d9ebe2ec", "Retroactive", "", "Qb (V0.10) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "873fb75a7788ba0f4ae715229a05545e", "", "", "Euchre (Improved Colors) (PAL) (26-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "873fb75a7788ba0f4ae715229a05545e", "", "", "Euchre (Improved Colors) (PAL) (26-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "874c76726f68c166fcfac48ce78eef95", "", "", "Red Pong Number 2 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8786c1e56ef221d946c64f6b65b697e9", "20th Century Fox / Zellers", "11015", "Flash Gordon (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "198", "", "", "" }, { "87e79cd41ce136fd4f72cc6e2c161bee", "", "CX2675", "Ms. Pac-Man (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "No" }, { "885b2002fa9d27502d84968d4656c4ca", "CBS Electronics", "4L-2737", "Omega Race (1983) (CBS Electronics) [o1]", "Uses Booster Grip Controller; set right difficulty to 'A' to use Booster-Grip in both ports", "Uncommon", "", "", "", "A", "", "", "Booster-Grip", "Booster-Grip", "", "", "", "", "", "", "", "", "" }, { "8885d0ce11c5b40c3a8a8d9ed28cefef", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [a1]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "35", "180", "", "", "" }, - { "88d300a38bdd7cab9edad271c18cd02b", "Funvision", "", "Pac Kong (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "52", "215", "", "", "" }, + { "88d300a38bdd7cab9edad271c18cd02b", "Funvision", "", "Pac Kong (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "52", "215", "", "", "" }, { "88f74ec75ef696e7294b7b6ac5ca465f", "Activision", "AG-002", "Boxing (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, { "8933976f2029c0d8492ebd8f4eb21492", "", "", "Synthcart Plus (09-02-2003) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "", "" }, - { "898b5467551d32af48a604802407b6e8", "Bitcorp", "PG208", "Schnecke und Eichhoernchen (1983) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "", "" }, - { "8a183b6357987db5170c5cf9f4a113e5", "Atari", "", "RealSports Basketball (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "48", "199", "", "", "" }, - { "8a8e401369e2b63a13e18a4d685387c6", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "898b5467551d32af48a604802407b6e8", "Bitcorp", "PG208", "Schnecke und Eichhoernchen (1983) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "245", "", "", "" }, + { "8a183b6357987db5170c5cf9f4a113e5", "Atari", "", "RealSports Basketball (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "199", "", "", "" }, + { "8a8e401369e2b63a13e18a4d685387c6", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "8ac18076d01a6b63acf6e2cab4968940", "", "CX2685", "Gravitar (1988) (Atari) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, { "8b504b417c8626167a7e02f44229f0e7", "Retroactive", "", "Qb (V1.00) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8b81af55cd2ef3c7444d6aec4e3a1c09", "", "", "Dark Mage [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8bd8f65377023bdb7c5fcf46ddda5d31", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "", "" }, { "8c103a79b007a2fd5af602334937b4e1", "ITT Family Games / Thomas Jentzsch", "", "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "238", "", "", "" }, - { "8c2fa33048f055f38358d51eefe417db", "HomeVision", "", "Teddy Apple (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "239", "Yes", "", "" }, + { "8c2fa33048f055f38358d51eefe417db", "HomeVision", "", "Teddy Apple (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "51", "239", "Yes", "", "" }, { "8ccaa442d26b09139685f5b22bf189c4", "Retroactive", "", "Qb (V1.01) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "", "No" }, + { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "44", "220", "Yes", "", "No" }, { "8d1e2a6d2885966e6d86717180938f87", "", "", "Missile Command (Amiga Mouse) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8d9a06101ebb0f147936356e645309b8", "", "", "Grid Pattern Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e0ab801b1705a740b476b7f588c6d16", "Activision", "AG-009", "Freeway (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, - { "8e737a88a566cc94bd50174c2d019593", "Starsoft", "", "Feuerwehr im Einsatz (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "", "", "", "" }, - { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, - { "8f33bce5ba1053dcf4cea9c1c69981e4", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "8e737a88a566cc94bd50174c2d019593", "Starsoft", "", "Feuerwehr im Einsatz (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "", "", "", "" }, + { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "8f33bce5ba1053dcf4cea9c1c69981e4", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "8f613ea7c32a587d6741790e32872ddd", "", "", "Troll Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8fbabaa87941cdf3a377c15e95bdb0f3", "", "", "Meteor Smasher (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8febdd9142960d084ab6eeb1d3e88969", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "190", "", "", "" }, + { "8febdd9142960d084ab6eeb1d3e88969", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "190", "", "", "" }, { "9057694dce8449521e6164d263702185", "Activision", "AG-011", "Stampede (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "", "" }, { "90b1799dddb8bf748ee286d22e609480", "", "", "Ship Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "90d77e966793754ab4312c47b42900b1", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "213", "", "", "" }, + { "90d77e966793754ab4312c47b42900b1", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "213", "", "", "" }, { "911d385ee0805ff5b8f96c5a63da7de5", "Hozer Video Games", "", "Jammed (V0.1) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "9193b6fff6897d43274741d4f9855b6d", "", "", "Sub Rescue (Real Title Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "198", "", "", "" }, { "91f0a708eeb93c133e9672ad2c8e0429", "", "", "Oystron (V2.9) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "927d422d6335018da469a9a07cd80390", "Activision", "AX-020", "River Raid (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "60", "201", "", "", "" }, + { "927d422d6335018da469a9a07cd80390", "Activision", "AX-020", "River Raid (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "201", "", "", "" }, { "92a1a605b7ad56d863a56373a866761b", "US Games", "VC 2006", "Raft Rider (1982) (US Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, { "92ede72ed8f61d255bc58d2f166dc6b6", "", "", "Star Fire - Shootable (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93420cc4cb1af1f2175c63e52ec18332", "Tim Snider", "", "Blair Witch Project by Tim Snider (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "", "" }, { "936ef1d6f8a57b9ff575dc195ee36b80", "", "", "Pac Kong (Starsoft) (NTSC Conversion)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "26", "214", "", "", "" }, - { "939ce554f5c0e74cc6e4e62810ec2111", "Zimag", "", "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "", "" }, + { "939ce554f5c0e74cc6e4e62810ec2111", "Zimag", "", "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, { "93c52141d3c4e1b5574d072f1afde6cd", "Imagic", "O3213", "Subterrenea (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "205", "", "", "" }, { "93eb1795c8b1065b1b3d62bb9ec0ccdc", "", "", "Custer's Viagra (JSK) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "9436b7ad131b5a1f7753ce4309ba3dee", "Kyle Pittman", "", "War of The Worlds by Kyle Pittman (Defender Hack)", "Hack of Defender (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "94b92a882f6dbaa6993a46e2dcc58402", "Activision", "AX-026", "Enduro (1983) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, { "94e4c9b924286038527f49cdc20fda69", "Retroactive", "", "Qb (V2.12) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "95351b46fa9c45471d852d28b9b4e00b", "Atari", "", "Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "191", "", "", "" }, + { "95351b46fa9c45471d852d28b9b4e00b", "Atari", "", "Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, { "95a69cf8c08ef1522b050529464f0bca", "", "", "Grid Pattern Demo 1 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "95c4576d6a14e2debfa0fd6f6ec254ab", "Activision", "AX-020", "River Raid (1982) (Activision) [a2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "30", "199", "", "", "" }, + { "95c4576d6a14e2debfa0fd6f6ec254ab", "Activision", "AX-020", "River Raid (1982) (Activision) [a2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "", "" }, { "95fd6097dc27c20666f039cfe34f7c69", "", "", "Oh No! (Version 1) (17-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "", "" }, { "9671b658286e276cc4a3d02aa25931d2", "", "", "Hangman Ghost Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "969b968383d9f0e9d8ffd1056bcaef49", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "230", "", "", "" }, + { "969b968383d9f0e9d8ffd1056bcaef49", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "230", "", "", "" }, { "96f806fc62005205d851e758d050dfca", "", "", "Push (V0.05) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "97842fe847e8eb71263d6f92f7e122bd", "Imagic", "O3206", "Solar Storm (1983) (Imagic)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "42", "190", "", "", "" }, { "97cd63c483fe3c68b7ce939ab8f7a318", "Thomas Jentzsch", "", "Robot City (V0.21) (15-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, - { "9813b9e4b8a6fd919c86a40c6bda8c93", "Atari", "CX26177", "Ikari Warriors (1990) (Atari) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "", "" }, + { "9813b9e4b8a6fd919c86a40c6bda8c93", "Atari", "CX26177", "Ikari Warriors (1990) (Atari) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, { "9853089672116117258097dbbdb939b7", "Hozer Video Games", "", "Gunfight 2600 - Cowboy Hair (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ccd15345b1aee6caf51e05955f0261", "Retroactive", "", "Qb (V2.03) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -1641,26 +1641,26 @@ static const char* DefProps[][23] = { { "9ab72d3fd2cc1a0c9adb504502579037", "Epyx", "8056100286", "California Games (1988) (Epyx) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, { "9ad36e699ef6f45d9eb6c4cf90475c9f", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, { "9b21d8fc78cc4308990d99a4d906ec52", "", "C-838", "Immies & Aggies (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "15", "", "", "", "" }, - { "9bb136b62521c67ac893213e01dd338f", "", "", "Spike's Peak (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "235", "", "", "" }, + { "9bb136b62521c67ac893213e01dd338f", "", "", "Spike's Peak (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "235", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c27ef3bd01c611cdb80182a59463a82", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c6faa4ff7f2ae549bbcb14f582b70e4", "CCE", "VC 1002", "Sneek 'n Peek (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "229", "", "", "" }, { "9c7fa3cfcaaafb4e6daf1e2517d43d88", "", "", "PIEROXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, - { "9d2938eb2b17bb73e9a79bbc06053506", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "200", "", "", "" }, + { "9d2938eb2b17bb73e9a79bbc06053506", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "52", "200", "", "", "" }, { "9d4bc7c6fe9a7c8c4aa24a237c340adb", "", "", "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "201", "", "", "" }, { "9e01f7f95cb8596765e03b9a36e8e33c", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari)", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "195", "", "", "" }, { "9e5007131695621d06902ab3c960622a", "", "", "Tac Scan (1983) (Sega) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "Yes", "", "" }, { "9e904e2eaa471c050c491289b8b80f60", "", "", "How to Draw a Playfield II (1997) (Erik Mooney) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9ec1b259a1bcffa63042a3c2b3b90f0a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "", "" }, - { "9ed0f2aa226c34d4f55f661442e8f22a", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, + { "9ed0f2aa226c34d4f55f661442e8f22a", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, { "9efa877a98dd5a075e058214da428abb", "Hozer Video Games", "", "SCSIcide (1.32) (Hozer Video Games)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "9f48eeb47836cf145a15771775f0767a", "Atari", "CX262", "Basic Programming (1978) (Atari)", "Uses Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "8", "152", "37", "221", "Yes", "", "" }, { "9f901509f0474bf9760e6ebd80e629cd", "", "CX2623 / 99819 / 75125", "Home Run (1978) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "", "", "", "" }, - { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari", "CX2688", "Jungle Hunt (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "", "" }, - { "a0185c06297b2818f786d11a3f9e42c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "194", "", "", "" }, + { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari", "CX2688", "Jungle Hunt (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, + { "a0185c06297b2818f786d11a3f9e42c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "194", "", "", "" }, { "a0675883f9b09a3595ddd66a6f5d3498", "Sunrise", "6057 A227", "Quest for Quintana Roo (Telegames) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "a0e2d310e3e98646268200c8f0f08f46", "", "", "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "230", "", "", "" }, + { "a0e2d310e3e98646268200c8f0f08f46", "", "", "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "230", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a14d8a388083c60283e00592b18d4c6c", "", "", "Tunnel Demo (28-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a174cece06b3abc0aec3516913cdf9cc", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "36", "198", "", "", "" }, @@ -1674,7 +1674,7 @@ static const char* DefProps[][23] = { { "a29df35557f31dfea2e2ae4609c6ebb7", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Joystick)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "40", "190", "", "", "" }, { "a2eb84cfeed55acd7fece7fefdc83fbb", "", "", "Kool Aid Man (Fixed) (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "199", "", "", "" }, { "a35d47898b2b16ec641d1dfa8a45c2b7", "Activision", "AX-017", "Megamania (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, - { "a3d7c299fbcd7b637898ee0fdcfc47fc", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "136", "52", "", "", "", "" }, + { "a3d7c299fbcd7b637898ee0fdcfc47fc", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "52", "", "", "", "" }, { "a412c8577b2d57b09185ae51739ac54f", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "Yes", "", "" }, { "a47878a760f5fa3aa99f95c3fdc70a0b", "", "", "Demo Image Series #5 - Baboon (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a499d720e7ee35c62424de882a3351b6", "Sega", "009-01", "Up 'n Down (1983) (Sega)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "205", "", "", "" }, @@ -1683,38 +1683,38 @@ static const char* DefProps[][23] = { { "a4e885726af9d97b12bb5a36792eab63", "Xonox", "99001", "Spike's Peak (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "", "", "", "" }, { "a5262fe6d01d6a1253692682a47f79dd", "", "", "JKH Text Scrolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "", "" }, { "a591b5e8587aae0d984a0f6fe2cc7d1c", "", "", "Globe Trotter Demo (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision", "AG-007", "Tennis (1981) (Activision) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, - { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari", "", "Surround (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "237", "", "", "" }, + { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision", "AG-007", "Tennis (1981) (Activision) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari", "", "Surround (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "237", "", "", "" }, { "a62e3e19280ff958407e05ca0a2d5ec7", "", "", "Hangman Ghost Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a6637741b3e1111ebb0d4c9712a871b6", "", "", "Greeting Cart Cindy Margolis (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a69f5b1761a8a11c98e706ec7204937f", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "230", "Yes", "", "" }, - { "a7673809068062106db8e9d10b56a5b3", "Atari", "CX26118", "Millipede (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "198", "", "", "" }, + { "a69f5b1761a8a11c98e706ec7204937f", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "230", "Yes", "", "" }, + { "a7673809068062106db8e9d10b56a5b3", "Atari", "CX26118", "Millipede (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "198", "", "", "" }, { "a7b96a8150600b3e800a4689c3ec60a2", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Paddles)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "42", "190", "", "", "" }, - { "a7ed7dc5cbc901388afa59030fb11d26", "Atari", "CX2606", "Slot Racers (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "", "", "", "" }, + { "a7ed7dc5cbc901388afa59030fb11d26", "Atari", "CX2606", "Slot Racers (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "63", "", "", "", "" }, { "a81b29177f258494b499fbac69789cef", "Greg Thompson", "", "Console Wars (PD)", "Hack of Space Jockey (US Games)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a867b76098786c4091dba2fcee5084c3", "", "", "Dragrace (Dragster Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8a703e073183a89c94d4d99b9661b7f", "Philip R. Frey", "", "Spice Invaders by Franklin Cruz (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "a93e8ea1f565c3c1e86b708cf0dc2fa9", "Jess Ragan", "", "Kabul! by Jess Ragan (Kaboom! Hack)", "Hack of Kaboom! (Activision); Uses the Paddle Controllers (left only)", "New Release (Hack)", "", "", "", "", "", "", "Paddles", "None", "", "", "8", "144", "41", "192", "", "", "" }, - { "a957dbe7d85ea89133346ad56fbda03f", "", "", "Asteroids (1979) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "220", "Yes", "", "" }, + { "a957dbe7d85ea89133346ad56fbda03f", "", "", "Asteroids (1979) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "220", "Yes", "", "" }, { "a995b6cbdb1f0433abc74050808590e6", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "", "" }, { "aa1c41f86ec44c0a44eb64c332ce08af", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "21", "", "", "", "" }, - { "aab840db22075aa0f6a6b83a597f8890", "ITT Family Games", "", "Hell Driver (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "209", "", "", "" }, + { "aab840db22075aa0f6a6b83a597f8890", "ITT Family Games", "", "Hell Driver (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "209", "", "", "" }, { "aaea37b65db9e492798f0105a6915e96", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "192", "", "", "" }, { "ab2ea35dcc1098c87455bb8210b018cf", "", "", "Fu Kung! (V0.04 Single Line Resolution) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ab4ac994865fb16ebb85738316309457", "Atari", "CX2624", "Basketball (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "abb740bea0a6842831b4f53112fb8145", "", "", "Qb (V1.01) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "250", "Yes", "", "" }, - { "abe40542e4ff2d1c51aa2bb033f09984", "Activision", "AZ-042", "Skate Boardin' (1987) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "209", "", "", "" }, - { "ac26d7d37248d1d8eac5eccacdbef8db", "", "", "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "245", "", "", "" }, + { "abb740bea0a6842831b4f53112fb8145", "", "", "Qb (V1.01) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "250", "Yes", "", "" }, + { "abe40542e4ff2d1c51aa2bb033f09984", "Activision", "AZ-042", "Skate Boardin' (1987) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "209", "", "", "" }, + { "ac26d7d37248d1d8eac5eccacdbef8db", "", "", "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "245", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac7c2260378975614192ca2bc3d20e0b", "Activision", "AZ-030", "Decathlon (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "38", "193", "", "", "" }, { "acaa27d214039d89d7031609aafa55c3", "", "", "Sprite Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "acb7750b4d0c4bd34969802a7deb2990", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros)", "", "Uncommon", "", "", "A", "A", "", "", "", "None", "", "", "4", "152", "40", "182", "", "", "" }, { "ace319dc4f76548659876741a6690d57", "", "CX2616", "Championship Soccer (AKA Pele's Soccer)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "192", "", "", "" }, - { "ad42e3ca3144e2159e26be123471bffc", "Atari", "", "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "", "" }, + { "ad42e3ca3144e2159e26be123471bffc", "Atari", "", "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "adb79f9ac1a633cdd44954e2eac14774", "Digivision", "", "Frostbite (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "197", "", "", "" }, { "adfbd2e8a38f96e03751717f7422851d", "Champ Games", "", "Lady Bug (NTSC)", "", "Homebrew", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "ae0d4f3396cb49de0fabdff03cb2756f", "Retroactive", "", "Qb (V2.02) (PAL) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "ae0d4f3396cb49de0fabdff03cb2756f", "Retroactive", "", "Qb (V2.02) (PAL) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "ae2f1f69bb38355395c1c75c81acc644", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 122383)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "ae6cb335470788b94beb5787976e8818", "", "", "Mortal Kurling (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae97cf8ed21f4154b4360a3cf6c95c5e", "", "", "Teleterm 2600 (John K. Harvey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1725,55 +1725,55 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b00088418fc891f3faa3d4ddde6ace94", "", "", "Unknown Title (bin00007 (200102)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b06050f686c6b857d0df1b79fea47bb4", "", "", "Moonsweeper (1983) (Activision-PS2) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "b0ba51723b9330797985808db598fc31", "", "", "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "246", "", "", "" }, + { "b0ba51723b9330797985808db598fc31", "", "", "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "246", "", "", "" }, { "b0e1ee07fbc73493eac5651a52f90f00", "Colin Hughes", "", "Tetris 2600 (Colin Hughes)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "b15026b43c6758609667468434766dd8", "Retroactive", "", "Qb (0.06) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "b1b20536aef4eed9c79dc5804f077862", "", "", "Euchre (NTSC) (09-11-2001) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b1d1e083dc9e7d9a5dc1627869d2ade7", "CCE", "", "Mario Bros (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "b1fd0b71de9f6eeb5143a97963674cb6", "", "", "Multi-Color Demo 7 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b2737034f974535f5c0c6431ab8caf73", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "67", "153", "", "", "" }, - { "b29359f7de62fed6e6ad4c948f699df8", "", "", "Labyrinth (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "225", "", "", "" }, + { "b29359f7de62fed6e6ad4c948f699df8", "", "", "Labyrinth (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "52", "225", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b2d5d200f0af8485413fad957828582a", "Atari", "CX26155", "Sprint Master (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "54", "200", "", "", "" }, - { "b3017e397f74efd53caf8fae0a38e3fe", "Retroactive", "", "Qb (2.12) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "b37f0fe822b92ca8f5e330bf62d56ea9", "Xonox", "99001", "Spike's Peak (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "235", "", "", "" }, + { "b2d5d200f0af8485413fad957828582a", "Atari", "CX26155", "Sprint Master (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "54", "200", "", "", "" }, + { "b3017e397f74efd53caf8fae0a38e3fe", "Retroactive", "", "Qb (2.12) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "b37f0fe822b92ca8f5e330bf62d56ea9", "Xonox", "99001", "Spike's Peak (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "235", "", "", "" }, { "b41fdd4a522e1d5a2721840028684ac2", "", "", "Green and Yellow Number 1 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "b442887aec0b4a725996d53f34787b14", "Imagic", "O3205", "Fathom (1983) (Imagic) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "Yes", "", "" }, - { "b49331b237c8f11d5f36fe2054a7b92b", "Funvision", "", "Galactic (G) (Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "208", "", "", "" }, + { "b49331b237c8f11d5f36fe2054a7b92b", "Funvision", "", "Galactic (G) (Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "208", "", "", "" }, { "b4e2fd27d3180f0f4eb1065afc0d7fc9", "", "50010", "London Blitz (1983) (Avalon Hill)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b56264f738b2eb2c8f7cf5a2a75e5fdc", "Atari", "CX2694", "Pole Position (1983) (Atari) (PAL) [!]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "190", "", "", "" }, - { "b5cb9cf6e668ea3f4cc2be00ea70ec3c", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "227", "Yes", "", "" }, + { "b56264f738b2eb2c8f7cf5a2a75e5fdc", "Atari", "CX2694", "Pole Position (1983) (Atari) (PAL) [!]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "43", "190", "", "", "" }, + { "b5cb9cf6e668ea3f4cc2be00ea70ec3c", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "43", "227", "Yes", "", "" }, { "b6812eaf87127f043e78f91f2028f9f4", "Simage", "", "Eli's Ladder (Simage)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "", "" }, { "b6d52a0cf53ad4216feb04147301f87d", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "", "" }, { "b719ada17771a8d206c7976553825139", "Ron Corcoran", "", "DUP Space Invaders (Ron Corcoran)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "b7345220a0c587f3b0c47af33ebe533c", "Starsoft", "", "Landungskommando (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "", "" }, - { "b79fe32320388a197ac3a0b932cc2189", "", "", "Moonsweeper (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "Yes", "", "" }, + { "b7345220a0c587f3b0c47af33ebe533c", "Starsoft", "", "Landungskommando (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, + { "b79fe32320388a197ac3a0b932cc2189", "", "", "Moonsweeper (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "Yes", "", "" }, { "b7f184013991823fc02a6557341d2a7a", "", "", "Blue Rod Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "224", "", "", "" }, { "b816296311019ab69a21cb9e9e235d12", "Sears", "CX2652", "Poker Plus (AKA Casino) (1978) (Sears) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "36", "220", "", "", "" }, { "b8865f05676e64f3bec72b9defdacfa7", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "", "" }, { "b9040a7af6d0d13e7d8fea72b2fb7432", "", "", "Image - Samantha Fox (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b958d5fd9574c5cf9ece4b9421c28ecd", "Piero Cavina", "", "Multi-Sprite Game V1.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "", "" }, - { "b9c3bc1d77f8e9d814735188bf324e40", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros) [b1]", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b9c3bc1d77f8e9d814735188bf324e40", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b9f9c0fed0db08c34346317f3957a945", "Supervision", "", "Chopper Command (1982) (Supervision) (PAL) [p1] [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "194", "", "", "" }, + { "b9f9c0fed0db08c34346317f3957a945", "Supervision", "", "Chopper Command (1982) (Supervision) (PAL) [p1] [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "194", "", "", "" }, { "ba3a17efd26db8b4f09c0cf7afdf84d1", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ba657d940a11e807ff314bba2c8b389b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, { "baf4ce885aa281fd31711da9b9795485", "Atari", "CX26176", "Radar Lock (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "185", "", "", "" }, { "bb579404924c40ca378b4aff6ccf302d", "", "", "Lightbulb Lightens, The (PD) (Non Functional)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bb9f06b288b5275bc0d38b6731b2526a", "", "", "Star Fire - Meteor Dance 2 (18-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bc4cf38a4bee45752dc466c98ed7ad09", "Atari", "CX26136", "Solaris (1986) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "195", "", "", "" }, + { "bc4cf38a4bee45752dc466c98ed7ad09", "Atari", "CX26136", "Solaris (1986) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "195", "", "", "" }, { "bc6432cbed32c695658514c4eb41d905", "Manuel Polik", "", "Star Fire (MP) (2002) (PD)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bcb2967b6a9254bcccaf906468a22241", "Activision", "", "Demon Attack (1983) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "194", "", "", "" }, { "bd1bd6f6b928df17a702def0302f46f4", "", "", "Binary To Decimal Routine (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bd430c2193045c68d1a20a018a976248", "", "", "Pac Ghost Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bdbaeff1f7132358ea64c7be9e46c1ac", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "193", "", "", "" }, - { "be060a704803446c02e6f039ab12eb91", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "220", "", "", "" }, + { "bdbaeff1f7132358ea64c7be9e46c1ac", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "193", "", "", "" }, + { "be060a704803446c02e6f039ab12eb91", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "41", "220", "", "", "" }, { "be3343494301a3a8b1b2a2f8d7473c45", "", "", "Image - Clown (Full Screen) (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be561b286b6432cac71bccbae68002f7", "", "", "Counter Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "becd908f9d7bb361982c3dc02d6475c6", "Kyle Pittman", "", "THX-1138 by Kyle Pittman (Berzerk Hack)", "Hack of Berserk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "", "" }, { "befce0de2012b24fd6cb8b53c17c8271", "", "", "Push (V0.03) (No Illegal Opcodes) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bf976cf80bcf52c5f164c1d45f2b316b", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, + { "bf976cf80bcf52c5f164c1d45f2b316b", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, { "bfb7850e3ca39f417f8e4bd5ae39f24b", "", "", "Excalibur Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bff8f8f53a8aeb1ee804004ccbb08313", "", "", "Droid Demo 22 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "196", "", "", "" }, { "c00b65d1bae0aef6a1b5652c9c2156a1", "Atari", "CX2621", "Video Olympics (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "30", "205", "", "", "" }, @@ -1781,63 +1781,63 @@ static const char* DefProps[][23] = { { "c126656df6badfa519cc63e681fb3596", "", "", "Space Invaders (2002) (Ron Corcoran) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c17bdc7d14a36e10837d039f43ee5fa3", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "c1cb228470a87beb5f36e90ac745da26", "Activision", "AX-015", "Chopper Command (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "", "" }, - { "c20f15282a1aa8724d70c117e5c9709e", "Video Gems", "", "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, - { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "A", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, - { "c2410d03820e0ff0a449fa6170f51211", "Atari", "CX2646 / 4975185", "Pac-Man (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "206", "", "", "" }, + { "c20f15282a1aa8724d70c117e5c9709e", "Video Gems", "", "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "c2410d03820e0ff0a449fa6170f51211", "Atari", "CX2646 / 4975185", "Pac-Man (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "54", "206", "", "", "" }, { "c28b29764c2338b0cf95537cc9aad8c9", "", "", "Multi-Color Demo 4 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c2b5c50ccb59816867036d7cf730bf75", "Salu", "", "Ghostbusters II (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "242", "Yes", "", "" }, + { "c2b5c50ccb59816867036d7cf730bf75", "Salu", "", "Ghostbusters II (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "242", "Yes", "", "" }, { "c3205e3707f646e1a106e09c5c49c1bf", "", "", "Unknown Title (bin00003 (200206)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c3a9550f6345f4c25b372c42dc865703", "Atari", "CX2663", "Road Runner (1989) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "44", "225", "", "", "" }, + { "c3a9550f6345f4c25b372c42dc865703", "Atari", "CX2663", "Road Runner (1989) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "44", "225", "", "", "" }, { "c3e4aa718f46291311f1cce53e6ccd79", "", "", "Hangman Ghost 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c4060a31d61ba857e756430a0a15ed2e", "", "", "Pick 'n Pile (PAL Conversion) (2003) (TJ)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "", "26", "", "Yes", "", "" }, { "c450a285daa7a3b65188c2c3cf04fb3e", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "c47244f5557ae12c61e8e01c140e2173", "", "", "Jungle Hunt (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "196", "", "", "" }, - { "c49fe437800ad7fd9302f3a90a38fb7d", "Atari", "CX2697", "Mario Bros (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "206", "", "", "" }, - { "c4bbbb0c8fe203cbd3be2e318e55bcc0", "Imagic", "", "Atlantis (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, - { "c4d888bcf532e7c9c5fdeafbb145266a", "", "", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "Yes", "", "" }, + { "c47244f5557ae12c61e8e01c140e2173", "", "", "Jungle Hunt (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, + { "c49fe437800ad7fd9302f3a90a38fb7d", "Atari", "CX2697", "Mario Bros (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "52", "206", "", "", "" }, + { "c4bbbb0c8fe203cbd3be2e318e55bcc0", "Imagic", "", "Atlantis (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "c4d888bcf532e7c9c5fdeafbb145266a", "", "", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "235", "Yes", "", "" }, { "c5301f549d0722049bb0add6b10d1e09", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "30", "205", "", "", "" }, { "c58708c09ccb61625cda9d15ddcd8be6", "", "", "NOIZ Invaders by SPIKE the Percussionist (2002) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c5a76bafc4676edb76e0126fb9f0fb2d", "Charles Morgan", "", "Zero Patrol by Charles Morgan (Moon Patrol Hack)", "Hack of Moon Patrol (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c63a98ca404aa5ee9fcff1de488c3f43", "Atari", "CX26145", "Venture (1988) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "c67ff409f28f44883bd5251cea79727d", "", "", "Gunfight 2600 - Music & Bugfixes 1 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "c6c63da3bc2e47291f63280e057061d0", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "", "" }, + { "c6c63da3bc2e47291f63280e057061d0", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "c738fc3f5aae1e8f86f7249f6c82ac81", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [o2]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "c74bfd02c7f1877bbe712c1da5c4c194", "Activision / Thomas Jentzsch", "", "River Raid (Tanks Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, { "c7900a7fe95a47eef3b325072ad2c232", "", "", "Super Congo Bongo (2003) (Larry Petit) (Congo Bongo Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c7eab66576696e11e3c11ffff92e13cc", "Atari", "CX2680", "RealSports Tennis (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "", "" }, + { "c7eab66576696e11e3c11ffff92e13cc", "Atari", "CX2680", "RealSports Tennis (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, { "c82ec00335cbb4b74494aecf31608fa1", "CCE", "", "E.T. The Extra-Terrestrial (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "", "" }, { "c866c995c0d2ca7d017fef0fc0c2e268", "Retroactive", "", "Qb (2.00) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "6", "", "Yes", "", "" }, { "c8fa5d69d9e555eb16068ef87b1c9c45", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, { "c9b7afad3bfd922e006a6bfc1d4f3fe7", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "220", "", "", "" }, { "c9f6e521a49a2d15dac56b6ddb3fb4c7", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "8", "144", "31", "199", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ca50cc4b21b0155255e066fcd6396331", "Starsoft", "", "Raumpatrouille (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "220", "Yes", "", "" }, - { "ca7aaebd861a9ef47967d31c5a6c4555", "Atari", "", "Home Run (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "220", "", "", "" }, + { "ca50cc4b21b0155255e066fcd6396331", "Starsoft", "", "Raumpatrouille (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "220", "Yes", "", "" }, + { "ca7aaebd861a9ef47967d31c5a6c4555", "Atari", "", "Home Run (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "220", "", "", "" }, { "cad982c9b45bc5eff34e4ea982d5f1ca", "", "", "Song (17-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cb24210dc86d92df97b38cf2a51782da", "Ariola", "VG-01", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "cb24210dc86d92df97b38cf2a51782da", "Ariola", "VG-01", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "cb8afcbc4a779b588b0428ea7af211d5", "Activision", "", "Atlantis (1982) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, - { "cb9b2e9806a7fbab3d819cfe15f0f05a", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "E0", "", "", "", "", "", "", "", "PAL", "8", "144", "55", "200", "", "", "" }, + { "cb9b2e9806a7fbab3d819cfe15f0f05a", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "55", "200", "", "", "" }, { "cbb0ee17c1308148823cc6da85bff25c", "", "", "Rotating Colors Demo 1 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cbd981a23c592fb9ab979223bb368cd5", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari)", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "cbeafd37f15e0dddb0540dbe15c545a4", "", "", "Black and White Fast Scolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "193", "", "", "" }, - { "cc3d942c6958bd16b1c602623f59e6e1", "", "", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "240", "", "", "" }, + { "cc3d942c6958bd16b1c602623f59e6e1", "", "", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ccb807eb79b0ed0f5fdc460445ef703a", "", "", "Superman (Stunt_Cycle_Rules!) (Superman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "", "" }, + { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, { "cd139ae6d09f3665ad09eb79da3f9e49", "Eric Mooney", "", "Invaders by Erik Mooney (4-24-97) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd3e26786136a4692fd2cb2dfbc1927e", "", "", "Multiple Moving Objects Demo 2 (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd6b3dff86a55a4a6d23007ee360ea0e", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, { "cd9fea12051e414a6dfe17052067da8e", "Paul Slocum", "", "Marble Craze Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cddabfd68363a76cd30bee4e8094c646", "CommaVid", "", "Magicard (CommaVid)", "Uses Keypad Controllers", "", "", "CV", "", "", "", "", "Keyboard", "", "", "", "", "", "25", "", "", "", "" }, - { "ce243747bf34a2de366f846b3f4ca772", "Goliath", "", "Felix Return (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "247", "", "", "" }, + { "ce243747bf34a2de366f846b3f4ca772", "Goliath", "", "Felix Return (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "247", "", "", "" }, { "ce6c4270f605ad3ce5e82678b0fc71f8", "", "", "Vertical Rainbow Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cea9f72036dc6f7af5eff52459066290", "Retroactive", "", "Qb (2.07) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "cef2287d5fd80216b2200fb2ef1adfa8", "Milton Bradley", "4363", "Spitfire Attack (1983) (Milton Bradley) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, { "cf507910d6e74568a68ac949537bccf9", "Sega", "003-01", "Thunderground (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, - { "cf9069f92a43f719974ee712c50cd932", "Video Gems", "", "Mission Survive (1983) (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "PAL", "8", "148", "60", "", "Yes", "", "" }, - { "cfc226d04d7490b69e155abd7741e98c", "Atari", "CX26159", "Double Dunk (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "190", "", "", "" }, + { "cf9069f92a43f719974ee712c50cd932", "Video Gems", "", "Mission Survive (1983) (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "", "8", "148", "60", "", "Yes", "", "" }, + { "cfc226d04d7490b69e155abd7741e98c", "Atari", "CX26159", "Double Dunk (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "190", "", "", "" }, { "cfdb4d0427a1ea8085c6bc6eb90259d8", "", "", "Gunfight 2600 - Release Candidate (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "cfee10bd7119f10b136921ced2ee8972", "", "", "Space Instigators (V1.8) (19-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1854,10 +1854,10 @@ static const char* DefProps[][23] = { { "d2901c34bb6496bb96c7bc78a9e6142a", "", "", "Fish Revenge (2003) (Greg Zumwalt) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2c957dd7746521b51bb09fde25c5774", "Eckhard Stolberg", "", "Cubis (6K) (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2f713c78a9ebba9da6d10aeefc6f20f", "Digivision", "", "Enduro (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, - { "d339b95f273f8c3550dc4daa67a4aa94", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "55", "", "", "", "" }, + { "d339b95f273f8c3550dc4daa67a4aa94", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "55", "", "", "", "" }, { "d3423d7600879174c038f53e5ebbf9d3", "US Games", "VC 2005", "Piece o' Cake (1982) (US Games) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "d34b933660e29c0a0a04004f15d7e160", "", "", "Multi-Color Demo 5 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d39e29b03af3c28641084dd1528aae05", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "d39e29b03af3c28641084dd1528aae05", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "d45ebf130ed9070ea8ebd56176e48a38", "Sega", "001-01", "Tac Scan (1983) (Sega) [!]", "Uses the Paddle Controllers (right only)", "Uncommon", "", "", "", "", "", "Yes", "Paddles", "Paddles", "Yes", "", "8", "152", "44", "202", "Yes", "", "" }, { "d483f65468d9a265661917bae1a54f3e", "Joe Grand", "", "SCSIcide Pre-release 3 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "d49aff83f77a1b9041ad7185df3c2277", "", "", "Space Treat (60% complete) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -1865,18 +1865,18 @@ static const char* DefProps[][23] = { { "d541b20eae221a8ee321375e5971e766", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "196", "", "", "" }, { "d57eb282d7540051bc9b5427cf966f03", "", "", "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "200", "", "", "" }, { "d5e27051512c1e7445a9bf91501bda09", "Activision", "AG-008", "Laser Blast (1981) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "", "" }, - { "d61629bbbe035f45552e31cef7d591b2", "", "", "Atari Logo Demo (PD) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "", "" }, - { "d62d7d1a974c31c5803f96a8c1552510", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [p1][!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "d61629bbbe035f45552e31cef7d591b2", "", "", "Atari Logo Demo (PD) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, + { "d62d7d1a974c31c5803f96a8c1552510", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [p1][!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "d65900fefa7dc18ac3ad99c213e2fa4e", "", "", "Grid and Purple Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "", "" }, - { "d6acff6aed0f04690fe4024d58ff4ce3", "Spectravideo", "SA-202", "Planet Patrol (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "", "" }, + { "d6acff6aed0f04690fe4024d58ff4ce3", "Spectravideo", "SA-202", "Planet Patrol (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, { "d74a81fcd89c5cf0bd4c88eb207ebd62", "", "", "Poker Squares (V0.00a) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d787ec6785b0ccfbd844c7866db9667d", "Retroactive", "", "Qb (V0.04) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "d7b58303ec8d8c4dbcbf54d3b9734c7e", "", "", "Paddle Demo (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d81bb6965e6c99b3be99ffd8978740e4", "", "", "Gunfight 2600 - The Final Kernel Part 3 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "198", "", "", "" }, { "d82c8a58098a6b46c5b81c16180354d1", "", "", "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "198", "", "", "" }, - { "d85f1e35c5445ac898746719a3d93f09", "Starsoft", "", "Tom's Eierjagd (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "217", "", "", "" }, - { "d89fedded0436fdeda7c3c37e2fb7cf1", "Atari", "", "Surround (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "226", "", "", "" }, - { "d8df256c0d89e494a9fb3e9abb8e44ac", "Imagic", "IA3312", "No Escape! (1983) (Imagic) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "230", "", "", "" }, + { "d85f1e35c5445ac898746719a3d93f09", "Starsoft", "", "Tom's Eierjagd (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "217", "", "", "" }, + { "d89fedded0436fdeda7c3c37e2fb7cf1", "Atari", "", "Surround (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "226", "", "", "" }, + { "d8df256c0d89e494a9fb3e9abb8e44ac", "Imagic", "IA3312", "No Escape! (1983) (Imagic) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "50", "230", "", "", "" }, { "d912312349d90e9d41a9db0d5cd3db70", "CCE", "", "Star Voyager (CCE) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "193", "", "", "" }, { "d9ab6b67a17da51e5ad13717e93fa2e2", "", "", "Turbo (Coleco) Prototype Fake v0.1 (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da4e3396aa2db3bd667f83a1cb9e4a36", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, @@ -1890,13 +1890,13 @@ static const char* DefProps[][23] = { { "db4eb44bc5d652d9192451383d3249fc", "", "", "Mountain King (1983) (CBS Electronics) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "47", "186", "Yes", "", "" }, { "dba2692a216cb6c262c78f8b111a813e", "", "", "Star Fire (08-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dbb10b904242fcfb8428f372e00c01af", "Atari", "CX2631", "Superman (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "38", "", "", "", "" }, + { "dbb10b904242fcfb8428f372e00c01af", "Atari", "CX2631", "Superman (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "", "", "", "" }, { "dbc8829ef6f12db8f463e30f60af209f", "Data Age", "DA 1001", "Encounter at L5 (1982) (Data Age)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "dbdd21e1ee3d72119e8cd14d943c585b", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "", "" }, - { "dc81c4805bf23959fcf2c649700b82bf", "", "", "No Escape! (1983) (Imagic) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "230", "", "", "" }, + { "dbdd21e1ee3d72119e8cd14d943c585b", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "256", "", "", "" }, + { "dc81c4805bf23959fcf2c649700b82bf", "", "", "No Escape! (1983) (Imagic) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "230", "", "", "" }, { "dcc2956c7a39fdbf1e861fc5c595da0d", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "41", "194", "", "", "" }, - { "dd08e18cfee87a0e7fc19a684b36e124", "", "", "Kangaroo (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, - { "dd17711a30ad60109c8beace0d4a76e8", "", "", "Karate (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "217", "", "", "" }, + { "dd08e18cfee87a0e7fc19a684b36e124", "", "", "Kangaroo (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "dd17711a30ad60109c8beace0d4a76e8", "", "", "Karate (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "217", "", "", "" }, { "dd4f4e0fbd81762533e39e6f5b55bb3a", "", "", "Turbo WIP (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dd8a2124d4eda200df715c698a6ea887", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, @@ -1906,52 +1906,52 @@ static const char* DefProps[][23] = { { "de24f700fd28d5b8381de13abd091db9", "CCE", "", "Plaque Attack (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, { "de4436eaa41e5d7b7609512632b90078", "Activision", "AX-014", "Grand Prix (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "", "" }, { "de62f8a30298e2325249fe112ecb5c10", "CCE", "", "Enduro (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "175", "", "", "" }, - { "de7a64108074098ba333cc0c70eef18a", "Technovision", "", "Nuts (Technovision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "38", "194", "", "", "" }, + { "de7a64108074098ba333cc0c70eef18a", "Technovision", "", "Nuts (Technovision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "194", "", "", "" }, { "deb39482e77f984d4ce73be9fd8adabd", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "192", "", "", "" }, - { "df2745d585238780101df812d00b49f4", "Cooper Black", "", "Space Tunnel (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "233", "", "", "" }, + { "df2745d585238780101df812d00b49f4", "Cooper Black", "", "Space Tunnel (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "233", "", "", "" }, { "df4aea767cdf6a3f138255092e84d713", "", "", "Image - Samantha Fox (Colour) (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df6a28a89600affe36d94394ef597214", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "183", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dfad86dd85a11c80259f3ddb6151f48f", "", "", "My Golf (1990)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "", "" }, + { "dfad86dd85a11c80259f3ddb6151f48f", "", "", "My Golf (1990)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, { "dfe034297200dff672df9533ed1449a9", "", "", "Sprite Movement Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e020f612255e266a8a6a9795a4df0c0f", "", "", "Universal Chaos (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "", "", "", "" }, - { "e03b0b091bea5bc9d3f14ee0221e714d", "CBS Electronics", "4L-2487", "Solar Fox (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, - { "e0b24c3f40a46cda52e29835ab7ad660", "Starsoft", "", "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "35", "227", "", "", "" }, + { "e020f612255e266a8a6a9795a4df0c0f", "", "", "Universal Chaos (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "", "", "", "" }, + { "e03b0b091bea5bc9d3f14ee0221e714d", "CBS Electronics", "4L-2487", "Solar Fox (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "e0b24c3f40a46cda52e29835ab7ad660", "Starsoft", "", "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "227", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e10bf1af6bf3b4a253c5bef6577fe923", "Rob Kudla", "", "Space Invaders (1978) (Atari) [h1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "e13818a5c0cb2f84dd84368070e9f099", "CCE", "C-839", "Misterious Thief, A (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "214", "Yes", "", "" }, - { "e150f0d14f013a104b032305c0ce23ef", "", "", "China Syndrome (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "217", "Yes", "", "" }, - { "e17699a54c90f3a56ae4820f779f72c4", "Starsoft", "SS-020", "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "41", "195", "", "", "" }, + { "e150f0d14f013a104b032305c0ce23ef", "", "", "China Syndrome (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "217", "Yes", "", "" }, + { "e17699a54c90f3a56ae4820f779f72c4", "Starsoft", "SS-020", "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, { "e1d5c8213e82820128fa9c4775f1e166", "", "", "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "", "" }, - { "e24d7d879281ffec0641e9c3f52e505a", "Parker Bros", "PB5590", "Lord of The Rings (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "30", "", "", "", "" }, + { "e24d7d879281ffec0641e9c3f52e505a", "Parker Bros", "PB5590", "Lord of The Rings (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "", "", "", "" }, { "e28113d10c0c14cc3b5f430b0d142fcb", "CCE", "", "Keystone Kapers (CCE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "190", "", "", "" }, - { "e2c89f270f72cd256ed667507fa038a2", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "204", "", "", "" }, + { "e2c89f270f72cd256ed667507fa038a2", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "204", "", "", "" }, { "e314b42761cd13c03def744b4afc7b1b", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "187", "", "", "" }, { "e377c3af4f54a51b85efe37d4b7029e6", "", "", "Save the Whales (2002) (20th Century Fox) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e3c0451d29dad724231bc5818ec4bae0", "", "", "Single-Scanline Positioning Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e3ed4ba3361756970f076e46e9cad1d2", "Activision", "", "Tennis (1981) (Activision) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "e3ed4ba3361756970f076e46e9cad1d2", "Activision", "", "Tennis (1981) (Activision) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "e42b937c30c617241ca9e01e4510c3f6", "", "", "Pitfall! (No Walls Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, { "e4a0b28befaaa2915df1fa01238b1e29", "", "", "Gunfight 2600 - Red River (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "e4bff1d5df70163c0428a1ead309c22d", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, + { "e4bff1d5df70163c0428a1ead309c22d", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "e4c2077a18e3c27f4819aa7757903aa0", "", "", "Many Blue Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, - { "e505bd8e59e31aaed20718d47b15c61b", "High-Score Games", "", "Condor Attack (High-Score Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "", "" }, + { "e505bd8e59e31aaed20718d47b15c61b", "High-Score Games", "", "Condor Attack (High-Score Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, { "e549f1178e038fa88dc6d657dc441146", "Atari", "CX2625 / 6699827 / 4975114", "Football (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, { "e558be88eef569f33716e8e330d2f5bc", "", "", "Keystone Kapers (Shock Vision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "200", "", "", "" }, - { "e5d5085123a98c1e61818caa2971e999", "", "", "Euchre (PAL) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "e5d5085123a98c1e61818caa2971e999", "", "", "Euchre (PAL) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e5ecd78edd24326a968809decbc7b916", "", "", "Cheese 98 (Dragonfire Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e600f5e98a20fafa47676198efe6834d", "", "", "Gyruss (1984) (Parker Bros) (PAL) [!]", "", "", "", "E0", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "YES", "", "" }, + { "e600f5e98a20fafa47676198efe6834d", "", "", "Gyruss (1984) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "YES", "", "" }, { "e63a87c231ee9a506f9599aa4ef7dfb9", "Tigervision", "7-003", "Threshold (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "e64a8008812327853877a37befeb6465", "", "ASC1002", "Gauntlet (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "201", "", "", "" }, - { "e6de4ef9ab62e2196962aa6b0dedac59", "Imagic", "O3206", "Solar Storm (1983) (Imagic) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "e6de4ef9ab62e2196962aa6b0dedac59", "Imagic", "O3206", "Solar Storm (1983) (Imagic) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "64", "194", "", "", "" }, { "e72eb8d4410152bdcb69e7fba327b420", "Atari", "CX26136", "Solaris (1986) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "196", "", "", "" }, { "e74022cfe31ec8908844718dfbdedf7a", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e79c4432c518ca3e497f673a167ee526", "", "", "Ocean City (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e7f005ddb6902c648de098511f6ae2e5", "Spectravideo & Universum", "", "CompuMate (Spectravideo & Universum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "Yes", "", "" }, + { "e7f005ddb6902c648de098511f6ae2e5", "Spectravideo & Universum", "", "CompuMate (Spectravideo & Universum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, { "e80a4026d29777c3c7993fbfaee8920f", "R.J.P.G.", "", "Brick Kick (RJPG)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e879b7093ac4cfad74c88d636ca97d00", "", "", "Poker Squares (V0.0f) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e8aa36e3d49e9bfa654c25dcc19c74e6", "Atari", "CX2601", "Combat (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "", "" }, + { "e8aa36e3d49e9bfa654c25dcc19c74e6", "Atari", "CX2601", "Combat (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "e908611d99890733be31733a979c62d8", "", "CX2697", "Mario Bros (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "e932f44fad2a66b6d5faec9addec208e", "", "", "Atari Logo Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "218", "", "", "" }, @@ -1961,23 +1961,23 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eb4252faff7a4f2ba5284a98b8f78d1a", "", "", "John K Harvey's Equalizer (NTSC) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "eb634650c3912132092b7aee540bbce3", "Atari", "CX2640", "RealSports Baseball (1982) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "197", "Yes", "", "" }, - { "eb9712e423b57f0b07ccd315bb9abf61", "Retroactive", "", "Qb (V2.04) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "eb9712e423b57f0b07ccd315bb9abf61", "Retroactive", "", "Qb (V2.04) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "ec26fdc87b1d35f1d60ea89cda4f4dd4", "", "", "Star Fire - Crash Scene (04-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ec5d04b7e6cc6641d74d3ba7bb41ebc9", "Absolute-Activision", "", "Pro Wrestling (Absolute-Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "184", "", "", "" }, + { "ec5d04b7e6cc6641d74d3ba7bb41ebc9", "Absolute-Activision", "", "Pro Wrestling (Absolute-Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "184", "", "", "" }, { "ed014beeeb77dbb2bbcf9b5f6850b2f4", "", "", "Green Bar Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, { "ed1492d4cafd7ebf064f0c933249f5b0", "CCE", "", "Video Cube (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ed5ccfc93ad4561075436ee42a15438a", "Atari", "CX2626", "Miniature Golf (1979) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "", "" }, + { "ed5ccfc93ad4561075436ee42a15438a", "Atari", "CX2626", "Miniature Golf (1979) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "45", "256", "", "", "" }, { "edf69b123e06eaf8663cc78d8aeba06e", "SpkSoft 98", "", "River Raid (SpkSoft 98) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "", "" }, - { "ee4c186123d31a279ed7a84d3578df23", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "136", "35", "234", "", "", "" }, + { "ee4c186123d31a279ed7a84d3578df23", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "35", "234", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee67dc0b01746372d2b983d88f48e24f", "", "", "Scroller Demo (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee8e2aa00e3a9cf1238157cbcff7de74", "Tigervision", "7-007", "Polaris (1983) (Tigervision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "", "", "", "" }, - { "eed9eaf1a0b6a2b9bc4c8032cb43e3fb", "Atari", "CX26192", "Klax (1990) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "eed9eaf1a0b6a2b9bc4c8032cb43e3fb", "Atari", "CX26192", "Klax (1990) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef5c02c95a1e7ed24f24193935755cd3", "Thomas Jentzsch", "", "Jammed Demo (1999) (Hozer Video Games)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "29", "203", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ef76ea05655a0b62cb1018c92b9b4b7d", "Gakken", "", "Strategy X (1982) (Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "efd387430a35a659ff569a9a0ec22209", "Atari", "", "Milpede (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "ef76ea05655a0b62cb1018c92b9b4b7d", "Gakken", "", "Strategy X (1982) (Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efd387430a35a659ff569a9a0ec22209", "Atari", "", "Milpede (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "f032b2f2d8323404a6b4541f92dd1825", "", "", "Many Blue Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, { "f060826626aac9e0d8cda0282f4b7fc3", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0a6e99f5875891246c3dbecbf2d2cea", "Atari", "CX2654 / 4975141", "Haunted House (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "", "" }, @@ -1986,40 +1986,40 @@ static const char* DefProps[][23] = { { "f137211537438b1fce3d811baef25457", "", "", "Incoming (02-10-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f1554569321dc933c87981cf5c239c43", "Atari", "CX26129", "Midnight Magic (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "200", "Yes", "", "" }, { "f1929bb9b5db22d98dd992aa3fe72920", "", "", "Cube Conquest (Improved Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f1b7edff81ceef5af7ae1fa76c8590fc", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "230", "", "", "" }, + { "f1b7edff81ceef5af7ae1fa76c8590fc", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "47", "230", "", "", "" }, { "f1e375d921858467166e53bcec05803f", "Jeffry Johnston", "", "Radial Pong - Version 3 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f21813aa050437f0dbc8479864acec6d", "", "", "Sneek 'n Peek (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "51", "229", "", "", "" }, - { "f283cc294ece520c2badf9da20cfc025", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "PAL", "", "", "47", "225", "", "", "" }, + { "f21813aa050437f0dbc8479864acec6d", "", "", "Sneek 'n Peek (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "51", "229", "", "", "" }, + { "f283cc294ece520c2badf9da20cfc025", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "47", "225", "", "", "" }, { "f2e4fb2d3600c0f76d05864e658cc57b", "", "", "Marble Craze (Kernel) (17-02-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f344ac1279152157d63e64aa39479599", "", "", "Espial (1983) (Tigervision) [b2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f367e58667a30e7482175809e3cec4d4", "Zimag", "GN-040 / 708-111", "Cosmic Corridor (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "212", "", "", "" }, - { "f3c431930e035a457fe370ed4d230659", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "f3c431930e035a457fe370ed4d230659", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "f3f92aad3a335f0a1ead24a0214ff446", "", "", "Spectrum Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f45644ff82b533a781a1ee50f2e95f3c", "", "", "Overhead Adventure Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f48022230bb774a7f22184b48a3385af", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari) [o1]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "200", "Yes", "", "" }, - { "f49a34f1fdd7dc147cbf96ce2ce71b76", "", "", "Qb (Special Edition) (PAL) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "f49a34f1fdd7dc147cbf96ce2ce71b76", "", "", "Qb (Special Edition) (PAL) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "f526d0c519f5001adb1fc7948bfbb3ce", "Mythicon", "MA-1003", "Star Fox (1982) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "191", "", "", "" }, - { "f5445b52999e229e3789c39e7ee99947", "Atari", "", "Flag Capture (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "f5445b52999e229e3789c39e7ee99947", "Atari", "", "Flag Capture (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "f5d103a9ae36d1d4ee7eef657b75d2b3", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, - { "f69bb58b815a6bdca548fa4d5e0d5a75", "Atari", "", "Bowling (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "218", "", "", "" }, + { "f69bb58b815a6bdca548fa4d5e0d5a75", "Atari", "", "Bowling (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "63", "218", "", "", "" }, { "f6a282374441012b01714e19699fc62a", "Zimag", "GN-010 / 710-111", "I Want My Mommy (AKA Ursinho Esperto) (Zimag) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "f6c13e816e58c8c62f82b2c8b91a2d67", "", "", "Scrolling Playfield 2 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f6f1b27efc247a0e8d473ddb4269ff9e", "Starsoft", "", "Schnapp die Apfeldiebe (AKA Catch Time) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, - { "f736864442164b29235e8872013180cd", "Telegames", "", "Quest for Quintana Roo (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "195", "", "", "" }, - { "f74ad642552385c3daa203a2a6fc2291", "Eckhard Stolberg", "", "Cubis (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "f736864442164b29235e8872013180cd", "Telegames", "", "Quest for Quintana Roo (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "195", "", "", "" }, + { "f74ad642552385c3daa203a2a6fc2291", "Eckhard Stolberg", "", "Cubis (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f7856e324bc56f45b9c8e6ff062ec033", "", "", "RealSports Soccer (1983) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f7d6592dcb773c81c278140ed4d01669", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "197", "", "", "" }, + { "f7d6592dcb773c81c278140ed4d01669", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "197", "", "", "" }, { "f80cf77164079d774b9b0fae33dffca9", "", "", "Fu Kung! (V0.15) (Negative Version) (05-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f825c538481f9a7a46d1e9bc06200aaf", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "52", "175", "", "", "" }, { "f8648d0c6ad1266434f6c485ff69ec40", "CCE", "", "Oink! (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "", "" }, - { "f8c1c4a41303bd40b0d6c81bfaf8573b", "", "", "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "240", "", "", "" }, + { "f8c1c4a41303bd40b0d6c81bfaf8573b", "", "", "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "240", "", "", "" }, { "f91fb8da3223b79f1c9a07b77ebfa0b2", "", "CX2615 / 4975140", "Demons to Diamonds (1982)", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "35", "195", "", "", "" }, - { "f9655ed51462ecfc690c7b97cec649f9", "Andrew Wallace", "", "Laseresal 2002 (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "218", "", "", "" }, - { "f9677b2ec8728a703eb710274474613d", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "202", "", "", "" }, + { "f9655ed51462ecfc690c7b97cec649f9", "Andrew Wallace", "", "Laseresal 2002 (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "47", "218", "", "", "" }, + { "f9677b2ec8728a703eb710274474613d", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "60", "202", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f98d869f287d2ce4f8fb36e0686929d9", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f9da42f91a1c5cfa344d2ff440c6f8d4", "ZUT", "", "Pac Invaders (ZUT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f9e99596345a84358bc5d1fbe877134b", "Activision", "AG-010", "Kaboom! (1981) (Activision) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "PAL", "8", "144", "64", "200", "", "", "" }, + { "f9e99596345a84358bc5d1fbe877134b", "Activision", "AG-010", "Kaboom! (1981) (Activision) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "64", "200", "", "", "" }, { "fa1b060fd8e0bca0c2a097dcffce93d3", "", "CX26101", "Oscar's Trash Race (1983) (Atari) (Prototype) (PAL)", "Uses Kids/Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "38", "190", "", "", "" }, { "fa4404fabc094e3a31fcd7b559cdd029", "Atari", "", "Bugs Bunny (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "205", "", "", "" }, { "fa7e11a3dbea4365975cd2f094e61d25", "Tim Snider", "", "Mystery Science Theater 2600 by Tim Snider (Megamania Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, @@ -2041,18 +2041,18 @@ static const char* DefProps[][23] = { { "fc668a2251dd79cbd903d4fa0e558f96", "", "", "Thrust (V1.1) (2000) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, { "fc9c1652fe3a2cade6188f4d3692481f", "", "", "Andrew Davies early notBoulderDash demo (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "fcea12625c071ddc49f4e409f4038c60", "", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fd0e5148162e8ec6719445d559f018a9", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "fd0e5148162e8ec6719445d559f018a9", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "fd4f5536fd80f35c64d365df85873418", "Atari", "CX26140", "Desert Falcon (1987) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "17", "", "", "", "" }, - { "fd7464edaa8cc264b97ba0d13e7f0678", "HES", "", "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "236", "", "", "" }, + { "fd7464edaa8cc264b97ba0d13e7f0678", "HES", "", "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, { "fd9b321cee5fbb32c39ba3ca5d9ec7cf", "Jeffry Johnston", "", "Radial Pong - Version 5 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fdf0de38517e0cf7f0885f98ccc95836", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe0bc4bb92c1c4de7d5706aaa8d8c10d", "", "", "Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe870018332a0221eb59fb18b0c6bccc", "", "", "Incoming (08-11-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "63", "192", "", "", "" }, + { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "63", "192", "", "", "" }, { "fece458a8023a809a5006867feca40e8", "", "", "SCSIcide (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "feedcc20bc3ca34851cd5d9e38aa2ca6", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "47", "195", "", "", "" }, - { "ff7627207e8aa03730c35c735a82c26c", "Atari", "", "Blackjack (32-in-1) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "ff7627207e8aa03730c35c735a82c26c", "Atari", "", "Blackjack (32-in-1) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "64", "", "", "", "" }, { "ffb1cd548563158ce33f9d10268187e7", "Erik Eid", "", "Euchre (Beta) (NTSC) (12-09-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ffe51989ba6da2c6ae5a12d277862e16", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2062,23 +2062,23 @@ static const char* DefProps[][23] = { { "00ce0bdd43aed84a983bef38fe7f5ee3", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "44", "178", "", "", "" }, { "00dc28b881989c39a6cf87a892bd3c6b", "CCE", "", "Krull (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "00eaee22034aff602f899b684c107d77", "", "", "Time Race (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "222", "", "", "" }, + { "00eaee22034aff602f899b684c107d77", "", "", "Time Race (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "222", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0173675d40a8d975763ee493377ca87d", "CBS Electronics", "2667", "Roc n' Rope (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "250", "", "", "" }, + { "0173675d40a8d975763ee493377ca87d", "CBS Electronics", "2667", "Roc n' Rope (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "56", "250", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "01cb3e8dfab7203a9c62ba3b94b4e59f", "Atari", "CX26127", "Gremlins (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "", "" }, - { "01e60a109a6a67c70d3c0528381d0187", "ITT Family Games", "554-33383", "Fire Birds (AKA Scorpion) (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "67", "", "", "", "" }, + { "01e60a109a6a67c70d3c0528381d0187", "ITT Family Games", "554-33383", "Fire Birds (AKA Scorpion) (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "67", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "027a59a575b78860aed780b2ae7d001d", "CCE", "", "Pressure Cooker (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02ab2c47bc21e7feafa015f90d7df776", "", "", "Diagnostic Cartridge (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "02dcba28c614fec7ca25955327128abb", "Andrew Wallace", "", "Laseresal 2002 (PAL-49) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "241", "", "", "" }, + { "02dcba28c614fec7ca25955327128abb", "Andrew Wallace", "", "Laseresal 2002 (PAL-49) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "47", "241", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2088,7 +2088,7 @@ static const char* DefProps[][23] = { { "041b5e56bbc650db574bd8db3fae2696", "", "", "Thrust (V1.0) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "045035f995272eb2deb8820111745a07", "Starpath", "AR-4401", "Survival Island (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "No" }, - { "04856e3006a4f5f7b4638da71dad3d88", "Atari", "CX26176", "Radar Lock (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "211", "", "", "" }, + { "04856e3006a4f5f7b4638da71dad3d88", "Atari", "CX26176", "Radar Lock (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "211", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2097,23 +2097,23 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05824fcbe615dbca836d061a140a50e0", "Jeffry Johnston", "", "Radial Pong - Version 9 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05aff8f626ef870432ae3b3d9d5aa301", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o2]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "191", "", "", "" }, - { "05c60458ec69e7fe8b1be973852d84f1", "", "", "Test (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "194", "", "", "" }, + { "05c60458ec69e7fe8b1be973852d84f1", "", "", "Test (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05f11fb2e45c4e47424d3cb25414d278", "", "", "Boring (NTSC) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06742cf522f23797157f215a1dc8a1a9", "", "", "Healthbars (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06953ed762220dba63d63930d4ad0cc3", "", "", "Star Fire - Eckhard WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "06b6c5031b8353f3a424a5b86b8fe409", "Activision", "AX-023", "Oink! (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "06b6c5031b8353f3a424a5b86b8fe409", "Activision", "AX-023", "Oink! (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "06e5dc181a8eda1c31cc7c581c68b6ef", "Sega", "", "Tac Scan (1982) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "06e5dc181a8eda1c31cc7c581c68b6ef", "Sega", "", "Tac Scan (1982) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0751f342ee4cf28f2c9a6e8467c901be", "", "", "Super Baseball (1988) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "220", "", "", "" }, - { "07973be3ecfd55235bf59aa56bdef28c", "Starsoft", "", "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "57", "", "Yes", "", "" }, + { "0751f342ee4cf28f2c9a6e8467c901be", "", "", "Super Baseball (1988) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "220", "", "", "" }, + { "07973be3ecfd55235bf59aa56bdef28c", "Starsoft", "", "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "57", "", "Yes", "", "" }, { "07a3af1e18b63765b6807876366f5e8a", "Joe Grand", "", "SCSIcide Pre-release 2 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2122,7 +2122,7 @@ static const char* DefProps[][23] = { { "08188785e2b8300983529946dbeff4d2", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [o1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "30", "205", "", "", "" }, { "082fdc8bd47fef01482ce5883c4ffdb8", "Charles Morgan", "", "Tanks DX by Charles Morgan (Tanks but no Tanks Hack)", "Hack of Tanks But No Tanks (Zimag)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "085322bae40d904f53bdcc56df0593fc", "Parker Bros", "PB5340", "Tutankham (1983) (Parker Bros)", "", "Uncommon", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "085322bae40d904f53bdcc56df0593fc", "Parker Bros", "PB5340", "Tutankham (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2130,14 +2130,14 @@ static const char* DefProps[][23] = { { "08d1b6d75206edb999252caf542a2c7f", "", "", "Super Home Run (2003) (Larry Petit) (Home Run Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "218", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "08f853e8e01e711919e734d85349220d", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video", "VC 1012", "M.A.D. (1982) (Carrere Video) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "193", "", "", "" }, + { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video", "VC 1012", "M.A.D. (1982) (Carrere Video) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "57", "193", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "097936b07e0e0117b9026ae6835eb168", "", "", "Trick Shot (1982) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "250", "Yes", "", "" }, + { "097936b07e0e0117b9026ae6835eb168", "", "", "Trick Shot (1982) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2158,8 +2158,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0c35806ff0019a270a7acae68de89d28", "Froggo", "FG 1003", "Task Force (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "", "", "", "" }, - { "0c54811cf3b1f1573c9164d5f19eca65", "Activision", "AG-001", "Dragster (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, - { "0c80751f6f7a3b370cc9e9f39ad533a7", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "37", "243", "", "", "" }, + { "0c54811cf3b1f1573c9164d5f19eca65", "Activision", "AG-001", "Dragster (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "0c80751f6f7a3b370cc9e9f39ad533a7", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "37", "243", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0cdd9cc692e8b04ba8eb31fc31d72e5e", "Imagic / Thomas Jentzsch", "", "Wing War (Imagic) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "31", "200", "", "", "" }, @@ -2167,10 +2167,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0d35618b6d76ddd46d2626e9e3e40db5", "", "", "X-Doom V.26 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "0d6b974fe58a1bdd453600401c407856", "", "", "128-in-1 Junior Console (Chip 3) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "50", "", "", "", "" }, + { "0d6b974fe58a1bdd453600401c407856", "", "", "128-in-1 Junior Console (Chip 3) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "", "", "", "" }, { "0d7e630a14856f4d52c9666040961d4d", "", "", "Wavy Line Test (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision", "7-001", "King Kong (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "211", "", "", "" }, + { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision", "7-001", "King Kong (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "53", "211", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2189,8 +2189,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0f8043715d66a4bbed394ef801d99862", "Starsoft", "", "Robin Hood (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "206", "", "", "" }, - { "0fbf618be43d4396856d4244126fe7dc", "Starsoft", "", "Labyrinth (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "180", "", "", "" }, + { "0f8043715d66a4bbed394ef801d99862", "Starsoft", "", "Robin Hood (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "206", "", "", "" }, + { "0fbf618be43d4396856d4244126fe7dc", "Starsoft", "", "Labyrinth (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "", "" }, { "0fd518e9435f5ab0893d79ee0d63fc92", "", "", "Greeting Cart Jeri Ryan (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "103d4c890c2108cb536372c98d093e5f", "", "", "Star Fire - Star Background (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2199,7 +2199,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "42", "220", "", "", "" }, + { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "220", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "111029770226b319524134193886a10e", "Hozer Video Games", "", "Gunfight 2600 - One Limit Reached! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, { "113cd09c9771ac278544b7e90efe7df2", "", "CX2639 / 4975162", "Othello (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2208,12 +2208,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "12123b534bdee79ed7563b9ad74f1cbd", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "", "" }, - { "1266b3fd632c981f3ef9bdbf9f86ce9a", "Activision", "AG-034-04", "Private Eye (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "44", "233", "", "", "" }, + { "1266b3fd632c981f3ef9bdbf9f86ce9a", "Activision", "AG-034-04", "Private Eye (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "233", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx", "8056100250", "Summer Games (1987) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx", "8056100250", "Summer Games (1987) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "12d7e0d6b187889f8d150bf7034d1db2", "", "", "Poker Squares (V0.0e) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "32", "", "", "", "" }, + { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "193", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2223,7 +2223,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13aa1f9ac4249947e4af61319d9a08f2", "", "", "RealSports Tennis (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "13aa1f9ac4249947e4af61319d9a08f2", "", "", "RealSports Tennis (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13dfb095e519a555a5b60b7d9d7169f9", "", "", "Red Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "14163eb2a3ddd35576bd8527eae3b45e", "", "", "Multi-Color Demo 6 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2233,7 +2233,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "149b543c917c180a1b02d33c12415206", "CCE", "CX2631", "Superman (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "14b1e30982962c72f426e2e763eb4274", "Atari", "", "Polo (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, - { "14d365bbfaac3d20c6119591f57acca4", "", "", "Video Life (CommaVid) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "14d365bbfaac3d20c6119591f57acca4", "", "", "Video Life (CommaVid) [h1]", "", "", "", "CV", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2259,10 +2259,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17badbb3f54d1fc01ee68726882f26a6", "Mattel", "MT5659", "Space Attack (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "33", "201", "", "", "" }, - { "17d000a2882f9fdaa8b4a391ad367f00", "Atari", "CX2676", "Centipede (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "196", "", "", "" }, - { "17ee23e5da931be82f733917adcb6386", "Salu", "", "Acid Drop (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "255", "", "", "" }, + { "17d000a2882f9fdaa8b4a391ad367f00", "Atari", "CX2676", "Centipede (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "196", "", "", "" }, + { "17ee23e5da931be82f733917adcb6386", "Salu", "", "Acid Drop (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "52", "255", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "", "" }, + { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2270,7 +2270,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "19098c46da0640f2b5763167dea6c716", "Andrew Wallace", "", "Laseresal 2002 (NTSC) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "193f060553ba0a2a2676f91d9ec0c555", "Atari", "CX2636", "Video Checkers (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "243", "", "", "" }, + { "193f060553ba0a2a2676f91d9ec0c555", "Atari", "CX2636", "Video Checkers (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "243", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2286,10 +2286,10 @@ static const char* DefProps[][23] = { { "1a624e236526c4c8f31175e9c89b2a22", "", "", "Space Raid (Rainbow Vision) (PAL) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "193", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1b8d35d93697450ea26ebf7ff17bd4d1", "Starsoft", "", "Marineflieger (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "38", "235", "", "", "" }, - { "1bef389e3dd2d4ca4f2f60d42c932509", "HomeVision", "1", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "Yes", "", "" }, + { "1b8d35d93697450ea26ebf7ff17bd4d1", "Starsoft", "", "Marineflieger (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "235", "", "", "" }, + { "1bef389e3dd2d4ca4f2f60d42c932509", "HomeVision", "1", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "235", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1c5796d277d9e4df3f6648f7012884c4", "Starsoft", "", "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "200", "", "", "" }, + { "1c5796d277d9e4df3f6648f7012884c4", "Starsoft", "", "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "200", "", "", "" }, { "1c85c0fc480bbd69dc301591b6ecb422", "CCE", "", "Super Box (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "185", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2306,7 +2306,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1e85f8bccb4b866d4daa9fcf89306474", "Atari", "", "Sinistar (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1ec57bbd27bdbd08b60c391c4895c1cf", "", "CX26119", "Saboteur (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "", "" }, - { "1ede4f365ce1386d58f121b15a775e24", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "", "" }, + { "1ede4f365ce1386d58f121b15a775e24", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "53", "205", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2321,8 +2321,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "203049f4d8290bb4521cc4402415e737", "Tigervision", "7-007", "Polaris (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "61", "250", "", "", "" }, - { "203b1efc6101d4b9d83bb6cc1c71f67f", "Starsoft", "", "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "224", "Yes", "", "" }, + { "203049f4d8290bb4521cc4402415e737", "Tigervision", "7-007", "Polaris (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "61", "250", "", "", "" }, + { "203b1efc6101d4b9d83bb6cc1c71f67f", "Starsoft", "", "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "224", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2345,7 +2345,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22abbdcb094d014388d529352abe9b4b", "Apollo", "", "Squoosh (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2319922df4d0c820b3e5f15faa870cc3", "", "", "Battlezone (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "2319922df4d0c820b3e5f15faa870cc3", "", "", "Battlezone (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "235436ab0832370e73677c9c6f0c8b06", "Jeff 'Yak' Minter", "", "Beast Invaders (double shot Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2355,18 +2355,18 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2450dfa1df70d12b60683185775efed8", "Jeffry Johnston", "", "Radial Pong - Version 7 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "247fa1a29ad90e64069ee13d96fea6d6", "CCE", "", "Radar (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "", "", "", "", "" }, - { "24aff972d58990f9b88a6d787c796f1e", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "205", "", "", "" }, + { "247fa1a29ad90e64069ee13d96fea6d6", "CCE", "", "Radar (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "24aff972d58990f9b88a6d787c796f1e", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "60", "205", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24d018c4a6de7e5bd19a36f2b879b335", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "24df052902aa9de21c2b2525eb84a255", "Imagic", "IA3000", "Trick Shot (1982) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "179", "Yes", "", "" }, - { "2516f4f4b811ede4ecf6fbeb5d54a299", "Starsoft", "", "Schiessbude (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "48", "215", "", "", "" }, + { "2516f4f4b811ede4ecf6fbeb5d54a299", "Starsoft", "", "Schiessbude (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "215", "", "", "" }, { "25265d0e7f88b3026003809f25ee025e", "", "", "Jr. Pac-Man (1986) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "25b52bf8dd215bcbd59c9abdb55c44f8", "", "", "Pole Position (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "190", "", "", "" }, - { "25bb080457351be724aac8a02021aa92", "CBS Electronics", "", "Zaxxon (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "57", "220", "", "", "" }, + { "25b52bf8dd215bcbd59c9abdb55c44f8", "", "", "Pole Position (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "43", "190", "", "", "" }, + { "25bb080457351be724aac8a02021aa92", "CBS Electronics", "", "Zaxxon (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "220", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2377,7 +2377,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "56", "192", "", "", "" }, + { "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "56", "192", "", "", "" }, { "273ce50db5a0d6da7ea827a54f44dee9", "", "", "Island Flyer Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2385,12 +2385,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "278f14887d601b5e5b620f1870bc09f6", "", "", "Swoops! (v0.96) (Thomas Jentzsch)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "28", "", "", "", "" }, - { "27c6a2ca16ad7d814626ceea62fa8fb4", "Parker Bros", "PB5590", "Frogger II - Threedeep! (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "40", "194", "Yes", "", "" }, + { "27c6a2ca16ad7d814626ceea62fa8fb4", "Parker Bros", "PB5590", "Frogger II - Threedeep! (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "40", "194", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2825f4d068feba6973e61c84649489fe", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "220", "", "", "" }, + { "2825f4d068feba6973e61c84649489fe", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "28a4cd87fb9de4ee91693a38611cb53c", "", "", "Skeleton (V1.1) (NTSC) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2409,10 +2409,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a156728c0123034bd73e25bf8c70a88", "Tigervision", "7-005", "Marauder (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2a360bc85bf22de438651cf92ffda1de", "", "", "Spy vs. Spy (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "193", "", "", "" }, + { "2a360bc85bf22de438651cf92ffda1de", "", "", "Spy vs. Spy (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "193", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2ac3a08cfbf1942ba169c3e9e6c47e09", "Absolute", "AK-046", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "57", "195", "", "", "" }, - { "2b27eb194e13f3b38d23c879cc1e3abf", "Starsoft", "SS-011", "Super Ferrari (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "", "", "", "" }, + { "2ac3a08cfbf1942ba169c3e9e6c47e09", "Absolute", "AK-046", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "57", "195", "", "", "" }, + { "2b27eb194e13f3b38d23c879cc1e3abf", "Starsoft", "SS-011", "Super Ferrari (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2bb9f4686f7e08c5fcc69ec1a1c66fe7", "", "CX2688", "Jungle Hunt (1982) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "", "" }, { "2bc6c53b19e0097a242f22375a6a60ff", "", "", "Droid Demo 2 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, @@ -2423,15 +2423,15 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2c45c3eb819a797237820a1816c532eb", "Atari", "", "Boxing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "60", "208", "", "", "" }, - { "2c8c11295d8613f875b7bcf5253ab9bb", "", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "199", "", "", "" }, - { "2cb42cf62b2f25f59f909b5447821b14", "", "", "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "227", "", "", "" }, + { "2c45c3eb819a797237820a1816c532eb", "Atari", "", "Boxing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "60", "208", "", "", "" }, + { "2c8c11295d8613f875b7bcf5253ab9bb", "", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "199", "", "", "" }, + { "2cb42cf62b2f25f59f909b5447821b14", "", "", "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "227", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2d2c5f0761e609e3c5228766f446f7f8", "Atari", "CX26170", "Secret Quest (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "136", "42", "194", "", "", "" }, + { "2d2c5f0761e609e3c5228766f446f7f8", "Atari", "CX26170", "Secret Quest (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "136", "42", "194", "", "", "" }, { "2d6da0eb85eabc93270e5bb8a466ca51", "", "", "Sprite Demo 7 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2d9e5d8d083b6367eda880e80dfdfaeb", "Selchow", "87", "Glib (1983) (Selchow & Righter)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "2dbc92688f9ba92a7e086d62be9df79d", "", "", "How to Draw a Playfield (1997) (Jim Crawford) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2514,7 +2514,7 @@ static const char* DefProps[][23] = { { "36a701c60a9f9768d057bc2a83526a80", "", "", "Cube Conquest (Interlaced) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "36c31bb5daeb103f488c66de67ac5075", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "192", "", "", "" }, - { "36edef446ab4c2395666efc672b92ed0", "Atari", "", "Off the Wall (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "207", "", "", "" }, + { "36edef446ab4c2395666efc672b92ed0", "Atari", "", "Off the Wall (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "207", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2527,7 +2527,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3882224adbd0ca7c748b2a1c9b87263e", "", "", "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "3882224adbd0ca7c748b2a1c9b87263e", "", "", "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "38bd172da8b2a3a176e517c213fcd5a6", "Atari", "MAO17600", "Test Tape - Standalone (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38cf93eacfb2fa9a2c5e39059ff35a74", "", "", "WacMan (2003) (Greg Zumwalt) (Ms. Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2560,7 +2560,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c7a96978f52b2b15426cdd50f2c4048", "", "", "Overhead Adventure Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c853d864a1d5534ed0d4b325347f131", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3caa902ac0ce4509308990645876426a", "Atari", "CX2669", "Vanguard (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "3caa902ac0ce4509308990645876426a", "Atari", "CX2669", "Vanguard (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "3cdd91e1c28d28e856c0063d602da166", "", "", "Stell-A-Sketch (03-11-1997) (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2571,7 +2571,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d9c2fccf8b11630762ff00811c19277", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "63", "195", "", "", "" }, + { "3d9c2fccf8b11630762ff00811c19277", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "63", "195", "", "", "" }, { "3dfb7c1803f937fadc652a3e95ff7dc6", "Dimax", "SM8001", "Space Robot (AKA Robot Fight) (Dimax)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "3e1682ddaec486d8b6b90b527aaa0fc4", "Thomas Jentzsch", "", "Robot City (V0.12) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2591,7 +2591,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3fd1f9d66a418c9f787fc5799174ddb7", "Aaron Curtis", "", "AStar (PAL)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "3fd1f9d66a418c9f787fc5799174ddb7", "Aaron Curtis", "", "AStar (PAL)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2622,7 +2622,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "43e6c5159c3a093fca88656628c6ef34", "", "", "Star Fire (17-02-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "43f8459d39fb4eddf9186d62722ff795", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "", "", "" }, + { "43f8459d39fb4eddf9186d62722ff795", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "442b7863683e5f084716fda050474feb", "Eckhard Stolberg", "", "Frame Timed Sound Effects-EM (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2634,7 +2634,7 @@ static const char* DefProps[][23] = { { "4565c1a7abce773e53c75b35414adefd", "Starpath", "", "SuperCharger Loader (1982) (Starpath) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "45cb0f41774b78def53331e4c3bf3362", "US Games", "VC 1007", "Name This Game (AKA Octopus) (1982) (US Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "250", "", "", "" }, + { "45cb0f41774b78def53331e4c3bf3362", "US Games", "VC 1007", "Name This Game (AKA Octopus) (1982) (US Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "250", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2662,11 +2662,11 @@ static const char* DefProps[][23] = { { "48bcf2c5a8c80f18b24c55db96845472", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, { "48eb1fcde4caf6a2dce059c98bd2e375", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4904a2550759b9b4570e886374f9d092", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "220", "", "", "" }, + { "4904a2550759b9b4570e886374f9d092", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "220", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "493de059b32f84ab29cde6213964aeee", "Atari", "CX26120", "Stargate (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "195", "", "", "" }, + { "493de059b32f84ab29cde6213964aeee", "Atari", "CX26120", "Stargate (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "195", "", "", "" }, { "4947c9de2e28b2f5f3b0c40ce7e56d93", "", "", "3-D Corridor Demo 2 (29-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "497f3d2970c43e5224be99f75e97cbbb", "CommaVid", "", "Video Life (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "497f3d2970c43e5224be99f75e97cbbb", "CommaVid", "", "Video Life (CommaVid)", "", "Extremely Rare", "", "CV", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2679,15 +2679,15 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4b27f5397c442d25f0c418ccdacf1926", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "None", "", "PAL", "", "", "60", "194", "", "", "" }, + { "4b27f5397c442d25f0c418ccdacf1926", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "60", "194", "", "", "" }, { "4b8e76a294a04036168f5b13c64911d2", "", "", "Moon Patrol (1982) (Shock Vision-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4baada22435320d185c95b7dd2bcdb24", "Atari", "CX2682", "Krull (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, - { "4c030667d07d1438f0e5c458a90978d8", "Retroactive", "", "Qb (V2.03) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "4c030667d07d1438f0e5c458a90978d8", "Retroactive", "", "Qb (V2.03) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4c606235f4ec5d2a4b89139093a69437", "", "", "notBoulderDashPAL.bin", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "YES", "", "" }, + { "4c606235f4ec5d2a4b89139093a69437", "", "", "notBoulderDashPAL.bin", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2695,25 +2695,25 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4cabc895ea546022c2ecaa5129036634", "Zellers", "", "Ocean City Defender (Zellers)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d0a28443f7df5f883cf669894164cfa", "", "", "Beast Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "", "" }, - { "4d520fcc619612969344d1dbeca5231e", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "PAL", "", "", "", "", "", "", "" }, + { "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "", "", "", "" }, + { "4d520fcc619612969344d1dbeca5231e", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "", "", "" }, { "4d7517ae69f95cfbc053be01312b7dba", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d8396deeabb40b5e8578276eb5a8b6d", "Starsoft", "", "Volleyball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "4d8396deeabb40b5e8578276eb5a8b6d", "Starsoft", "", "Volleyball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4df6124093ccb4f0b6c26a719f4b7706", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [t1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "4e02880beeb8dbd4da724a3f33f0971f", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "200", "", "", "" }, + { "4e02880beeb8dbd4da724a3f33f0971f", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "52", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4e37992a37ea36489283f7eb90913bbc", "", "", "Hangman Ghost Halloween (Kris) (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4f0071946e80ca68edfdccbac86dcce0", "", "", "Virtual Pet Demo 1 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "196", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4f634893d54e9cabe106e0ec0b7bdcdf", "Retroactive", "", "Qb (2.14) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "4f6702c3ba6e0ee2e2868d054b00c064", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "4f82d8d78099dd71e8e169646e799d05", "Atari", "", "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "256", "", "", "" }, + { "4f634893d54e9cabe106e0ec0b7bdcdf", "Retroactive", "", "Qb (2.14) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "4f6702c3ba6e0ee2e2868d054b00c064", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f82d8d78099dd71e8e169646e799d05", "Atari", "", "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "256", "", "", "" }, { "4fae08027365d31c558e400b687adf21", "", "", "Qb (V2.17) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2724,16 +2724,16 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "515046e3061b7b18aa3a551c3ae12673", "Atari", "CX2692", "Moon Patrol (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "47", "175", "", "", "" }, - { "517592e6e0c71731019c0cebc2ce044f", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros) [a1]", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "32", "", "", "", "" }, - { "51e390424f20e468d2b480030ce95d7b", "Video Game Program", "", "Fire Bird (Video Game Program) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "", "", "", "" }, - { "522c9cf684ecd72db2f85053e6f6f720", "Rainbow Vision", "", "Year 1999, The (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "219", "", "", "" }, + { "517592e6e0c71731019c0cebc2ce044f", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "32", "", "", "", "" }, + { "51e390424f20e468d2b480030ce95d7b", "Video Game Program", "", "Fire Bird (Video Game Program) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "62", "", "", "", "" }, + { "522c9cf684ecd72db2f85053e6f6f720", "Rainbow Vision", "", "Year 1999, The (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "219", "", "", "" }, { "524693b337f7ecc9e8b9126e04a232af", "", "", "Euchre (19-08-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "528400fad9a77fd5ad7fc5fdc2b7d69d", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "35", "200", "", "", "" }, - { "52b448757081fd9fabf859f4e2f91f6b", "20th Century Fox", "", "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "52b448757081fd9fabf859f4e2f91f6b", "20th Century Fox", "", "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5336f86f6b982cc925532f2e80aa1e17", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "35", "200", "Yes", "", "" }, + { "5336f86f6b982cc925532f2e80aa1e17", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "35", "200", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2755,7 +2755,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "562bf02f5031d51c6b53b03972a56b22", "", "", "Star Fire - Framework Done (30-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5635cd67fb680424254ec156c42deee0", "Starsoft", "", "Motocross (Starsoft) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "", "" }, + { "5635cd67fb680424254ec156c42deee0", "Starsoft", "", "Motocross (Starsoft) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "45", "249", "", "", "" }, { "56606b4d9109e2db36dea47cf7c8cca6", "Atari", "CX2694", "Pole Position (1983) (Atari) [b1]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, { "568371fbae6f5e5b936af80031cd8888", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2781,7 +2781,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5a9d188245aff829efde816fcade0b16", "CCE", "", "Phantom Tank (CCE)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "", "" }, + { "5a9d188245aff829efde816fcade0b16", "CCE", "", "Phantom Tank (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2791,10 +2791,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5b92a93b23523ff16e2789b820e2a4c5", "Activision", "AX-039", "Kung Fu Master (1984) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "", "" }, - { "5b9c2e0012fbfd29efd3306359bbfc4a", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "222", "", "", "" }, + { "5b9c2e0012fbfd29efd3306359bbfc4a", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, { "5bbab3f3e4b47e3e23f9820765dbb45c", "", "", "Pitfall! (says 1985) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, { "5bcc83677d68f7ef74c1b4a0697ba2a8", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5be03a1fe7b2c114725150be04b38704", "Atari", "", "Hunt & Score (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "", "", "", "" }, + { "5be03a1fe7b2c114725150be04b38704", "Atari", "", "Hunt & Score (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2802,7 +2802,7 @@ static const char* DefProps[][23] = { { "5c73693a89b06e5a09f1721a13176f95", "", "", "Wavy Line Test 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "21", "211", "", "", "" }, { "5d1260152596d91adc8cf5741adb719a", "", "", "Death Derby (200204) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5d8f1ab95362acdf3426d572a6301bf2", "", "", "Swoops! (v0.96) (Thomas Jentzsch) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "PAL", "", "", "40", "240", "", "", "" }, + { "5d8f1ab95362acdf3426d572a6301bf2", "", "", "Swoops! (v0.96) (Thomas Jentzsch) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "40", "240", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2823,7 +2823,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f786b67e05fb9985b77d4beb35e06ee", "Atari", "", "Defender II (1984) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "5f786b67e05fb9985b77d4beb35e06ee", "Atari", "", "Defender II (1984) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "5faffe1c4c57430978dec5ced32b9f4a", "Dactar", "", "Volleyball (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "", "" }, { "600d48eef5c0ec27db554b7328b3251c", "", "", "Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60345ae60f7c7010346de7aff9bfe6ea", "Activision", "", "Atlantis (1982) (Activision) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, @@ -2841,16 +2841,16 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61426cee013306e7f7367534ab124747", "", "", "One Blue Bar Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, { "61621a556ad3228f0234f5feb3ab135c", "", "", "Fu Kung! (V0.05 Cuttle Card Compattle Revision) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "61719a8bdafbd8dab3ca9ce7b171b9e2", "Activision", "AX-026", "Enduro (1983) (Activision-Dactar) (PAL-M) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "12", "140", "64", "205", "", "", "" }, + { "61719a8bdafbd8dab3ca9ce7b171b9e2", "Activision", "AX-026", "Enduro (1983) (Activision-Dactar) (PAL-M) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "205", "", "", "" }, { "619de46281eb2e0adbb98255732483b4", "", "", "UFO Patrol (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "624e0a77f9ec67d628211aaf24d8aea6", "Panda", "108", "Sea Hawk (1987) (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, { "62921652f6634eb1a0940ed5489c7e18", "", "", "SCSIcide (V1.09) (2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "62f74a2736841191135514422b20382d", "TechnoVision", "", "Pharoah's Curse (TechnoVision) (PAL) [p2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "22", "225", "Yes", "", "" }, + { "62f74a2736841191135514422b20382d", "TechnoVision", "", "Pharoah's Curse (TechnoVision) (PAL) [p2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "225", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6339d28c9a7f92054e70029eb0375837", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "39", "187", "Yes", "", "" }, + { "6339d28c9a7f92054e70029eb0375837", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "187", "Yes", "", "" }, { "6354f9c7588a27109c66905b0405825b", "", "", "Amidar DS (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6362396c8344eec3e86731a700b13abf", "Panda", "109", "Exocet (AKA Space Eagle) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2858,7 +2858,7 @@ static const char* DefProps[][23] = { { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) [!]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63e783994df824caf289b69a084cbf3e", "David Marli", "", "Fat Albert by David Marli (Fast Food Hack)", "Hack of Fast Food (Telesys)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "640a08e9ca019172d612df22a9190afb", "Atari", "CX2691", "Joust (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, + { "640a08e9ca019172d612df22a9190afb", "Atari", "CX2691", "Joust (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2887,14 +2887,14 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "668dc528b7ea9345140f4fcfbecf7066", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "33", "256", "", "", "" }, + { "668dc528b7ea9345140f4fcfbecf7066", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "66c2380c71709efa7b166621e5bb4558", "Parker Bros", "", "Tutankham (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "66c2380c71709efa7b166621e5bb4558", "Parker Bros", "", "Tutankham (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "67684a1d18c85ffa5d82dab48fd1cb51", "Tigervision", "7-003", "Threshold (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "46", "215", "", "", "" }, + { "67684a1d18c85ffa5d82dab48fd1cb51", "Tigervision", "7-003", "Threshold (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "46", "215", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2919,7 +2919,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "69fac82cd2312dd9ce5d90e22e2f070a", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "", "" }, + { "69fac82cd2312dd9ce5d90e22e2f070a", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, { "6a091b8ffeacd0939850da2094b51564", "", "", "Vertically Scrolling Playfield (02-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a76d5f0ed721639474aa9bbde69ebf0", "", "", "Play Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2929,23 +2929,23 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6aa66e9c3eea76a0c40ef05513497c40", "", "", "Hangman Ghost Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ae4dc6d7351dacd1012749ca82f9a56", "Atari", "CX26125 (label says CX26127 on some)", "Track and Field (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, - { "6b1fc959e28bd71aed7b89014574bdc2", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "245", "", "", "" }, + { "6b1fc959e28bd71aed7b89014574bdc2", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, { "6b6ca32228ae352b4267e4bd2cddf10c", "", "", "Pac-Man 4 (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6b853585764b8cfdc73310e372c828d9", "", "", "Image - Baboon (Interlaced Demo 2) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6bb09bc915a7411fe160d0b2e4d66047", "Atari", "", "Space Jockey (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "227", "", "", "" }, - { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "", "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "240", "", "", "" }, + { "6bb09bc915a7411fe160d0b2e4d66047", "Atari", "", "Space Jockey (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "227", "", "", "" }, + { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "", "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "240", "", "", "" }, { "6c449db9bbbd90972ad1932d6af87330", "", "", "20 Sprites at Once Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "50", "235", "", "", "" }, + { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "50", "235", "", "", "" }, { "6c9a32ad83bcfde3774536e52be1cce7", "", "", "Space Treat (NTSC) (13-08-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ccd8ca17a0e4429b446cdcb66327bf1", "", "", "RPG Engine (12-05-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6cd506509e8fd5627f55603780e862a8", "Greg Troutman", "", "Dark Mage (SuperCharger) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "38", "", "Yes", "", "" }, - { "6cf054cd23a02e09298d2c6f787eb21d", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros) (PAL) [!]", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "PAL", "8", "144", "59", "202", "Yes", "", "" }, + { "6cf054cd23a02e09298d2c6f787eb21d", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "59", "202", "Yes", "", "" }, { "6d475019ea30d0b29f695e9dcfd8f730", "Eric Mooney", "", "Invaders by Erik Mooney (Alpha 2) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6d842c96d5a01967be9680080dd5be54", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b3]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "6d9afd70e9369c2a6bff96c4964413b7", "Funvision", "", "Time Race 2 (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "", "", "", "" }, + { "6d9afd70e9369c2a6bff96c4964413b7", "Funvision", "", "Time Race 2 (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2956,11 +2956,11 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6ed5012793f5ddf4353a48c11ea9b8d3", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "6f084daf265599f65422ef4173b69bc7", "", "", "Music Kit (V2.0) - Song Player (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6f084daf265599f65422ef4173b69bc7", "", "", "Music Kit (V2.0) - Song Player (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f6c7f37926c574c6b76e5a665fd26e7", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f75d72e4cf996100ccdd163d57bdac2", "", "", "Star Fire (200203) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fac680fc9a72e0e54255567c72afe34", "Atari", "", "Superman (1978) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "", "" }, + { "6fac680fc9a72e0e54255567c72afe34", "Atari", "", "Superman (1978) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6fd7c7057eeab273b29c7aafc7429a96", "Activision", "AX-018", "Pitfall! (1982) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "148", "40", "195", "", "", "" }, @@ -2970,43 +2970,43 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "705fe719179e65b0af328644f3a04900", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari) [h1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "", "" }, { "707ecd80030e85751ef311ced66220bc", "", "", "Double-Height 6-Digit Score Display (Background Color Change) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "709910c2e83361bc4bf8cd0c20c34fbf", "Starsoft", "", "Im Reich der Spinne (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "70ce036e59be92821c4c7fd735ec6f68", "", "AX-031", "Frostbite (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "50", "232", "", "", "" }, + { "709910c2e83361bc4bf8cd0c20c34fbf", "Starsoft", "", "Im Reich der Spinne (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "70ce036e59be92821c4c7fd735ec6f68", "", "AX-031", "Frostbite (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "232", "", "", "" }, { "712924a2c7b692f6e7b009285c2169a7", "Starpath", "AR-4102", "Suicide Mission (no title screen) (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "", "" }, { "71464c54da46adae9447926fdbfc1abe", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "194", "", "", "" }, - { "714e13c08508ee9a7785ceac908ae831", "HomeVision", "", "Parachute (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "220", "", "", "" }, + { "714e13c08508ee9a7785ceac908ae831", "HomeVision", "", "Parachute (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "220", "", "", "" }, { "7187118674ff3c0bb932e049d9dbb379", "Zirok", "", "Keystone Keypers (Zirok) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "196", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "71f8bacfbdca019113f3f0801849057e", "Atari", "", "Elevator Action (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "721a5567f76856f6b50a6707aa8f8316", "", "", "Ghostbusters (1985) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "197", "", "", "" }, + { "721a5567f76856f6b50a6707aa8f8316", "", "", "Ghostbusters (1985) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "197", "", "", "" }, { "724613effaf7743cbcd695fab469c2a8", "Quelle", "", "Super Ferrari (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "204", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72a46e0c21f825518b7261c267ab886e", "Xonox", "99005", "Robin Hood (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, - { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "8", "144", "32", "", "", "", "" }, + { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "32", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "73521c6b9fed6a243d9b7b161a0fb793", "Atari", "", "Miniature Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "256", "", "", "" }, + { "73521c6b9fed6a243d9b7b161a0fb793", "Atari", "", "Miniature Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "73b4e8f8b04515d91937510e680214bc", "", "", "Rubik's Cube Demo 3 (24-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "73c839aff6a055643044d2ce16b3aaf7", "", "", "Starmaster (1982) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "73c839aff6a055643044d2ce16b3aaf7", "", "", "Starmaster (1982) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7454786af7126ccc7a0c31fcf5af40f1", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "245", "", "", "" }, - { "7481f0771bff13885b2ff2570cf90d7b", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "56", "206", "", "", "" }, + { "7454786af7126ccc7a0c31fcf5af40f1", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "245", "", "", "" }, + { "7481f0771bff13885b2ff2570cf90d7b", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "56", "206", "", "", "" }, { "74ca9bdc91ee387a5bd929b73aec5c2c", "", "", "Star Fire - New Shields (03-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "74f623833429d35341b7a84bc09793c0", "Froggo / Zellers", "FG 1007", "Cruise Missile (AKA Radar) (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "753375d183c713cfa0aa7298d1f3067b", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "", "" }, - { "75511bb694662301c9e71df645f4b5a7", "Activision", "", "Stampede (1981) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "198", "", "", "" }, - { "756ca07a65a4fbbedeb5f0ddfc04d0be", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "44", "256", "", "", "" }, - { "7576dd46c2f8d8ab159d97e3a3f2052f", "", "", "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "49", "221", "", "", "" }, + { "75511bb694662301c9e71df645f4b5a7", "Activision", "", "Stampede (1981) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "198", "", "", "" }, + { "756ca07a65a4fbbedeb5f0ddfc04d0be", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "44", "256", "", "", "" }, + { "7576dd46c2f8d8ab159d97e3a3f2052f", "", "", "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "221", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3015,9 +3015,9 @@ static const char* DefProps[][23] = { { "75ee371ccfc4f43e7d9b8f24e1266b55", "Atari", "CX26107", "Snow White (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "76c685d1a60c0107aa54a772113a2972", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "38", "200", "", "", "No" }, + { "76c685d1a60c0107aa54a772113a2972", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "76f53abbbf39a0063f24036d6ee0968a", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel)", "", "Rare", "", "E7", "", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "", "" }, + { "76f53abbbf39a0063f24036d6ee0968a", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "", "" }, { "77057d9d14b99e465ea9e29783af0ae3", "Activision", "AG-001", "Dragster (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3043,7 +3043,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7a09299f473105ae1ef3ad6f9f2cd807", "Atari", "CX2616", "Championship Soccer (AKA Pele's Soccer) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "41", "200", "", "", "" }, + { "7a09299f473105ae1ef3ad6f9f2cd807", "Atari", "CX2616", "Championship Soccer (AKA Pele's Soccer) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "41", "200", "", "", "" }, { "7a5463545dfb2dcfdafa6074b2f2c15e", "20th Century Fox", "11007", "Turmoil (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "52", "186", "", "", "" }, { "7a64b5a6e90619c6aacf244cdd7502f8", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 1) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3054,7 +3054,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7b3cf0256e1fa0fdc538caf3d5d86337", "CommaVid", "CM-009", "Stronghold (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, - { "7b5207e68ee85b16998bea861987c690", "Atari", "", "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "", "", "", "" }, + { "7b5207e68ee85b16998bea861987c690", "Atari", "", "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "", "", "", "" }, { "7b79beb378d1b4471def90ceccf413de", "", "", "Pitfall Cupcake (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7bc4fd254ec8c0a25a13f02fd3f762ff", "Retroactive", "", "Qb (V1.00) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -3090,15 +3090,15 @@ static const char* DefProps[][23] = { { "7f73ac39e5e3e13e40fd8ad885561a0f", "", "", "Star Fire - Warping Star (13-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7f9fbe3e00a21ea06e6ae5e0e5db2143", "", "", "Skate Boardin' (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7ff53f6922708119e7bf478d7d618c86", "Starsoft", "", "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "219", "", "", "" }, + { "7ff53f6922708119e7bf478d7d618c86", "Starsoft", "", "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "219", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "807a8ff6216b00d52aba2dfea5d8d860", "John Payson", "", "Strat-O-Gems Deluxe", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "250", "", "", "" }, + { "807a8ff6216b00d52aba2dfea5d8d860", "John Payson", "", "Strat-O-Gems Deluxe", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "80e1410ec98089e0733cc09e584dba4b", "Dynamics", "", "Jumping Jack (Dynamics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "256", "", "", "" }, - { "8101efafcf0af32fedda4579c941e6f4", "", "", "Okie Dokie (4K) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "16", "128", "64", "220", "", "", "" }, - { "8108ad2679bd055afec0a35a1dca46a4", "Cooper Black", "", "Puzzled World (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "52", "175", "", "", "" }, + { "80e1410ec98089e0733cc09e584dba4b", "Dynamics", "", "Jumping Jack (Dynamics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "256", "", "", "" }, + { "8101efafcf0af32fedda4579c941e6f4", "", "", "Okie Dokie (4K) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "16", "128", "64", "220", "", "", "" }, + { "8108ad2679bd055afec0a35a1dca46a4", "Cooper Black", "", "Puzzled World (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "52", "175", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3113,7 +3113,7 @@ static const char* DefProps[][23] = { { "82337e5fe0f418ca9484ca851dfc226a", "", "", "Robot City (V1.0) (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "8290daea8391f96d7c8e1482e184d19c", "Eckhard Stolberg", "", "Frame Timed Sound Effects (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, { "82efe7984783e23a7c55266a5125c68e", "CCE", "", "Pizza Chef (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "834a2273e97aec3181ee127917b4b269", "Starsoft", "", "Die Hungrigen Froesche (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "202", "", "", "" }, + { "834a2273e97aec3181ee127917b4b269", "Starsoft", "", "Die Hungrigen Froesche (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "202", "", "", "" }, { "836b955663d013300eaaa39f2403068f", "", "", "Greeting Cart Moon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3121,12 +3121,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "83f50fa0fbae545e4b88bb53b788c341", "", "CX2643 / 99815", "Code Breaker (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "33", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "84290e333ff7567c2380f179430083b8", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, + { "84290e333ff7567c2380f179430083b8", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, { "8454ed9787c9d8211748ccddb673e920", "Froggo", "", "Spiderdroid (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "40", "182", "", "", "" }, { "84ea80e31b306059f56fdce2f07b758f", "", "", "Death Derby (19-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "851cc1f3c64eaedd10361ea26345acea", "Activision", "AG-009", "Freeway (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, { "8530caaaf40acbdcd118c282b5f8a37a", "", "", "This Planet Sucks Demo 2 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "853c11c4d07050c22ef3e0721533e0c5", "Activision", "", "Oink! (1983) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "853c11c4d07050c22ef3e0721533e0c5", "Activision", "", "Oink! (1983) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "8556b42aa05f94bc29ff39c39b11bff4", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "858abdc9deba2f248e073d01c356e1ab", "Playaround", "", "Lady in Wading (1982) (Playaround) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3136,15 +3136,15 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8644352b806985efde499ae6fc7b0fec", "", "", "Mr. Postman (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "869abe0426e6e9fcb6d75a3c2d6e05d1", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "194", "", "", "" }, + { "869abe0426e6e9fcb6d75a3c2d6e05d1", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, { "86f5e55ca9a9bde7338a157570828e79", "", "", "Star Fire - Creating a Universe (09-09-2002) (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "87662815bc4f3c3c86071dc994e3f30e", "Intellivision Productions", "", "Sword Fight (2000) (Intellevision Productions)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "877a5397f3f205bf6750398c98f33de1", "Erik Eid", "", "Euchre (Beta) (PAL) (12-09-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "8786f229b974c393222874f73a9f3206", "", "", "Spider Fighter (1983) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "", "" }, + { "877a5397f3f205bf6750398c98f33de1", "Erik Eid", "", "Euchre (Beta) (PAL) (12-09-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8786f229b974c393222874f73a9f3206", "", "", "Spider Fighter (1983) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "", "", "", "" }, { "87bea777a34278d29b3b6029833c5422", "Tigervision / Thomas Jentzsch", "", "Polaris (1983) (Tigervision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "8", "144", "40", "", "", "", "" }, { "87f020daa98d0132e98e43db7d8fea7e", "20th Century Fox", "11001", "Worm War I (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3158,23 +3158,23 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "898748d5eaac3164b0391a64ae1e0e32", "", "", "Hangman Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "", "", "", "" }, - { "89afff4a10807093c105740c73e9b544", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "47", "230", "", "", "" }, + { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "89afff4a10807093c105740c73e9b544", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "230", "", "", "" }, { "8a42e2c7266439d8997a55d0124c912c", "", "", "Hangman Invader Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8a6c84f481acf42abcb78ba5064ad755", "128-in-1 Junior Console", "", "Street Racer - Speedway II (1978) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "35", "256", "", "", "" }, + { "8a6c84f481acf42abcb78ba5064ad755", "128-in-1 Junior Console", "", "Street Racer - Speedway II (1978) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "35", "256", "", "", "" }, { "8a9d874a38608964f33ec0c35cab618d", "Chris Cracknell", "", "Rescue Bira Bira (Chris Cracknell) [!]", "Hack of Jungle Fever (Mystique)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "Yes", "", "" }, - { "8aad33da907bed78b76b87fceaa838c1", "Atari", "", "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "39", "256", "", "", "" }, + { "8aad33da907bed78b76b87fceaa838c1", "Atari", "", "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8b40a9ca1cfcd14822e2547eaa9df5c1", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "", "" }, - { "8b556c3d9ca8e5e6e665bd759b93ffae", "", "", "Synthcart (2002) (Paul Slocum) (PAL) [!]", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "PAL", "", "", "55", "250", "Yes", "", "" }, - { "8b7ca29a55432f886cee3d452fb00481", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "60", "200", "", "", "" }, + { "8b40a9ca1cfcd14822e2547eaa9df5c1", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "53", "205", "", "", "" }, + { "8b556c3d9ca8e5e6e665bd759b93ffae", "", "", "Synthcart (2002) (Paul Slocum) (PAL) [!]", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "55", "250", "Yes", "", "" }, + { "8b7ca29a55432f886cee3d452fb00481", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "60", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8bc0d2052b4f259e7a50a7c771b45241", "Xonox", "", "Tomarc the Barbarian (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8c36ed2352801031516695d1eeefe617", "Epyx", "", "Winter Games (1987) (Epyx) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "56", "", "", "", "" }, + { "8c36ed2352801031516695d1eeefe617", "Epyx", "", "Winter Games (1987) (Epyx) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ce9126066f2ddd5173e9f1f9ce1494e", "", "", "Missile Command (CX-22 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -3184,41 +3184,41 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8df4be9ddc54ac363b13dc57ceaf161a", "Atari / Scott Stilphen", "", "Asteroids SS (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "", "No" }, - { "8e42674972d6805068fc653e014370fd", "", "", "Skeleton (PAL) (15-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, + { "8e42674972d6805068fc653e014370fd", "", "", "Skeleton (PAL) (15-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "8e4fa8c6ad8d8dce0db8c991c166cdaa", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "8e822b39a71c84ac875f0107fb61d6f0", "", "", "Hangman Ghost Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravideo", "", "Tape Worm (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "215", "Yes", "", "" }, + { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravideo", "", "Tape Worm (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "215", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8f60551db6d1535ef0030f155018c738", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [p1][o1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "62", "202", "", "", "" }, + { "8f60551db6d1535ef0030f155018c738", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [p1][o1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "62", "202", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8f98519a91dbbf4864f135a10050d9ed", "Silvio Mogno", "", "Rainbow Invaders (non-playable demo) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9041cfd144df075552efebbb81df625d", "", "", "Greeting Cart Ann R (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "90578a63441de4520be5324e8f015352", "Bitcorp", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "Yes", "", "" }, + { "90578a63441de4520be5324e8f015352", "Bitcorp", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "914a8feaf6d0a1bbed9eb61d33817679", "Atari", "", "Freeway (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "63", "193", "", "", "" }, + { "914a8feaf6d0a1bbed9eb61d33817679", "Atari", "", "Freeway (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "63", "193", "", "", "" }, { "91a3749ff7b7e72b7fa09e05396a0e7b", "", "", "Gunfight 2600 - Final Run Part 2 (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "91d1c82ceaf8af2add3973a3c34bc0cb", "", "", "Starfield Demo 1 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9222b25a0875022b412e8da37e7f6887", "Panda", "106", "Dice Puzzle (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "Yes", "", "" }, - { "9281eccd7f6ef4b3ebdcfd2204c9763a", "Retroactive", "", "Qb (2.15) (Retroactive) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "250", "Yes", "", "" }, - { "929e8a84ed50601d9af8c49b0425c7ea", "", "PG205", "Dancing Plates (1983) (BitCorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "42", "230", "Yes", "", "" }, + { "9281eccd7f6ef4b3ebdcfd2204c9763a", "Retroactive", "", "Qb (2.15) (Retroactive) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "929e8a84ed50601d9af8c49b0425c7ea", "", "PG205", "Dancing Plates (1983) (BitCorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "230", "Yes", "", "" }, { "92c5abb7a8bb1c3fc66c92ba353a3d21", "", "", "Star Fire - Sorting Fixed (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9333172e3c4992ecf548d3ac1f2553eb", "Gakken", "010", "Strategy X (1982) (Gakken) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "27", "", "", "", "" }, + { "9333172e3c4992ecf548d3ac1f2553eb", "Gakken", "010", "Strategy X (1982) (Gakken) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "256", "Yes", "", "" }, - { "936f555b4b1a2cd061b659ff63f4f5f2", "", "", "My Golf (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "62", "196", "", "", "" }, + { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "43", "256", "Yes", "", "" }, + { "936f555b4b1a2cd061b659ff63f4f5f2", "", "", "My Golf (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93acd5020ae8eb5673601e2edecbc158", "Chris Cracknell", "", "Video Time Machine (Chris Cracknell)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3237,7 +3237,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "95e542a7467c94b1e4ab24a3ebe907f1", "Starsoft", "", "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "242", "Yes", "", "" }, + { "95e542a7467c94b1e4ab24a3ebe907f1", "Starsoft", "", "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "242", "Yes", "", "" }, { "961112b74a920a5242e233480326c356", "Activision", "AG-007", "Tennis (1981) (Activision) [o2]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3245,9 +3245,9 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "256", "Yes", "", "" }, + { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, { "972486110933623039a3581db308fda6", "", "", "Xeno Plus (Xenophone Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "977294ae6526c31c7f9a166ee00964ad", "Atari", "CX2677", "Dig Dug (V1) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "46", "215", "", "", "" }, + { "977294ae6526c31c7f9a166ee00964ad", "Atari", "CX2677", "Dig Dug (V1) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "46", "215", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3265,7 +3265,7 @@ static const char* DefProps[][23] = { { "98fa3ad778a668a79449350de4b3b95b", "", "", "Thrust (V1.1) (2000) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9912d06eea42200a198dd3e2be18c601", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "", "" }, - { "9945a22f60bbaf6d04a8d73b3cf3db75", "", "", "Kung Fu Master (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "", "" }, + { "9945a22f60bbaf6d04a8d73b3cf3db75", "", "", "Kung Fu Master (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "192", "", "", "" }, { "9962034ea7b3d4a905d0991804670087", "", "", "Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "99a24d7bb31d49b720b422550b32c35f", "", "", "Hangman Ghost Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9a21fba9ee9794e0fadd7c7eb6be4e12", "", "", "Ikari Warriors (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "197", "", "", "" }, @@ -3287,10 +3287,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9c729017dd2f9ccbadcb511187f80e6b", "", "", "J-Pac (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "", "" }, { "9ca2deb61318eba4fb784d4bf7441d8b", "", "", "Purple Bar Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, - { "9d0befa555f003069a21d2f6847ad962", "", "", "Vanguard (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "9d0befa555f003069a21d2f6847ad962", "", "", "Vanguard (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d37a1be4a6e898026414b8fee2fc826", "Mattel", "MT5658", "Super Challenge Baseball (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "", "" }, - { "9d522a3759aa855668e75962c84546f7", "Atari", "CX2634", "Golf (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "44", "227", "", "", "" }, + { "9d522a3759aa855668e75962c84546f7", "Atari", "CX2634", "Golf (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "227", "", "", "" }, { "9dec0be14d899e1aac4337acef5ab94a", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9e2c7299c69b602443d327c7dad51cbf", "Activision / Charles Morgan", "", "Xaxyrax Road by Charles Morgan (Freeway Hack)", "Hack of Freeway (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, @@ -3312,7 +3312,7 @@ static const char* DefProps[][23] = { { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead by Barry Laws Jr. (Pac-Man Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "208", "", "", "" }, { "a025a8f83a42a4d6d46c4887e799bfac", "Hozer Video Games", "", "Gunfight 2600 - Descissions had to be made (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, { "a0563dd6d8215c38c488fbbd61435626", "", "", "Ship Demo (V 1501) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "", "No" }, + { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3334,7 +3334,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a2424c1a0c783d7585d701b1c71b5fdc", "Atari", "", "Video Pinball (1980) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, + { "a2424c1a0c783d7585d701b1c71b5fdc", "Atari", "", "Video Pinball (1980) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, { "a28d872fc50fa6b64eb35981d0f4bb8d", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "220", "", "", "" }, { "a29fc854838e08c247553a7d883dd65b", "Activision", "AX-013", "Barnstorming (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "190", "", "", "" }, { "a2de0fc85548871279ed2a3c1325c13e", "George Veeder", "", "Cat and Mouse by George Veeder (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, @@ -3342,8 +3342,8 @@ static const char* DefProps[][23] = { { "a310494ad5ba2b5b221a30d7180a0336", "", "", "Demo Image Series #6 - Mario (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a3c1c70024d7aabb41381adbfb6d3b25", "Telesys", "1005", "Star Gunner (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "", "", "", "" }, - { "a3f2a0fcf74bbc5fa763b0ee979b05b1", "Starsoft", "", "Eishockey-Fieber (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "53", "250", "", "", "" }, - { "a406d2f6d84e61d842f4cb13b2b1cfa7", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "a3f2a0fcf74bbc5fa763b0ee979b05b1", "Starsoft", "", "Eishockey-Fieber (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "250", "", "", "" }, + { "a406d2f6d84e61d842f4cb13b2b1cfa7", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a443d8557d712845c8cd3699363a42e6", "", "", "Star Fire (07-01-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3357,7 +3357,7 @@ static const char* DefProps[][23] = { { "a4f1cea2c8479284e2a2292f8d51b5fa", "", "", "Gunfight 2600 - The Final Kernel Part 2 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video", "", "Gopher (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, + { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video", "", "Gopher (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3369,7 +3369,7 @@ static const char* DefProps[][23] = { { "a6737c81542a99ee71cb5f5ff14703d9", "", "", "Scrolling Playfield 3 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a7523db9a33e9417637be0e71fa4377c", "Ariola", "", "Gangster (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "a7523db9a33e9417637be0e71fa4377c", "Ariola", "", "Gangster (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "a779b9fa02c62d00d7c31ed51268f18a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "198", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3378,7 +3378,7 @@ static const char* DefProps[][23] = { { "a81697b0c8bbc338ae4d0046ede0646b", "CCE", "", "Gravitar (1988) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, { "a83b070b485cf1fb4d5a48da153fdf1a", "Apollo", "", "Pompeii (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a875f0a919129b4f1b5103ddd200d2fe", "Atari", "", "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "35", "250", "", "", "" }, + { "a875f0a919129b4f1b5103ddd200d2fe", "Atari", "", "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "250", "", "", "" }, { "a899a3e3fec8d466f45c2c3beb2961fd", "", "", "Greeting Cart Cathy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8d0a4a77cd71ac601bd71df5a060e4c", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t2] (Fuel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3392,7 +3392,7 @@ static const char* DefProps[][23] = { { "aa8e4b2cb8a78ffe6b20580033f4dec9", "", "", "Bitmap Demo (13-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aad91be0bf78d33d29758876d999848a", "Activision", "AX-018", "Pitfall! (1982) (Activision) (Beta)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, - { "aafc79ffc32c4c9b2d73c8ada7602cfe", "", "", "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "", "", "", "" }, + { "aafc79ffc32c4c9b2d73c8ada7602cfe", "", "", "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3400,7 +3400,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ab60ea7b707c58d356cad858eb18db43", "", "", "Tazer (John K. Harvey)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "abb741c83f665d73c86d90a7d9292a9b", "Telegames", "", "Space Attack (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "201", "", "", "" }, + { "abb741c83f665d73c86d90a7d9292a9b", "Telegames", "", "Space Attack (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "201", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac05c0e53a5e7009ddd75ed4b99949fc", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3424,8 +3424,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae18c11e4d7ed2437f0bf5d167c0e96c", "", "", "Multi-Color Demo 3 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ae465044dfba287d344ba468820995d7", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "55", "", "", "", "" }, - { "ae682886058cd6981c4b8e93e7b019cf", "Retroactive", "", "Qb (V0.12) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "250", "Yes", "", "" }, + { "ae465044dfba287d344ba468820995d7", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "ae682886058cd6981c4b8e93e7b019cf", "Retroactive", "", "Qb (V0.12) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "250", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3441,14 +3441,14 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b049fc8ac50be7c2f28418817979c637", "Activision", "AK-048-04", "River Raid II (1988) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "59", "192", "", "", "" }, + { "b049fc8ac50be7c2f28418817979c637", "Activision", "AK-048-04", "River Raid II (1988) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b095009004df341386d22b2a3fae3c81", "Sega", "002-01", "Sub Scan (1982) (Sega) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "194", "", "", "" }, - { "b0c47e426c7f799aee2c40422df8f56a", "", "", "Space Treat (PAL) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "b095009004df341386d22b2a3fae3c81", "Sega", "002-01", "Sub Scan (1982) (Sega) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, + { "b0c47e426c7f799aee2c40422df8f56a", "", "", "Space Treat (PAL) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b1486e12de717013376447ac6f7f3a80", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, - { "b17b9cc4103844dcda54f77f44acc93a", "Starsoft", "", "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "", "", "", "" }, + { "b1486e12de717013376447ac6f7f3a80", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, + { "b17b9cc4103844dcda54f77f44acc93a", "Starsoft", "", "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3466,7 +3466,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b31dc989f594764eacfa7931cead0050", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, - { "b392964e8b1c9c2bed12246f228011b2", "US Games", "", "Name This Game (AKA Octopus) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "b392964e8b1c9c2bed12246f228011b2", "US Games", "", "Name This Game (AKA Octopus) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3474,7 +3474,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b4daedb43511521db9036d503b3c1b69", "", "", "Sokoban (01-01-2003) (Adam Wozniak) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b4f05e544834d0238a0c263491775edf", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "192", "Yes", "", "" }, + { "b4f05e544834d0238a0c263491775edf", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "192", "Yes", "", "" }, { "b5110f55ed99d5279f18266d001a8cd5", "", "", "Auto-mobile Demo (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b5a1a189601a785bdb2f02a424080412", "Imagic", "IA3410", "Shootin' Gallery (1982) (Imagic)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3482,13 +3482,13 @@ static const char* DefProps[][23] = { { "b676a9b7094e0345a76ef027091d916b", "Video Gems / Thomas Jentzsch", "", "Mission Survive (1983) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "8", "148", "", "", "", "", "" }, { "b6821ac51c4c1dcb283f01be2f047dc1", "", "", "Rubik's Cube 3D Demo (25-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b6e40bce550672e5495a8cdde7075b8b", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "", "", "", "No" }, + { "b6e40bce550672e5495a8cdde7075b8b", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b76fbadc8ffb1f83e2ca08b6fb4d6c9f", "Activision", "AG-005", "Skiing (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, - { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "259", "", "", "" }, - { "b7a7e34e304e4b7bc565ec01ba33ea27", "Parker Bros", "2695 / PB5820", "Mr. Do!'s Castle (1983) (Parker Bros)", "", "Extremely Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "259", "", "", "" }, + { "b7a7e34e304e4b7bc565ec01ba33ea27", "Parker Bros", "2695 / PB5820", "Mr. Do!'s Castle (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3497,7 +3497,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b9336ed6d94a5cc81a16483b0a946a73", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "256", "", "", "" }, + { "b9336ed6d94a5cc81a16483b0a946a73", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3517,21 +3517,21 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bc3057a35319aae3a5cd87a203736abe", "CCE", "", "Time Warp (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "bc3057a35319aae3a5cd87a203736abe", "CCE", "", "Time Warp (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bc5389839857612cfabeb810ba7effdc", "Atari", "CX2671", "SwordQuest - Waterworld (1983) (Atari)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bc97d544f1d4834cc72bcc92a37b8c1b", "", "", "Sky Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bce4c291d0007f16997faa5c4db0a6b8", "Starsoft", "", "Weltraum Tunnel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "40", "", "", "", "" }, - { "bcef7880828a391cf6b50d5a6dcef719", "Starsoft", "SS-009", "Bermuda (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "", "" }, + { "bce4c291d0007f16997faa5c4db0a6b8", "Starsoft", "", "Weltraum Tunnel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, + { "bcef7880828a391cf6b50d5a6dcef719", "Starsoft", "SS-009", "Bermuda (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "199", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bda1463e02ae3a6e1107ffe1b572efd2", "", "", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "", "" }, + { "bda1463e02ae3a6e1107ffe1b572efd2", "", "", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "229", "", "", "" }, { "bdbac0c6cd0fab9c81c3be0bedb0ddd4", "", "", "Greeting Cart The Snail(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdc381baf7c252c63739c5e9ed087a5c", "", "", "Vertical Ship Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "be35d8b37bbc03848a5f020662a99909", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "206", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3544,7 +3544,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bffe34516aaa3cbf5d307eab382a7e95", "", "", "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "bffe34516aaa3cbf5d307eab382a7e95", "", "", "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c032c2bd7017fdfbba9a105ec50f800e", "Activision", "", "Thwocker (Activision) (Prototype) [!]", "", "Prototype", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "", "" }, @@ -3552,9 +3552,9 @@ static const char* DefProps[][23] = { { "c0d2434348de72fa6edcc6d8e40f28d7", "Sega", "010-01", "Tapper (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "c150c76cbde2c9b5a97eb5399d46c64f", "", "", "Unknown Title (xxx00000 (200203)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c16fbfdbfdf5590cc8179e4b0f5f5aeb", "Bomb", "CA285", "Wall Defender (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "219", "", "", "" }, - { "c1a83f44137ea914b495fc6ac036c493", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari) (PAL) [!]", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "", "PAL", "", "", "64", "220", "", "", "" }, + { "c1a83f44137ea914b495fc6ac036c493", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari) (PAL) [!]", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "64", "220", "", "", "" }, { "c1b1049b88bcd98437d8872d1d62ba31", "", "", "Demo Image Series #4 - Donald (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c1f209d80f0624dada5866ce05dd3399", "Telegames", "MT5662", "TRON - Deadly Discs (1983) (Telegames) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "55", "", "", "", "" }, + { "c1f209d80f0624dada5866ce05dd3399", "Telegames", "MT5662", "TRON - Deadly Discs (1983) (Telegames) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "55", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3562,12 +3562,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c2778507b83d9540e9be5713758ff945", "", "", "Island Flyer Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "Uncommon", "", "E0", "", "", "", "", "", "", "", "", "", "", "37", "206", "", "", "" }, + { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "37", "206", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c370c3268ad95b3266d6e36ff23d1f0c", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "226", "", "", "" }, + { "c370c3268ad95b3266d6e36ff23d1f0c", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "45", "226", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3bbc673acf2701b5275e85d9372facf", "Atari", "", "Stunt Cycle (Atari) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "c3ef5c4653212088eda54dc91d787870", "Activision", "AG-002", "Boxing (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, @@ -3584,7 +3584,7 @@ static const char* DefProps[][23] = { { "c4be1f4024fa8840fcfcbbbc9befff11", "", "", "Greeting Cart 2600 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c504a71c411a601d1fc3173369cfdca4", "Retroactive", "", "Qb (V2.02) (Stella) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "c52d9bbdc5530e1ef8e8ba7be692b01e", "Atari", "", "Holey Moley (Atari) (Prototype)", "Uses Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, - { "c5387fc1aa71f11d2fa82459e189a5f0", "Bitcorp", "", "Weltraum Tunnel (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "256", "", "", "" }, + { "c5387fc1aa71f11d2fa82459e189a5f0", "Bitcorp", "", "Weltraum Tunnel (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "256", "", "", "" }, { "c569e57dca93d3bee115a49923057fd7", "", "", "Pac-Space (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c5930d0e8cdae3e037349bfa08e871be", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3599,7 +3599,7 @@ static const char* DefProps[][23] = { { "c6cedb25b7d390b580ea8edb614b168b", "", "", "Star Fire - Radar Completed (22-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c745487828a1a6a743488ecebc55ad44", "", "", "Galactic (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "c745487828a1a6a743488ecebc55ad44", "", "", "Galactic (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c77d3b47f2293e69419b92522c6f6647", "Panda", "101", "Tank Brigade (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3612,7 +3612,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c880c659cdc0f84c4a66bc818f89618e", "Bitcorp / Thomas Jentzsch", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "245", "Yes", "", "" }, { "c8df076c7e4349ca8dcbdb773bf3c985", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, - { "c9196e28367e46f8a55e04c27743148f", "Atari", "", "Stampede (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "63", "192", "", "", "" }, + { "c9196e28367e46f8a55e04c27743148f", "Atari", "", "Stampede (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "63", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c9c25fc536de9a7cdc5b9a916c459110", "Activision", "AX-023", "Oink! (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3626,7 +3626,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cae8f83c06831ec7bb6a3c07e98e9342", "Colin Hughes", "", "Tetris 2600 (Colin Hughes) [o1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cb4a7b507372c24f8b9390d22d54a918", "ITT", "", "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "200", "", "", "" }, + { "cb4a7b507372c24f8b9390d22d54a918", "ITT", "", "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cb8bf5a0df683cbf6ce50d614b12dd20", "Activision", "", "Fast Eddie (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, { "cb96b0cf90ab7777a2f6f05e8ad3f694", "Silvio Mogno", "", "Rainbow Invaders", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3636,8 +3636,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cc12581e079cd18330a89902625b8347", "Dave Neuman", "", "Space Battle (PAL)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, - { "cc1939e4769d0c157ace326efcfdcf80", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "36", "192", "", "", "No" }, + { "cc12581e079cd18330a89902625b8347", "Dave Neuman", "", "Space Battle (PAL)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cc1939e4769d0c157ace326efcfdcf80", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, { "cc74ddb45d7bc4d04c2e6f1907416699", "", "", "Colour Display Programme (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3648,7 +3648,7 @@ static const char* DefProps[][23] = { { "cd032ab6764b55438a7b0bfb5e78595a", "", "", "Hangman Pac-Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd34b3b3ef9e485201e841ba71beb253", "", "", "Hit HMOVE At Various Cycles After WSYNC Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd399bc422992a361ba932cc50f48b65", "Starpath", "AR-4104", "Rabbit Transit Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "198", "", "", "" }, - { "cd4ded1ede63c4dd09f3dd01bda7458c", "", "", "Laser Gate (Future Video Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "cd4ded1ede63c4dd09f3dd01bda7458c", "", "", "Laser Gate (Future Video Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd8fa2e9f6255ef3d3b9b5a4f24a54f7", "", "", "Daredevil (V2) (Stunt_Cycle_Rules!) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3663,7 +3663,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cef01595000627ee50863d4290372c27", "", "", "Many Blue Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, { "cf0c593c563c84fdaf0f741adb367445", "Retroactive", "", "Qb (V0.05) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "cf3c2725f736d4bcb84ad6f42de62a41", "Rainbow Vision", "SS-009", "Bermuda (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "54", "199", "", "", "" }, + { "cf3c2725f736d4bcb84ad6f42de62a41", "Rainbow Vision", "SS-009", "Bermuda (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "199", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3692,8 +3692,8 @@ static const char* DefProps[][23] = { { "d175258b2973b917a05b46df4e1cf15d", "", "", "Walker (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "225", "", "", "" }, { "d17a8c440d6be79fae393a4b46661164", "", "", "Warring Worms (Beta 3) (2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d1a9478b99d6a55e13a9fd4262da7cd4", "US Games", "VC 1001", "Space Jockey (1982) (US Games) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d1d704a7146e95709b57b6d4cac3f788", "Atari", "", "Slot Racers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "", "" }, - { "d223bc6f13358642f02ddacfaf4a90c9", "Starsoft", "", "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "51", "215", "", "", "" }, + { "d1d704a7146e95709b57b6d4cac3f788", "Atari", "", "Slot Racers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, + { "d223bc6f13358642f02ddacfaf4a90c9", "Starsoft", "", "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "51", "215", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d2c305a443dfc49e8430964d7c1bd1b7", "", "", "Star Fire - Advice on radar needed (16-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3701,7 +3701,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d326db524d93fa2897ab69c42d6fb698", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "206", "", "", "" }, + { "d326db524d93fa2897ab69c42d6fb698", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3710,7 +3710,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d47387658ed450db77c3f189b969cc00", "Playaround", "", "Westward Ho (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "d47387658ed450db77c3f189b969cc00", "Playaround", "", "Westward Ho (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3719,7 +3719,7 @@ static const char* DefProps[][23] = { { "d4c590ccfb611a73b3331359700c01a3", "", "", "Sprite Movement Demo 2 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d5618464dbdc2981f6aa8b955828eeb4", "CCE", "", "Megamania (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, - { "d57913088e0c49ac3a716bf9837b284f", "", "", "Pressure Cooker (1983) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" }, + { "d57913088e0c49ac3a716bf9837b284f", "", "", "Pressure Cooker (1983) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, { "d597d35c6022c590d6e75e865738558a", "", "", "Sprite Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d5c6b81212ad86fd9542a1fedaf57cae", "", "", "Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3737,7 +3737,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d79df06894e3c1585a47c2807332b319", "", "", "Star Fire - Explosions! (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d7dd56677e4ec1e6627419478a4a9668", "", "", "Shadow Keep (Fixed) (04-03-2003) (Andrew Towers)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d816fea559b47f9a672604df06f9d2e3", "Atari", "", "Fun with Numbers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "22", "", "", "", "" }, + { "d816fea559b47f9a672604df06f9d2e3", "Atari", "", "Fun with Numbers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, { "d82675ce67caf16afe5ed6b6fac8aa37", "", "", "Robot City (V0.23) (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3746,11 +3746,11 @@ static const char* DefProps[][23] = { { "d88691c995008b9ab61a44bb686b32e4", "", "", "Warring Worms (07-02-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d8b2c81cea5af04f795eb3dc6573d72b", "", "", "Tunnel Demo 2 (27-03-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d8e4c8e2d210270cd1e0f6d1b4582b91", "", "", "Subterrenea (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "", "", "", "" }, + { "d8e4c8e2d210270cd1e0f6d1b4582b91", "", "", "Subterrenea (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d97e3d0b4575ce0b9a6132e19cfeac6e", "Fabrizio Zavagli", "", "Space Treat (061002) (PD)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d9b49f0678776e04916fa5478685a819", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "197", "", "", "" }, + { "d9b49f0678776e04916fa5478685a819", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3780,7 +3780,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dc6aa0bb21a6e66e80e75ba5edc5c0dd", "", "", "Star Fire - Kernel Done (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic", "IA3000", "Trick Shot (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "54", "250", "Yes", "", "" }, + { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic", "IA3000", "Trick Shot (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "54", "250", "Yes", "", "" }, { "dcba0e33aa4aed67630a4b292386f405", "Retroactive", "", "Qb (V2.08) (Half Speed Version) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3825,7 +3825,7 @@ static const char* DefProps[][23] = { { "dfe6aa7443bb813cefa35a4cf4887422", "", "", "This Planet Sucks (Greg Troutman) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "205", "", "", "" }, { "e01e00504e6d4b88fa743c0bbe8a96e5", "", "", "Qb (Special Edition, some bugfixes) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e0221c95aa657f5764eeeb64c8429258", "", "", "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)", "", "", "", "E0", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "e0221c95aa657f5764eeeb64c8429258", "", "", "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3833,7 +3833,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e0eff071f578ecf19edc2ab276644e46", "", "", "Gas Gauge Demo (2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e12e32dee68201b6765fcd0ed54d6646", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "PAL", "", "", "36", "256", "", "", "" }, + { "e12e32dee68201b6765fcd0ed54d6646", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "36", "256", "", "", "" }, { "e13c7627b2e136b9c449d9e8925b4547", "Atari", "CX2624", "Basketball (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "193", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3848,9 +3848,9 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2cff4a96b91fcf5de694b7480a612ae", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "", "" }, - { "e34c236630c945089fcdef088c4b6e06", "Activision", "AB-035-04", "Pitfall 2 (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "198", "", "", "" }, + { "e34c236630c945089fcdef088c4b6e06", "Activision", "AB-035-04", "Pitfall 2 (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, { "e363e467f605537f3777ad33e74e113a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "219", "", "", "" }, - { "e37c8055d70979af354251ebe9f1b7dd", "HES", "", "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "37", "240", "", "", "" }, + { "e37c8055d70979af354251ebe9f1b7dd", "HES", "", "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "240", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3858,7 +3858,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e4519d584bb1663ff2734f16c983fa2b", "", "", "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "45", "229", "", "", "" }, + { "e4519d584bb1663ff2734f16c983fa2b", "", "", "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "229", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3866,7 +3866,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e4c666ca0c36928b95b13d33474dbb44", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "", "" }, { "e4e9125a8741977583776729359614e1", "", "", "Comitoid beta 4 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e51030251e440cffaab1ac63438b44ae", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros)", "", "Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "e51030251e440cffaab1ac63438b44ae", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3884,9 +3884,9 @@ static const char* DefProps[][23] = { { "e66e5af5dea661d58420088368e4ef0d", "Activision", "AG-011", "Stampede (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e6f49a1053c79211f82be4d90dc9fe3d", "", "", "Gunfight 2600 - Little progress... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "195", "", "", "" }, + { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e77ec259e1387bc308b0534647a89198", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "", "240", "", "", "" }, + { "e77ec259e1387bc308b0534647a89198", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "240", "", "", "" }, { "e7864caaf9ec49ed67b1904ce8602690", "", "", "Donkey Kong 2K3 Pic (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e7a758bb0b43d0f7004e92b9abf4bc83", "", "", "Troll's Adventure (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3898,15 +3898,15 @@ static const char* DefProps[][23] = { { "e8a3473bf786cf796d1336d2d03a0008", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 120583)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e8f7679359c4f532f5d5e93af7d8a985", "", "", "Hangman Invader Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e91d2ecf8803ae52b55bbf105af04d4b", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "230", "Yes", "", "" }, + { "e91d2ecf8803ae52b55bbf105af04d4b", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "45", "230", "Yes", "", "" }, { "e927ecf80f3784d745abd8368d78f2f3", "", "", "Space Instigators (V1.8) (19-10-2002) (CT) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e959b5a2c882ccaacb43c32790957c2d", "", "", "Phantom II / Pirate (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e9c5d04643855949a23ff29349af74ea", "", "", "SCSIcide (Score Hack 2) (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e9cb18770a41a16de63b124c1e8bd493", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "Yes", "", "" }, + { "e9cb18770a41a16de63b124c1e8bd493", "Parker Bros", "PB5370", "Popeye (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "ea6d40db5498d6386571a76df448aa4c", "", "", "Vertical Playfield Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ead60451c28635b55ca8fea198444e16", "Sancho", "TEC004", "Nightmare (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "43", "256", "", "", "" }, + { "ead60451c28635b55ca8fea198444e16", "Sancho", "TEC004", "Nightmare (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "43", "256", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3914,8 +3914,8 @@ static const char* DefProps[][23] = { { "eb3d680699f8762f71f38e28e321234d", "", "", "Fu Kung! (V0.01) (08-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eb503cc64c3560cd78b7051188b7ba56", "CCE", "", "Moto Laser (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "193", "", "", "" }, - { "eb6d6e22a16f30687ade526d7a6f05c5", "Atari", "CX26150", "Q-bert (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "4", "152", "53", "205", "", "", "" }, - { "eb92193f06b645df0b2a15d077ce435f", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "192", "Yes", "", "" }, + { "eb6d6e22a16f30687ade526d7a6f05c5", "Atari", "CX26150", "Q-bert (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "53", "205", "", "", "" }, + { "eb92193f06b645df0b2a15d077ce435f", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "192", "Yes", "", "" }, { "eb9f8b84c193d9d93a58fca112aa39ed", "", "", "Register Twiddler Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, { "ebf9038e927e6a0db3e0d170c59911e6", "", "", "Pac-2600 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "202", "", "", "" }, { "ec3beb6d8b5689e867bafb5d5f507491", "US Games", "VC 1003", "Word Zapper (1982) (US Games) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3939,7 +3939,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee84bdc5dae268e227e407c7b5e6b6b7", "", "", "Marilyn Monroe Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eea0da9b987d661264cce69a7c13c3bd", "CBS Electronics", "4L-2277", "Zaxxon (1983) (CBS Electronics)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "eec61cc4250df70939d48fe02d7122ac", "Activision", "AG-005", "Skiing (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "206", "", "", "" }, + { "eec61cc4250df70939d48fe02d7122ac", "Activision", "AG-005", "Skiing (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "206", "", "", "" }, { "eee7695ae3eea7818321df0b790b31f3", "", "", "Sound Paddle V2 (Dennis Caswell & Jim Nitchals) (PD)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "ef3a4f64b6494ba770862768caf04b86", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "194", "", "", "" }, { "ef60b06fddb675b0d783afbfa5fc5232", "", "", "Many Blue Bars and Text Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "", "" }, @@ -3947,9 +3947,9 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "efb47d70b2965ce689e2c5757616b286", "", "", "Time Test Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "36", "192", "", "", "" }, + { "efb47d70b2965ce689e2c5757616b286", "", "", "Time Test Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, { "efefc02bbc5258815457f7a5b8d8750a", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "67", "153", "", "", "" }, - { "f02ba8b5292bf3017d10553c9b7b2861", "Atari", "", "Xenophobe (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "60", "", "", "", "" }, + { "f02ba8b5292bf3017d10553c9b7b2861", "Atari", "", "Xenophobe (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, { "f047df70d3d08e331122cd2de61d6af8", "Dave Neuman", "", "Space Battle (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0541d2f7cda5ec7bab6d62b6128b823", "Atari", "", "Bionic Breakthrough (1984) (Atari) (Prototype)", "Uses Mindlink Controller (left only)", "Prototype", "", "", "", "", "", "", "Mindlink", "None", "", "", "", "", "36", "196", "", "", "" }, { "f0631c6675033428238408885d7e4fde", "Paul Slocum", "", "Test Cart (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -3958,7 +3958,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0daaa966199ef2b49403e9a29d12c50", "", "PG209", "Mr. Postman (1983) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f10e3f45fb01416c87e5835ab270b53a", "", "TP-607", "Ski Run (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "53", "190", "", "", "" }, + { "f10e3f45fb01416c87e5835ab270b53a", "", "TP-607", "Ski Run (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "53", "190", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f1489e27a4539a0c6c8529262f9f7e18", "Champ Games", "", "Lady Bug (PAL60)", "", "Homebrew", "", "", "", "A", "", "", "", "", "", "PAL60", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3970,11 +3970,11 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f20bd756f3990e06c492f53cd0168e68", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f240ba9f8092d2e8a4c7d82c554bf509", "", "", "Strahlen der Teufelsvoegel (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "64", "", "", "", "" }, + { "f240ba9f8092d2e8a4c7d82c554bf509", "", "", "Strahlen der Teufelsvoegel (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f2f2cb35fdef063c966c1f5481050ea2", "Telegames", "", "Ram It (1982) (Telegames) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "", "", "" }, + { "f2f2cb35fdef063c966c1f5481050ea2", "Telegames", "", "Ram It (1982) (Telegames) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f33f1d0f7819c74148dacb48cbf1c597", "Retroactive", "", "Qb (2.00) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "f34dd3b8156aaf113cb621b2e51d90b8", "Joe Grand", "", "SCSIcide Pre-release 5 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3992,7 +3992,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f542b5d0193a3959b54f3c4c803ba242", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, - { "f5a2f6efa33a3e5541bc680e9dc31d5b", "Starsoft", "", "Motocross (Starsoft) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "45", "249", "", "", "" }, + { "f5a2f6efa33a3e5541bc680e9dc31d5b", "Starsoft", "", "Motocross (Starsoft) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "45", "249", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f613aad84d2163d6b197b220bfec1b7e", "", "", "X-Doom V.27 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, { "f69a39b215852a0c2764d2a923c1e463", "", "", "Move a Blue Blob Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -4000,7 +4000,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f6d512bef1bf253dc935d0e13c3d1462", "Atari", "", "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "61", "", "", "", "" }, + { "f6d512bef1bf253dc935d0e13c3d1462", "Atari", "", "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, { "f6efa00ae99aaf33e427b674bcfd834d", "", "", "2600 Digital Clock (Demo 3) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f724d3dd2471ed4cf5f191dbb724b69f", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari)", "Console ports are swapped", "Common", "", "", "", "", "", "Yes", "", "", "", "", "", "", "37", "192", "", "", "" }, @@ -4009,13 +4009,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f777444fc21a5925e066b68b1d350575", "", "", "Marble Craze (Kernel Works) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f78c125b5da483c41e51522947d6c4ce", "", "", "Sound Paddle V1 (Dennis Caswell & Jim Nitchals) (PD)", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, - { "f7af41a87533524d9a478575b0d873d0", "Parker Bros", "PB5900", "Spider-Man (1982) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "51", "", "", "", "" }, + { "f7af41a87533524d9a478575b0d873d0", "Parker Bros", "PB5900", "Spider-Man (1982) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "51", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f802fa61011dd9eb6f80b271bac479d0", "Starsoft", "", "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "61", "", "", "", "" }, + { "f802fa61011dd9eb6f80b271bac479d0", "Starsoft", "", "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f844f4c6f3baaaf5322657442d6f29eb", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "43", "229", "", "", "" }, - { "f8582bc6ca7046adb8e18164e8cecdbc", "HomeVision", "", "Panda Chase (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "30", "256", "", "", "" }, + { "f844f4c6f3baaaf5322657442d6f29eb", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "229", "", "", "" }, + { "f8582bc6ca7046adb8e18164e8cecdbc", "HomeVision", "", "Panda Chase (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "256", "", "", "" }, { "f8ad87b3ecfc04c9e76d2cebef76a6cb", "", "", "Greeting Cart Carmon (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -4028,13 +4028,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f992a39b46aa48188fab12ad3809ae4a", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "63", "191", "", "", "" }, + { "f992a39b46aa48188fab12ad3809ae4a", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "191", "", "", "" }, { "f9d51a4e5f8b48f68770c89ffd495ed1", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "41", "191", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fa2be8125c3c60ab83e1c0fe56922fcb", "DSD-Camelot", "", "Tooth Protectors (DSD-Camelot)", "", "Unbelievably Rare", "", "E0", "", "", "", "", "", "", "", "", "", "", "26", "220", "Yes", "", "" }, + { "fa2be8125c3c60ab83e1c0fe56922fcb", "DSD-Camelot", "", "Tooth Protectors (DSD-Camelot)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "26", "220", "Yes", "", "" }, { "fa3de71841c0841db6a741884a6b6b2f", "", "", "Warring Worms (17-02-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fa447e4e2f0d5e67cbf0b060fac5944c", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, { "fa6fe97a10efb9e74c0b5a816e6e1958", "Zimag", "707-111", "Tanks But No Tanks (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, @@ -4095,10 +4095,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "feec54aac911887940b47fe8c9f80b11", "Atari", "CX2633", "Night Driver (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "", "240", "Yes", "", "" }, - { "ff3bd0c684f7144aeaa18758d8281a78", "Atari", "", "Blackjack (1977) (Atari) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "PAL", "", "", "49", "240", "", "", "" }, + { "feec54aac911887940b47fe8c9f80b11", "Atari", "CX2633", "Night Driver (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "240", "Yes", "", "" }, + { "ff3bd0c684f7144aeaa18758d8281a78", "Atari", "", "Blackjack (1977) (Atari) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "49", "240", "", "", "" }, { "ff5a9e340d96df6f5a5b6eb038e923bd", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ff86fc8ffa717bb095e8471638c1c31c", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "PAL", "", "", "50", "", "", "", "" }, + { "ff86fc8ffa717bb095e8471638c1c31c", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "50", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, diff --git a/stella/src/emucore/OSystem.cxx b/stella/src/emucore/OSystem.cxx index 4292ee467..41cf52a1b 100644 --- a/stella/src/emucore/OSystem.cxx +++ b/stella/src/emucore/OSystem.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystem.cxx,v 1.83 2006-12-22 23:14:39 stephena Exp $ +// $Id: OSystem.cxx,v 1.84 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -385,7 +385,9 @@ bool OSystem::createConsole(const string& romfile) if(showmessage) myFrameBuffer->showMessage("New console created"); if(mySettings->getBool("showinfo")) - cout << "Game console created: " << myRomFile << endl; + cout << "Game console created:" << endl + << " ROM file: " << myRomFile << endl + << myConsole->about() << endl; retval = true; } @@ -522,6 +524,36 @@ bool OSystem::openROM(const string& rom, string& md5, uInt8** image, int* size) return true; } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +string OSystem::getROMInfo(const string& romfile) +{ + ostringstream buf; + Console* console = (Console*) NULL; + + // Open the cartridge image and read it in + uInt8* image; + int size = -1; + string md5; + if(openROM(romfile, md5, &image, &size)) + { + // Create a temporary instance of the 2600 game console + console = new Console(image, size, md5, this); + if(console && console->isValid()) + buf << console->about(); + else + buf << "ERROR: Couldn't get ROM info for " << romfile << " ..." << endl; + } + else + buf << "ERROR: Couldn't open " << romfile << " ..." << endl; + + // Free the image and console since we don't need it any longer + delete console; + if(size != -1) + delete[] image; + + return buf.str(); +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void OSystem::setDefaultJoymap() { diff --git a/stella/src/emucore/OSystem.hxx b/stella/src/emucore/OSystem.hxx index 9323f4bf5..7ae160959 100644 --- a/stella/src/emucore/OSystem.hxx +++ b/stella/src/emucore/OSystem.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystem.hxx,v 1.47 2006-12-18 14:01:58 stephena Exp $ +// $Id: OSystem.hxx,v 1.48 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #ifndef OSYSTEM_HXX @@ -45,7 +45,7 @@ class VideoDialog; other objects belong. @author Stephen Anthony - @version $Id: OSystem.hxx,v 1.47 2006-12-18 14:01:58 stephena Exp $ + @version $Id: OSystem.hxx,v 1.48 2006-12-26 00:39:44 stephena Exp $ */ class OSystem { @@ -252,6 +252,15 @@ class OSystem */ void createLauncher(); + /** + Gets all possible info about the ROM by creating a temporary + Console object and querying it. + + @param romfile The full pathname of the ROM to use + @return Some information about this ROM + */ + string getROMInfo(const string& romfile); + /** The features which are conditionally compiled into Stella. diff --git a/stella/src/emucore/Props.cxx b/stella/src/emucore/Props.cxx index 71aa9bcc4..f66fff304 100644 --- a/stella/src/emucore/Props.cxx +++ b/stella/src/emucore/Props.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Props.cxx,v 1.17 2006-12-09 00:25:20 stephena Exp $ +// $Id: Props.cxx,v 1.18 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -294,7 +294,7 @@ const char* Properties::ourDefaultProperties[LastPropType] = { "JOYSTICK", // Controller.Left "JOYSTICK", // Controller.Right "NO", // Controller.SwapPaddles - "NTSC", // Display.Format + "AUTO-DETECT", // Display.Format "0", // Display.XStart "160", // Display.Width "34", // Display.YStart diff --git a/stella/src/emucore/Settings.cxx b/stella/src/emucore/Settings.cxx index 92dc65fbf..e86169e77 100644 --- a/stella/src/emucore/Settings.cxx +++ b/stella/src/emucore/Settings.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Settings.cxx,v 1.106 2006-12-22 22:32:49 stephena Exp $ +// $Id: Settings.cxx,v 1.107 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -176,6 +176,11 @@ bool Settings::loadCommandLine(int argc, char** argv) setExternal(key, "true"); return true; } + else if(key == "rominfo") + { + setExternal(key, "true"); + return true; + } else if(key == "debug") // this doesn't make Stella exit { setExternal(key, "true"); @@ -348,6 +353,7 @@ void Settings::usage() << " -sssingle <1|0> Generate single snapshot instead of many\n" << endl << " -listrominfo Display contents of stella.pro, one line per ROM entry\n" + << " -rominfo Display detailed information for the given ROM\n" << " -help Show the text you're now reading\n" #ifdef DEBUGGER_SUPPORT << endl diff --git a/stella/src/emucore/TIA.cxx b/stella/src/emucore/TIA.cxx index 0004e33f4..f0bb4ed63 100644 --- a/stella/src/emucore/TIA.cxx +++ b/stella/src/emucore/TIA.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: TIA.cxx,v 1.74 2006-12-15 16:43:02 stephena Exp $ +// $Id: TIA.cxx,v 1.75 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -237,7 +237,7 @@ void TIA::reset() myFrameWidth = 160; } - if(myConsole.properties().get(Display_Format).compare(0, 3, "PAL") == 0) + if(myConsole.getFormat().compare(0, 3, "PAL") == 0) { myColorLossEnabled = true; myMaximumNumberOfScanlines = 342; diff --git a/stella/src/emucore/stella.pro b/stella/src/emucore/stella.pro index 4d8188e78..7b451d59b 100644 --- a/stella/src/emucore/stella.pro +++ b/stella/src/emucore/stella.pro @@ -16,14 +16,12 @@ "Cartridge.Name" "3E Bankswitch Test (TIA @ $40)" "Cartridge.Manufacturer" "Kroko" "Cartridge.Type" "3E" -"Display.Format" "PAL" "" "Cartridge.MD5" "792b1d93eb1d8045260c840b0688ec8f" "Cartridge.Name" "3E Bankswitch Test (TIA @ $00)" "Cartridge.Manufacturer" "Kroko" "Cartridge.Type" "3E" -"Display.Format" "PAL" "" "Cartridge.MD5" "0685bd0bcb975ceef7041749a5454a48" @@ -37,7 +35,6 @@ "Cartridge.MD5" "02a5fc90a0d183f870e8eebac1f16591" "Cartridge.Name" "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "246" "Display.YStart" "41" "" @@ -73,7 +70,6 @@ "Cartridge.MD5" "008543ae43497af015e9428a5e3e874e" "Cartridge.Name" "Qb (V2.09) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -95,7 +91,6 @@ "Cartridge.MD5" "00ce76ad69cdc2fa36ada01ae092d5a6" "Cartridge.Name" "Cosmic Avenger (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -115,7 +110,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2639" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "57" "" @@ -124,7 +118,6 @@ "Cartridge.Name" "Time Race (Rainbow Vision) (PAL) [!]" "Display.YStart" "64" "Display.Height" "222" -"Display.Format" "PAL" "" "Cartridge.MD5" "028024fb8e5e5f18ea586652f9799c96" @@ -145,7 +138,6 @@ "Cartridge.MD5" "01b09872dcd9556427761f0ed64aa42a" "Cartridge.Name" "Galaga (River Raid clone) [p1]" -"Display.Format" "PAL" "Display.Height" "202" "Display.Width" "152" "Display.XStart" "8" @@ -181,12 +173,10 @@ "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" "Display.YStart" "48" -"Display.Format" "PAL" "" "Cartridge.MD5" "01293bd90a4579abb7aed2f7d440681f" "Cartridge.Name" "Snoopy (1983) (Century) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "43" "Display.Height" "229" "Display.Width" "152" @@ -198,7 +188,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2667" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "250" "Display.YStart" "56" "" @@ -221,7 +210,6 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33383" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "67" "" @@ -250,7 +238,6 @@ "Console.LeftDifficulty" "A" "Console.RightDifficulty" "A" "Controller.Right" "None" -"Display.Format" "PAL" "Display.Height" "182" "Display.Width" "152" "Display.XStart" "4" @@ -279,7 +266,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5300" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "229" "Display.Width" "152" "Display.XStart" "4" @@ -290,7 +276,6 @@ "Cartridge.Name" "Laseresal 2002 (PAL-49) (PD)" "Cartridge.Manufacturer" "Andrew Wallace" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.YStart" "47" "Display.Height" "241" "" @@ -313,7 +298,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4518" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E7" "Display.Height" "180" "Display.YStart" "31" "" @@ -364,7 +348,6 @@ "Cartridge.MD5" "047ac3b9faea64522b7a23c4465a7aa8" "Cartridge.Name" "Defender (1981) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -387,7 +370,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "144" "Display.XStart" "8" @@ -399,7 +381,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26176" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "211" "Display.YStart" "64" "" @@ -407,7 +388,6 @@ "Cartridge.MD5" "04b488d4eef622d022a0021375e7e339" "Cartridge.Name" "Tennis (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "230" "Display.Width" "152" "Display.XStart" "8" @@ -427,7 +407,6 @@ "Cartridge.MD5" "04fccc7735155a6c1373d453b110c640" "Cartridge.Name" "My Golf (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "144" "Display.XStart" "8" @@ -440,7 +419,6 @@ "Cartridge.MD5" "056ff67dd9715fafa91fb8b0ddcc4a46" "Cartridge.Name" "Brick Kick (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "230" "" @@ -453,7 +431,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -469,7 +446,6 @@ "Cartridge.MD5" "05ccf96247af12eef59698f1a060a54f" "Cartridge.Name" "King Arthur (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "41" "" @@ -493,7 +469,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "144" "Display.XStart" "8" @@ -502,14 +477,12 @@ "Cartridge.MD5" "05c60458ec69e7fe8b1be973852d84f1" "Cartridge.Name" "Test (1996) (J.V. Matthews) (PD)" -"Display.Format" "PAL" "Display.YStart" "56" "Display.Height" "194" "" "Cartridge.MD5" "05eb4347f0ec8f4783983ca35ffd8d1b" "Cartridge.Name" "Qb (2.06) (Retroactive) (PAL)" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -536,7 +509,6 @@ "Cartridge.MD5" "1862fca4f98e66f363308b859b5863af" "Cartridge.Name" "128-in-1 Junior Console (Chip 1) (PAL) [!]" -"Display.Format" "PAL" "Display.Height" "184" "Display.Width" "152" "Display.XStart" "8" @@ -545,7 +517,6 @@ "Cartridge.MD5" "0d6b974fe58a1bdd453600401c407856" "Cartridge.Name" "128-in-1 Junior Console (Chip 3) (PAL) [!]" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "50" @@ -558,7 +529,6 @@ "Cartridge.MD5" "06cfd57f0559f38b9293adae9128ff88" "Cartridge.Name" "Adventures on GX-12 (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "152" "Display.XStart" "8" @@ -570,7 +540,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-023" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -585,7 +554,6 @@ "Cartridge.Name" "Bermuda (PAL)" "Cartridge.ModelNo" "SS-009" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -595,7 +563,6 @@ "Cartridge.MD5" "06db908011065e5ebb37f4e253c2a0b0" "Cartridge.Name" "Gopher (1982) (US Games) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "" @@ -603,13 +570,11 @@ "Cartridge.MD5" "071f84d10b343c7c05ce3e32af631687" "Cartridge.Name" "Krieg Der Sterne (Atlantis-Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Atlantis-Ariola" -"Display.Format" "PAL" "" "Cartridge.MD5" "06e5dc181a8eda1c31cc7c581c68b6ef" "Cartridge.Name" "Tac Scan (1982) (Sega) (PAL) [p1][!]" "Cartridge.Manufacturer" "Sega" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -628,7 +593,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2650 / 4975168" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "191" "Display.Width" "152" "Display.XStart" "4" @@ -642,7 +606,6 @@ "Cartridge.MD5" "07973be3ecfd55235bf59aa56bdef28c" "Cartridge.Name" "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "57" @@ -654,7 +617,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26162" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Format" "PAL" "Display.Height" "178" "Display.Width" "152" "Display.YStart" "70" @@ -666,7 +628,6 @@ "Cartridge.MD5" "0751f342ee4cf28f2c9a6e8467c901be" "Cartridge.Name" "Super Baseball (1988) (Atari) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "50" "Display.Height" "220" "" @@ -707,7 +668,6 @@ "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]" "Cartridge.ModelNo" "2451" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -755,7 +715,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3600" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "218" "Display.YStart" "50" "" @@ -765,7 +724,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5340" "Cartridge.Rarity" "Uncommon" -"Cartridge.Type" "E0" "" "Cartridge.MD5" "0890a5b089191f45d0f08dd1e3235687" @@ -777,7 +735,6 @@ "Cartridge.Manufacturer" "Carrere Video" "Cartridge.ModelNo" "VC 1012" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "193" "Display.YStart" "57" "" @@ -789,7 +746,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "55" "" @@ -797,14 +753,12 @@ "Cartridge.MD5" "08bd4c1dcc843f6a0b563d9fd80b3b11" "Cartridge.Name" "Phantom Panzer II (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "212" "Display.YStart" "57" "" "Cartridge.MD5" "08d60a58a691c7f690162850302dc0e1" "Cartridge.Name" "Poker Squares (V0.27) (PAL) (2001) (B. Watson)" -"Display.Format" "PAL" "Display.YStart" "45" "" @@ -835,7 +789,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2602" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "39" "" @@ -862,7 +815,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2654" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "152" "Display.XStart" "8" @@ -893,7 +845,6 @@ "Cartridge.MD5" "0945081a6bd00345ff3d58eb7a07330a" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -923,7 +874,6 @@ "Cartridge.MD5" "097936b07e0e0117b9026ae6835eb168" "Cartridge.Name" "Trick Shot (1982) (Imagic) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "53" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -953,7 +903,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3201" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -1001,12 +950,10 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-001" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "" "Cartridge.MD5" "0afe6ae18966795b89314c3797dd2b1e" "Cartridge.Name" "Moon Patrol (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "189" "Display.Width" "152" @@ -1064,7 +1011,6 @@ "Cartridge.MD5" "0b577e63b0c64f9779f315dca8967587" "Cartridge.Name" "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]" "Cartridge.Manufacturer" "Ariola" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -1094,7 +1040,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-001" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "53" "" @@ -1121,7 +1066,6 @@ "Cartridge.MD5" "0cebb0bb45a856b23f56d21ce7d1bc34" "Cartridge.Name" "Crash Dive (1983) (20th Century Fox) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "47" "Display.Height" "240" "" @@ -1149,7 +1093,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "243" "Display.YStart" "37" "" @@ -1171,7 +1114,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26151" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "185" "Display.YStart" "64" "Emulation.HmoveBlanks" "No" @@ -1181,7 +1123,6 @@ "Cartridge.MD5" "0d1b3abf681a2fc9a6aa31a9b0e8b445" "Cartridge.Name" "Laser Blast (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "55" @@ -1240,7 +1181,6 @@ "Cartridge.Name" "Acid Drop (1992) (Salu) (PAL) [!]" "Cartridge.Manufacturer" "Salu" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "255" "Display.YStart" "52" "" @@ -1269,7 +1209,6 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33391" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "214" "Display.YStart" "67" "" @@ -1277,7 +1216,6 @@ "Cartridge.MD5" "0fcff6fe3b0769ad5d0cf82814d2a6d9" "Cartridge.Name" "Aufruhr im Zoo (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "152" "Display.XStart" "8" @@ -1301,7 +1239,6 @@ "Cartridge.MD5" "0de53160a8b54c3aa5aed8d68c970b62" "Cartridge.Name" "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "182" "Display.Width" "152" "Display.XStart" "8" @@ -1313,7 +1250,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-001" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "211" "Display.YStart" "53" "" @@ -1326,7 +1262,6 @@ "Cartridge.Name" "Cakewalk (PAL Conversion) (Fabrizio Zavagli)" "Cartridge.Manufacturer" "Fabrizio Zavagli / CommaVid" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Format" "PAL" "Display.YStart" "27" "" @@ -1341,14 +1276,12 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.YStart" "50" "" "Cartridge.MD5" "0ef64cdbecccb7049752a3de0b7ade14" "Cartridge.Name" "Combat (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "39" "" @@ -1397,7 +1330,6 @@ "Cartridge.MD5" "0f8043715d66a4bbed394ef801d99862" "Cartridge.Name" "Robin Hood (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "206" "Display.YStart" "64" "" @@ -1405,7 +1337,6 @@ "Cartridge.MD5" "0fbf618be43d4396856d4244126fe7dc" "Cartridge.Name" "Labyrinth (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "180" "Display.YStart" "64" "" @@ -1424,7 +1355,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3204" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "" @@ -1444,7 +1374,6 @@ "Cartridge.MD5" "1228c01cd3c4b9c477540c5adb306d2a" "Cartridge.Name" "Basketball (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -1491,7 +1420,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-015" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -1509,14 +1437,12 @@ "Cartridge.MD5" "10f62443f1ae087dc588a77f9e8f43e9" "Cartridge.Name" "Dodge 'em (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "" "Cartridge.MD5" "10a3cd14e5dcfdde6ff216a14ce7b7dd" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "152" "Display.XStart" "8" @@ -1534,7 +1460,6 @@ "Cartridge.MD5" "11330eaa5dd2629052fac37cfe1a0b7d" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "128-in-1 Junior Console" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "" @@ -1572,7 +1497,6 @@ "Cartridge.Name" "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-013" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "42" "" @@ -1582,7 +1506,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3611" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "211" "Display.YStart" "58" "" @@ -1592,7 +1515,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-034-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "233" "Display.Width" "152" "Display.XStart" "8" @@ -1641,7 +1563,6 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100250" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -1649,7 +1570,6 @@ "Cartridge.MD5" "130c5742cd6cbe4877704d733d5b08ca" "Cartridge.Name" "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Format" "PAL" "Display.Height" "239" "" @@ -1668,7 +1588,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26168" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "32" "" @@ -1718,7 +1637,6 @@ "Cartridge.MD5" "13a991bc9c2ff03753aeb322d3e3e2e5" "Cartridge.Name" "Galactic (G) (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "64" "" @@ -1728,7 +1646,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2684" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "144" "Display.XStart" "8" @@ -1745,7 +1662,6 @@ "Cartridge.MD5" "13aa1f9ac4249947e4af61319d9a08f2" "Cartridge.Name" "RealSports Tennis (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "152" "Display.XStart" "8" @@ -1808,7 +1724,6 @@ "Cartridge.MD5" "1428029e762797069ad795ce7c6a1a93" "Cartridge.Name" "Thunderground (1983) (Sega) (PAL) [p1][!]" "Cartridge.Manufacturer" "Sega" -"Display.Format" "PAL" "Display.YStart" "49" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -1829,11 +1744,11 @@ "Cartridge.MD5" "14dbb3686dd31964332dc2ef0c55cad0" "Cartridge.Name" "Demo Image Series #15 - Three Marios (PAL) (Non-Interleave) (06-03-2003) (AD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "14d365bbfaac3d20c6119591f57acca4" "Cartridge.Name" "Video Life (CommaVid) [h1]" +"Cartridge.Type" "CV" "Display.Phosphor" "Yes" "" @@ -1843,7 +1758,6 @@ "Cartridge.MD5" "153f40e335e5cb90f5ce02e54934ab62" "Cartridge.Name" "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "184" "Display.Width" "152" @@ -1867,7 +1781,6 @@ "Cartridge.MD5" "155fa7f479dcba3b10b1494e236d6010" "Cartridge.Name" "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]" -"Display.Format" "PAL" "Display.YStart" "57" "Display.Height" "195" "Display.Width" "152" @@ -1964,7 +1877,6 @@ "Cartridge.MD5" "169d4c7bd3a4d09e184a3b993823d048" "Cartridge.Name" "Superman (1978) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "" "Cartridge.MD5" "170e7589a48739cfb9cc782cbb0fe25a" @@ -1990,7 +1902,6 @@ "Cartridge.MD5" "16e04823887c547dc24bc70dff693df4" "Cartridge.Name" "Tennis (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -2015,7 +1926,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2676" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "144" "Display.XStart" "8" @@ -2085,7 +1995,6 @@ "Cartridge.MD5" "17ee158d15e4a34f57a837bc1ce2b0ce" "Cartridge.Name" "Joust (1982) (Atari) (PAL) [a1][!]" "Display.YStart" "64" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -2107,7 +2016,6 @@ "Cartridge.MD5" "183020a80848e06a1238a1ab74079d52" "Cartridge.Name" "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)" -"Display.Format" "PAL" "Display.YStart" "40" "Display.Height" "256" "Display.Phosphor" "Yes" @@ -2115,21 +2023,18 @@ "Cartridge.MD5" "715dd9e0240638d441a3add49316c018" "Cartridge.Name" "128-in-1 Junior Console (Chip 2) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "50" "" "Cartridge.MD5" "5b9c2e0012fbfd29efd3306359bbfc4a" "Cartridge.Name" "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "222" "Display.YStart" "49" "" "Cartridge.MD5" "2e842c2ee22e9dad9df16eed091315c4" "Cartridge.Name" "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "39" "Display.Height" "250" "" @@ -2137,7 +2042,6 @@ "Cartridge.MD5" "291bcdb05f2b37cdf9452d2bf08e0321" "Cartridge.Name" "32-in-1 (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "" "Cartridge.MD5" "1d1d2603ec139867c1d1f5ddf83093f1" @@ -2151,7 +2055,6 @@ "Cartridge.MD5" "19abaf2144b6a7b281c4112cff154904" "Cartridge.Name" "Asteroids (1979) (Atari) (PAL) [a2][!]" -"Display.Format" "PAL" "Display.YStart" "44" "Display.Height" "220" "Display.Phosphor" "Yes" @@ -2164,7 +2067,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "59" "" @@ -2175,7 +2077,6 @@ "Cartridge.MD5" "18dc28bc22402f21e1c9b81344b3b8c5" "Cartridge.Name" "Galaxian (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "" @@ -2184,7 +2085,6 @@ "Cartridge.Name" "Gunfight 2600 (MP) (PAL)" "Cartridge.Manufacturer" "Manuel Polik" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "61" "" @@ -2230,7 +2130,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2636" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "243" "Display.Width" "152" "Display.XStart" "8" @@ -2239,7 +2138,6 @@ "Cartridge.MD5" "199985cae1c0123ab1aef921daace8be" "Cartridge.Name" "Euchre (Release Candidate 2) (PAL) (01-10-2002) (Erik Eid)" -"Display.Format" "PAL" "" "Cartridge.MD5" "199eb0b8dce1408f3f7d46411b715ca9" @@ -2267,7 +2165,6 @@ "Cartridge.MD5" "1bf503c724001b09be79c515ecfcbd03" "Cartridge.Name" "Bumper Bash (1983) (Spectravideo) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo" -"Display.Format" "PAL" "Display.Height" "226" "Display.YStart" "64" "" @@ -2283,7 +2180,6 @@ "Cartridge.MD5" "1bb91bae919ddbd655fa25c54ea6f532" "Cartridge.Name" "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "187" "Display.Width" "152" "Display.XStart" "8" @@ -2299,7 +2195,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5664" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "" @@ -2309,7 +2204,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26117" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "63" "" @@ -2351,7 +2245,6 @@ "Cartridge.MD5" "1b8d35d93697450ea26ebf7ff17bd4d1" "Cartridge.Name" "Marineflieger (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "235" "Display.Width" "152" "Display.XStart" "8" @@ -2363,7 +2256,6 @@ "Cartridge.Manufacturer" "HomeVision" "Cartridge.ModelNo" "1" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "235" "Display.Phosphor" "Yes" "" @@ -2390,7 +2282,6 @@ "Cartridge.MD5" "1c5796d277d9e4df3f6648f7012884c4" "Cartridge.Name" "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -2420,7 +2311,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2659" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "193" "Display.YStart" "64" "Cartridge.Note" "Console ports are swapped" @@ -2450,7 +2340,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2624" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "206" "Display.Width" "152" "Display.XStart" "8" @@ -2462,7 +2351,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT7045" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E7" "Display.Height" "188" "Display.YStart" "41" "" @@ -2472,7 +2360,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-206" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "152" "Display.XStart" "4" @@ -2486,7 +2373,6 @@ "Cartridge.MD5" "1d2a28eb8c95da0d6d6b18294211839f" "Cartridge.Name" "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "184" "Display.Width" "144" "Display.XStart" "8" @@ -2521,7 +2407,6 @@ "Cartridge.MD5" "1e0ef01e330e5b91387f75f700ccaf8f" "Cartridge.Name" "Mein Weg (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "240" "" @@ -2570,7 +2455,6 @@ "Cartridge.MD5" "1e89f722494608d6ea15a00d99f81337" "Cartridge.Name" "River Raid (1982) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "152" "Display.XStart" "8" @@ -2596,7 +2480,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5360" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "152" "Display.XStart" "4" @@ -2608,7 +2491,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -2621,7 +2503,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2675" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "Emulation.HmoveBlanks" "No" @@ -2643,7 +2524,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2678" "Cartridge.Rarity" "Prototype" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "27" "" @@ -2674,7 +2554,6 @@ "Cartridge.MD5" "1f5a2927a0b2faf87540b01d9d7d7fd1" "Cartridge.Name" "Tennis (Pet Boat) (PAL) [p1][!]" "Cartridge.Manufacturer" "Pet Boat" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -2720,7 +2599,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-007" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "61" @@ -2730,7 +2608,6 @@ "Cartridge.MD5" "203b1efc6101d4b9d83bb6cc1c71f67f" "Cartridge.Name" "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "224" "Display.YStart" "49" "Display.Phosphor" "Yes" @@ -2744,7 +2621,6 @@ "Cartridge.MD5" "2091af29b4e7b86914d79d9aaa4cbd20" "Cartridge.Name" "Donkey Kong Junior (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -2788,7 +2664,6 @@ "Cartridge.Name" "Forest (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "251" "Display.Width" "152" "Display.XStart" "8" @@ -2806,7 +2681,6 @@ "Cartridge.MD5" "2124cf92978c46684b6c39ccc2e33713" "Cartridge.Name" "Sea Monster (Bitcorp) (PAL) [p1][!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -2824,7 +2698,6 @@ "Cartridge.MD5" "2319922df4d0c820b3e5f15faa870cc3" "Cartridge.Name" "Battlezone (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "152" "Display.XStart" "8" @@ -2835,7 +2708,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2677" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "216" "Display.Width" "144" "Display.XStart" "8" @@ -2887,7 +2759,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2605" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "61" "" @@ -2906,7 +2777,6 @@ "Cartridge.MD5" "22b22c4ce240303012e8a9596ae8d189" "Cartridge.Name" "Skeleton+ (03-05-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -2945,7 +2815,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2459" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "59" "Display.Phosphor" "Yes" @@ -2956,7 +2825,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2486" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "52" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -2978,7 +2846,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-002" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "140" "Display.XStart" "8" @@ -3024,7 +2891,6 @@ "Cartridge.MD5" "244c6de27faff527886fc7699a41c3be" "Cartridge.Name" "Matt Demo (PD)" -"Display.Format" "PAL" "Display.Height" "193" "Display.YStart" "56" "" @@ -3061,7 +2927,6 @@ "Cartridge.MD5" "247fa1a29ad90e64069ee13d96fea6d6" "Cartridge.Name" "Radar (CCE) (PAL) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "" @@ -3070,7 +2935,6 @@ "Cartridge.Name" "Home Run (1978) (PAL) [p1][a1][!]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "152" "Display.XStart" "8" @@ -3082,7 +2946,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2465" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "60" "" @@ -3104,7 +2967,6 @@ "Cartridge.MD5" "2517827950fee41a3b9de60275c8aa6a" "Cartridge.Name" "Fishing Derby (1980) (Activision) [p1]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "188" "Display.Width" "144" "Display.XStart" "8" @@ -3130,7 +2992,6 @@ "Cartridge.MD5" "2516f4f4b811ede4ecf6fbeb5d54a299" "Cartridge.Name" "Schiessbude (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "215" "Display.YStart" "48" "" @@ -3150,7 +3011,6 @@ "Cartridge.MD5" "25a21c47afe925a3ca0806876a2b4f3f" "Cartridge.Name" "Der kleine Baer (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -3167,7 +3027,6 @@ "Cartridge.MD5" "25b52bf8dd215bcbd59c9abdb55c44f8" "Cartridge.Name" "Pole Position (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "43" "Display.Height" "190" "" @@ -3182,7 +3041,6 @@ "Cartridge.MD5" "25bb080457351be724aac8a02021aa92" "Cartridge.Name" "Zaxxon (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "57" "" @@ -3223,7 +3081,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26154" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "152" "Display.XStart" "4" @@ -3251,7 +3108,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -3291,7 +3147,6 @@ "Cartridge.MD5" "282a77841cb3d33af5b56151acba770e" "Cartridge.Name" "Black Hole (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -3301,7 +3156,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG206" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "45" "" @@ -3320,7 +3174,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "38" "Emulation.HmoveBlanks" "No" @@ -3341,7 +3194,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5590" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -3357,7 +3209,6 @@ "Cartridge.Name" "Night Stalker (Telegames) (PAL) [a1]" "Cartridge.Manufacturer" "Telegames" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "206" "Display.Width" "152" "Display.XStart" "8" @@ -3393,7 +3244,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "64" "Display.Width" "152" @@ -3422,7 +3272,6 @@ "Cartridge.MD5" "283dee88f295834c4c077d788f151125" "Cartridge.Name" "Qb (2.11) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -3433,7 +3282,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG204" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -3523,7 +3371,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26123" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "180" "Display.YStart" "64" "Emulation.HmoveBlanks" "No" @@ -3553,7 +3400,6 @@ "Cartridge.MD5" "2a2f46b3f4000495239cbdad70f17c59" "Cartridge.Name" "Cosmic Swarm (1982) (CommaVid) (PAL) [!]" "Cartridge.Manufacturer" "CommaVid" -"Display.Format" "PAL" "Display.YStart" "57" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -3569,7 +3415,6 @@ "Cartridge.MD5" "2cb42cf62b2f25f59f909b5447821b14" "Cartridge.Name" "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "46" "Display.Height" "227" "" @@ -3577,7 +3422,6 @@ "Cartridge.MD5" "2c45c3eb819a797237820a1816c532eb" "Cartridge.Name" "Boxing (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "208" "Display.Width" "140" "Display.XStart" "8" @@ -3591,7 +3435,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "247" "Display.YStart" "62" "" @@ -3608,13 +3451,11 @@ "Cartridge.MD5" "2a9f9001540c55a302befd8e9d54b47b" "Cartridge.Name" "Mario Bros (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "53" "" "Cartridge.MD5" "2a360bc85bf22de438651cf92ffda1de" "Cartridge.Name" "Spy vs. Spy (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "152" "Display.XStart" "8" @@ -3635,7 +3476,6 @@ "Cartridge.Manufacturer" "Absolute" "Cartridge.ModelNo" "AK-046" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -3650,7 +3490,6 @@ "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" -"Display.Format" "PAL" "" "Cartridge.MD5" "2b71a59a53be5883399917bf582b7772" @@ -3688,7 +3527,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11020" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "56" "" @@ -3731,7 +3569,6 @@ "Cartridge.MD5" "2c3b2843295c9d6b16996971180a3fe9" "Cartridge.Name" "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]" -"Display.Format" "PAL" "Display.Height" "240" "Display.YStart" "40" "" @@ -3761,7 +3598,6 @@ "Cartridge.MD5" "2c8c11295d8613f875b7bcf5253ab9bb" "Cartridge.Name" "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)" -"Display.Format" "PAL" "Display.Height" "199" "" @@ -3793,7 +3629,6 @@ "Cartridge.MD5" "2d16a8b59a225ea551667be45f554652" "Cartridge.Name" "Der Geheimkurier (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "58" "" @@ -3806,7 +3641,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "144" "Display.XStart" "8" @@ -3840,7 +3674,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26170" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "136" "Display.XStart" "8" @@ -3882,7 +3715,6 @@ "Cartridge.MD5" "2e3728f3086dc3e71047ffd6b2d9f015" "Cartridge.Name" "Outlaw (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "58" "" @@ -3909,7 +3741,6 @@ "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "46" -"Display.Format" "PAL" "" "Cartridge.MD5" "2e7e9c6dcfcceaffc6fa73f0d08a402a" @@ -3919,7 +3750,6 @@ "Cartridge.MD5" "4d2cef8f19cafeec72d142e34a1bbc03" "Cartridge.Name" "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "246" "Display.YStart" "41" "" @@ -3943,7 +3773,6 @@ "Cartridge.Name" "Centipede (1982) (Atari) (Prototype) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Format" "PAL" "Display.Height" "197" "Display.Width" "144" "Display.XStart" "8" @@ -3955,7 +3784,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "144" "Display.XStart" "8" @@ -4039,7 +3867,6 @@ "Cartridge.MD5" "2facd460a6828e0e476d3ac4b8c5f4f7" "Cartridge.Name" "Sancho - Words (198x) (PAL)" -"Display.Format" "PAL" "Display.Height" "235" "" @@ -4085,7 +3912,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "229" "Display.YStart" "45" "" @@ -4097,7 +3923,6 @@ "Cartridge.MD5" "30997031b668e37168d4d0e299ccc46f" "Cartridge.Name" "John K Harvey's Equalizer (PAL) (PD)" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -4119,7 +3944,6 @@ "Cartridge.MD5" "313243fc41e49ef6bd3aa9ebc0d372dd" "Cartridge.Name" "Der Vielfrass (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -4163,7 +3987,6 @@ "Cartridge.MD5" "317a4cdbab090dcc996833d07cb40165" "Cartridge.Name" "Missile War (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "152" "Display.XStart" "8" @@ -4234,7 +4057,6 @@ "Cartridge.MD5" "31df1c50c4351e144c9a378adb8c10ba" "Cartridge.Name" "Die Ratte und die Karotten (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "64" "" @@ -4248,7 +4070,6 @@ "Cartridge.MD5" "321c3451129357af42a375d12afd4450" "Cartridge.Name" "Ikari Warriors (1990) (Atari) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "200" "Display.Width" "152" @@ -4293,7 +4114,6 @@ "Cartridge.Name" "Home Run (1978) (PAL) [p1][!]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "152" "Display.XStart" "8" @@ -4340,7 +4160,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5760" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Height" "192" "Display.YStart" "38" "" @@ -4350,7 +4169,6 @@ "Cartridge.Manufacturer" "Zellers / CCE" "Cartridge.ModelNo" "C-845" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "229" "Display.YStart" "28" "Display.Phosphor" "Yes" @@ -4397,7 +4215,6 @@ "Cartridge.MD5" "340f546d59e72fb358c49ac2ca8482bb" "Cartridge.Name" "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" -"Display.Format" "PAL" "Display.Height" "244" "Display.YStart" "43" "" @@ -4416,7 +4233,6 @@ "Cartridge.MD5" "345769d085113d57937198262af52298" "Cartridge.Name" "Space Raid (Rainbow Vision) (PAL) [!]" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -4426,7 +4242,6 @@ "Cartridge.MD5" "345758747b893e4c9bdde8877de47788" "Cartridge.Name" "Venture (1982) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Format" "PAL" "Display.YStart" "55" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -4438,7 +4253,6 @@ "Cartridge.ModelNo" "AX-016" "Cartridge.Note" "Use Color/BW switch to change between galactic chart and front views" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -4453,7 +4267,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -4486,7 +4299,6 @@ "Cartridge.Name" "Pharaoh's Curse (TechnoVision) (PAL) [!]" "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "237" "Display.YStart" "47" "Display.Phosphor" "Yes" @@ -4525,7 +4337,6 @@ "Cartridge.MD5" "372bddf113d088bc572f94e98d8249f5" "Cartridge.Name" "Breakdown (AKA Capture) (Dynamics-Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Dynamics-Goliath" -"Display.Format" "PAL" "" "Cartridge.MD5" "36f9a953ebdd9a8be97ccf27a2041903" @@ -4537,7 +4348,6 @@ "Cartridge.MD5" "36547bc6faa5132b87504e18d088e1d7" "Cartridge.Name" "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "CommaVid" -"Display.Format" "PAL" "Display.YStart" "57" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -4546,7 +4356,6 @@ "Cartridge.MD5" "3624e5568368929fabb55d7f9df1022e" "Cartridge.Name" "Double Dragon (1989) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "152" "Display.XStart" "8" @@ -4579,7 +4388,6 @@ "Cartridge.MD5" "367411b78119299234772c08df10e134" "Cartridge.Name" "Skiing (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -4608,7 +4416,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-210" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "216" "Display.YStart" "64" "" @@ -4626,7 +4433,6 @@ "Cartridge.MD5" "36edef446ab4c2395666efc672b92ed0" "Cartridge.Name" "Off the Wall (1989) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "207" "Display.YStart" "61" "" @@ -4653,7 +4459,6 @@ "Cartridge.MD5" "37527966823ee9243d34c7da8302774f" "Cartridge.Name" "Word Zapper (1982) (US Games) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -4681,7 +4486,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3203" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -4730,7 +4534,6 @@ "Cartridge.MD5" "3882224adbd0ca7c748b2a1c9b87263e" "Cartridge.Name" "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "200" "" @@ -4746,7 +4549,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "PG206" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "46" "" @@ -4774,7 +4576,6 @@ "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "212" "Display.YStart" "56" "" @@ -4795,7 +4596,6 @@ "Cartridge.MD5" "391764720140c432aec454a468f77a40" "Cartridge.Name" "Miss Pack Man (Video Game Program) (PAL) [p1][!]" "Cartridge.Manufacturer" "Video Game Program" -"Display.Format" "PAL" "Display.Height" "198" "Display.YStart" "64" "" @@ -4805,7 +4605,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3213" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -4905,7 +4704,6 @@ "Cartridge.MD5" "3b69f8929373598e1752f43f8da61aa4" "Cartridge.Name" "Die Springteufel (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -4919,14 +4717,12 @@ "Cartridge.MD5" "3b10106836565e5db28c7823c0898fbb" "Cartridge.Name" "Ghost Manor (1983) (Xonox) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "30" "Display.Height" "230" "" "Cartridge.MD5" "3b097a7ed5bd2a84dc3d3ed361e9c31c" "Cartridge.Name" "Interleaved ChronoColour Demo (PAL) (05-03-2003) (AD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "3ab5d138e26d88c8190e7cc629a89493" @@ -4948,7 +4744,6 @@ "Cartridge.MD5" "3b2c32fcd331664d037952bcaa62df94" "Cartridge.Name" "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "59" "Display.Height" "195" "" @@ -4969,7 +4764,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4318" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E7" "Console.LeftDifficulty" "A" "Display.Height" "185" "Display.YStart" "38" @@ -5063,7 +4857,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2669" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -5107,7 +4900,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-206" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "4" @@ -5119,7 +4911,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "144" "Display.XStart" "8" @@ -5156,7 +4947,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "M8793" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "216" "Display.YStart" "42" "Display.Phosphor" "Yes" @@ -5195,7 +4985,6 @@ "Cartridge.MD5" "402b1ca3c230a60fb279d4a2a10fa677" "Cartridge.Name" "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "63" @@ -5245,7 +5034,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "144" "Display.XStart" "8" @@ -5265,7 +5053,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2645 / 6699817 / 4975181" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "128" "Display.XStart" "16" @@ -5336,7 +5123,6 @@ "Cartridge.MD5" "3f75a5da3e40d486b21dfc1c8517adc0" "Cartridge.Name" "Sky Diver (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "45" "" @@ -5354,7 +5140,6 @@ "Cartridge.MD5" "3f96eb711928a6fac667c04ecd41f59f" "Cartridge.Name" "Rodeo Champ (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "144" "Display.XStart" "8" @@ -5373,7 +5158,6 @@ "Cartridge.MD5" "3ff5165378213dab531ffa4f1a41ae45" "Cartridge.Name" "Pygmy (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -5390,7 +5174,6 @@ "Cartridge.MD5" "46e9428848c9ea71a4d8f91ff81ac9cc" "Cartridge.Name" "Astroblast (Telegames) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -5415,7 +5198,6 @@ "Cartridge.Name" "Euchre (Alpha) (PAL) (31-08-2002) (Erik Eid)" "Cartridge.Manufacturer" "Erik Eid" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "" "Cartridge.MD5" "4066309eb3fa3e7a725585b9814bc375" @@ -5425,7 +5207,6 @@ "Cartridge.MD5" "405f8591b6941cff56c9b392c2d5e4e5" "Cartridge.Name" "Star Strike (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -5460,7 +5241,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99002" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "30" "Display.Height" "230" "" @@ -5481,7 +5261,6 @@ "Cartridge.MD5" "40d9f5709877ecf3dd1184f9791dd35e" "Cartridge.Name" "Skiing (1980) (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -5521,7 +5300,6 @@ "Cartridge.Manufacturer" "Eric Ball" "Cartridge.Rarity" "New Release" "Cartridge.Sound" "Stereo" -"Display.Format" "PAL" "" "Cartridge.MD5" "4191b671bcd8237fc8e297b4947f2990" @@ -5554,7 +5332,6 @@ "Cartridge.MD5" "4233eb824c2b4811abef9b6d00355ae9" "Cartridge.Name" "Qb (V0.10) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -5598,7 +5375,6 @@ "Cartridge.Name" "Challenge (Funvision) (PAL)" "Cartridge.Manufacturer" "Funvision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "240" "Display.YStart" "17" "" @@ -5627,7 +5403,6 @@ "Cartridge.MD5" "442602713cb45b9321ee93c6ea28a5d0" "Cartridge.Name" "Demon Attack (1982) (Imagic) (PAL) [p1][!]" "Cartridge.Manufacturer" "Imagic" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "64" "" @@ -5643,7 +5418,6 @@ "" "Cartridge.MD5" "43f8459d39fb4eddf9186d62722ff795" -"Display.Format" "PAL" "Display.Height" "250" "Cartridge.Name" "Skeleton+ (17-04-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" @@ -5652,7 +5426,6 @@ "Cartridge.MD5" "458883f1d952cd772cf0057abca57497" "Cartridge.Name" "Fishing Derby (1980) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "183" "Display.YStart" "62" "Display.Width" "144" @@ -5676,7 +5449,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-039" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -5738,7 +5510,6 @@ "Cartridge.MD5" "457e7d4fcd56ebc47f5925dbea3ee427" "Cartridge.Name" "Space Jockey (1982) (Carrere Video) (PAL) [!]" "Cartridge.Manufacturer" "Carrere Video" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "64" "" @@ -5753,7 +5524,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2658 / 4975128" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "44" "" @@ -5763,7 +5533,6 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1007" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "42" "Display.Height" "250" "" @@ -5774,7 +5543,6 @@ "Cartridge.MD5" "467340a18158649aa5e02a4372dcfccd" "Cartridge.Name" "H.E.R.O. (1984) (Activision) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "152" "Display.XStart" "8" @@ -5802,7 +5570,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "212" "Display.Width" "144" "Display.XStart" "8" @@ -5839,7 +5606,6 @@ "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "68" -"Display.Format" "PAL" "" "Cartridge.MD5" "470878b9917ea0348d64b5750af149aa" @@ -5865,7 +5631,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-201" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "152" "Display.XStart" "8" @@ -5885,7 +5650,6 @@ "Cartridge.Note" "Uses Kids/Keypad Controllers (left only)" "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" -"Display.Format" "PAL" "Display.Height" "227" "Display.YStart" "46" "" @@ -5910,7 +5674,6 @@ "Cartridge.MD5" "490e3cc59d82f85fae817cdf767ea7a0" "Cartridge.Name" "Berzerk (1982) (Atari) (PAL) [p2][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "188" "Display.Width" "152" "Display.XStart" "4" @@ -5920,7 +5683,6 @@ "Cartridge.MD5" "48e5c4ae4f2d3b62b35a87bca18dc9f5" "Cartridge.Name" "Bobby geht nach Hause (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "219" "Display.YStart" "46" "" @@ -5930,7 +5692,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3205" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.YStart" "64" "Display.Phosphor" "Yes" @@ -5942,7 +5703,6 @@ "Cartridge.MD5" "481d20ec22e7a63e818d5ef9679d548b" "Cartridge.Name" "Freeway (AKA Rabbits) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "144" "Display.XStart" "8" @@ -6009,7 +5769,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3200" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "235" "Display.YStart" "46" "" @@ -6019,7 +5778,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5330" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "64" "" @@ -6031,7 +5789,6 @@ "Cartridge.MD5" "493e90602a4434b117c91c95e73828d1" "Cartridge.Name" "Lock 'N' Chase (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -6043,7 +5800,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -6056,7 +5812,6 @@ "Cartridge.ModelNo" "CX2613 / 4975154" "Cartridge.Rarity" "Common" "Controller.Right" "None" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "60" "" @@ -6064,7 +5819,6 @@ "Cartridge.MD5" "4b205ef73a5779acc5759bde3f6d33ed" "Cartridge.Name" "Berzerk (1982) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "4" @@ -6081,7 +5835,6 @@ "Cartridge.MD5" "4999b45be0ab5a85bac1b7c0e551542b" "Cartridge.Name" "Double Dragon (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "152" "Display.XStart" "8" @@ -6090,13 +5843,13 @@ "Cartridge.MD5" "49571b26f46620a85f93448359324c28" "Cartridge.Name" "Save Our Ship (PAL) [p1][!]" -"Display.Format" "PAL" "" "Cartridge.MD5" "497f3d2970c43e5224be99f75e97cbbb" "Cartridge.Name" "Video Life (CommaVid)" "Cartridge.Manufacturer" "CommaVid" "Cartridge.Rarity" "Extremely Rare" +"Cartridge.Type" "CV" "Display.Phosphor" "Yes" "" @@ -6111,7 +5864,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1006" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "187" "Display.YStart" "64" "Display.Phosphor" "Yes" @@ -6138,7 +5890,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11015" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "198" "Display.YStart" "62" "" @@ -6157,7 +5908,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26135" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "185" "Display.Width" "152" "Display.XStart" "8" @@ -6185,7 +5935,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3207" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -6248,7 +5997,6 @@ "Cartridge.MD5" "4c030667d07d1438f0e5c458a90978d8" "Cartridge.Name" "Qb (V2.03) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -6296,7 +6044,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2666" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "215" "Display.Width" "152" "Display.XStart" "8" @@ -6362,7 +6109,6 @@ "Cartridge.MD5" "4d38e1105c3a5f0b3119a805f261fcb5" "Cartridge.Name" "Phantom UFO (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "59" "" @@ -6380,7 +6126,6 @@ "Cartridge.MD5" "4f89b897444e7c3b36aed469b8836839" "Cartridge.Name" "BMX Air Master (1989) (Atari) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "202" "" @@ -6391,7 +6136,6 @@ "Cartridge.MD5" "4dbf47c7f5ac767a3b07843a530d29a5" "Cartridge.Name" "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)" -"Cartridge.Type" "E7" "Cartridge.Manufacturer" "Ric Pryor" "Cartridge.Note" "Bump 'n' Jump Hack" "Display.XStart" "8" @@ -6403,7 +6147,6 @@ "Cartridge.MD5" "4d8396deeabb40b5e8578276eb5a8b6d" "Cartridge.Name" "Volleyball (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -6452,7 +6195,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "EIZ-002-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "52" "" @@ -6475,7 +6217,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "54" "" @@ -6483,7 +6224,6 @@ "Cartridge.MD5" "4f634893d54e9cabe106e0ec0b7bdcdf" "Cartridge.Name" "Qb (2.14) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -6494,7 +6234,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2680" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -6514,7 +6253,6 @@ "Cartridge.MD5" "4f2d47792a06da224ba996c489a87939" "Cartridge.Name" "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -6545,13 +6283,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-033" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "" "Cartridge.MD5" "4f82d8d78099dd71e8e169646e799d05" "Cartridge.Name" "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "45" "" @@ -6602,7 +6338,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "63" "" @@ -6621,7 +6356,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "191" "Display.Width" "152" "Display.XStart" "8" @@ -6644,7 +6378,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5350" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "40" "" @@ -6654,7 +6387,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5550" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "32" @@ -6663,7 +6395,6 @@ "Cartridge.MD5" "516ffd008057a1d78d007c851e6eff37" "Cartridge.Name" "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]" "Cartridge.Manufacturer" "ParkerB" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "36" "" @@ -6671,7 +6402,6 @@ "Cartridge.MD5" "51e390424f20e468d2b480030ce95d7b" "Cartridge.Name" "Fire Bird (Video Game Program) (PAL) [!]" "Cartridge.Manufacturer" "Video Game Program" -"Display.Format" "PAL" "Display.YStart" "62" "" @@ -6706,7 +6436,6 @@ "Cartridge.MD5" "522c9cf684ecd72db2f85053e6f6f720" "Cartridge.Name" "Year 1999, The (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Format" "PAL" "Display.Height" "219" "Display.YStart" "64" "" @@ -6716,7 +6445,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-032" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "Display.Width" "152" @@ -6758,7 +6486,6 @@ "Cartridge.MD5" "52b448757081fd9fabf859f4e2f91f6b" "Cartridge.Name" "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]" "Cartridge.Manufacturer" "20th Century Fox" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -6775,7 +6502,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5060" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E0" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -6806,7 +6532,6 @@ "Cartridge.MD5" "540075f657d4b244a1f74da1b9e4bf92" "Cartridge.Name" "Festival (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "201" "Display.YStart" "62" "" @@ -6852,7 +6577,6 @@ "Cartridge.MD5" "589c73bbcd77db798cb92a992b4c06c3" "Cartridge.Name" "Artillery Duel (1983) (Xonox) (PAL) [!]" "Cartridge.Manufacturer" "Xonox" -"Display.Format" "PAL" "Display.Height" "186" "Display.YStart" "27" "" @@ -6864,7 +6588,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "59" "" @@ -6958,7 +6681,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-004" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -6969,7 +6691,6 @@ "Cartridge.Name" "Motocross (Starsoft) (PAL) [b1]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "249" "Display.YStart" "45" "" @@ -6977,7 +6698,6 @@ "Cartridge.MD5" "56300ed31fef018bd96768ccc982f7b4" "Cartridge.Name" "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "238" "Display.YStart" "50" "" @@ -7074,7 +6794,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1002" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "56" "Display.Height" "206" "Display.Phosphor" "Yes" @@ -7203,7 +6922,6 @@ "Cartridge.MD5" "5a2f2dcd775207536d9299e768bcd2df" "Cartridge.Name" "Flippern (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "54" "" @@ -7219,7 +6937,6 @@ "Cartridge.MD5" "5a5390f91437af9951a5f8455b61cd43" "Cartridge.Name" "Qb (0.11) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "59" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -7230,7 +6947,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "219" "Display.Width" "152" "Display.XStart" "8" @@ -7255,7 +6971,6 @@ "Cartridge.MD5" "5a9d188245aff829efde816fcade0b16" "Cartridge.Name" "Phantom Tank (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "41" "" @@ -7302,7 +7017,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "152" "Display.XStart" "8" @@ -7310,7 +7024,6 @@ "Cartridge.MD5" "5b574faa56836da0866ba32ae32547f2" "Cartridge.Name" "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)" -"Cartridge.Type" "E0" "Display.Height" "192" "Display.YStart" "38" "" @@ -7333,7 +7046,6 @@ "Cartridge.Note" "Stereo sound" "Cartridge.Rarity" "Homebrew" "Cartridge.Sound" "Stereo" -"Display.Format" "PAL" "" "Cartridge.MD5" "5e99aa93d0acc741dcda8752c4e813ce" @@ -7387,7 +7099,6 @@ "Cartridge.MD5" "5be03a1fe7b2c114725150be04b38704" "Cartridge.Name" "Hunt & Score (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "37" "" @@ -7403,7 +7114,6 @@ "Cartridge.MD5" "5c0520c00163915a4336e481ca4e7ef4" "Cartridge.Name" "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Format" "PAL" "Display.Height" "183" "Display.Width" "152" "Display.XStart" "8" @@ -7455,7 +7165,6 @@ "Cartridge.Name" "Swoops! (v0.96) (Thomas Jentzsch) (PAL)" "Cartridge.Note" "Uses the Joystick (L) and Paddle (R) Controllers" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.YStart" "40" "Display.Height" "240" "" @@ -7472,7 +7181,6 @@ "Cartridge.MD5" "5db9e5bf663cad6bf159bc395f6ead53" "Cartridge.Name" "Time Race (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "48" "" @@ -7530,7 +7238,6 @@ "Cartridge.MD5" "5f17fef8a64d64d119f8e76c50238762" "Cartridge.Name" "Acid Drop (1992) (Salu) (PAL) [b1]" -"Display.Format" "PAL" "Display.Height" "250" "" @@ -7569,7 +7276,6 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1004" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -7592,7 +7298,6 @@ "Cartridge.MD5" "5f786b67e05fb9985b77d4beb35e06ee" "Cartridge.Name" "Defender II (1984) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -7612,7 +7317,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2661" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "22" "" @@ -7704,7 +7408,6 @@ "Cartridge.MD5" "603c7a0d12c935df5810f400f3971b67" "Cartridge.Name" "Mr. Postman (1983) (Bitcorp) (PAL) [!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Format" "PAL" "Display.Height" "239" "Display.YStart" "47" "" @@ -7781,7 +7484,6 @@ "Cartridge.MD5" "6141c095d0aee4e734bebfaac939030a" "Cartridge.Name" "Die Unterwasser-Bestien (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "152" "Display.XStart" "8" @@ -7811,7 +7513,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "140" "Display.XStart" "12" @@ -7844,7 +7545,6 @@ "Cartridge.MD5" "6272f348a9a7f2d500a4006aa93e0d08" "Cartridge.Name" "RealSports Soccer (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -7867,7 +7567,6 @@ "Cartridge.Name" "Pharoah's Curse (TechnoVision) (PAL) [p2]" "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "225" "Display.YStart" "22" "Display.Phosphor" "Yes" @@ -7909,7 +7608,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5540" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Height" "187" "Display.Width" "144" "Display.XStart" "8" @@ -7950,7 +7648,6 @@ "Cartridge.MD5" "635cc7a0db33773959d739d04eff96c2" "Cartridge.Name" "Minesweeper (V.90) (Soren Gust) (PD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "637efac676ff063f2fbb0abff77c4fa5" @@ -8011,7 +7708,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2691" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "250" "Display.YStart" "64" "Display.Phosphor" "Yes" @@ -8023,7 +7719,6 @@ "Cartridge.MD5" "643e6451eb6b8ab793eb60ba9c02e000" "Cartridge.Name" "Ghostbusters II (V2)" -"Display.Format" "PAL" "Display.Height" "242" "Display.YStart" "42" "Display.Phosphor" "Yes" @@ -8032,14 +7727,12 @@ "Cartridge.MD5" "6468d744be9984f2a39ca9285443a2b2" "Cartridge.Name" "Othello (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "61" "" "Cartridge.MD5" "645bf7f9146f0e4811ff9c7898f5cd93" "Cartridge.Name" "Super Kung-Fu (1983) (Xonox) (PAL) [!]" "Cartridge.Manufacturer" "Xonox" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "59" "" @@ -8072,7 +7765,6 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33391" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -8089,7 +7781,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2692" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "152" "Display.XStart" "8" @@ -8111,7 +7802,6 @@ "Cartridge.MD5" "6672de8f82c4f7b8f7f1ef8b6b4f614d" "Cartridge.Name" "Angling (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Format" "PAL" "Display.Height" "183" "Display.Width" "144" "Display.XStart" "8" @@ -8164,7 +7854,6 @@ "Cartridge.MD5" "65ba1a4c643d1ab44481bdddeb403827" "Cartridge.Name" "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "152" "Display.XStart" "8" @@ -8203,7 +7892,6 @@ "Cartridge.Note" "Uses the Joystick Controllers (swapped)" "Cartridge.Rarity" "Rare" "Console.SwapPorts" "Yes" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -8211,7 +7899,6 @@ "Cartridge.Name" "Treasure Below (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Console.LeftDifficulty" "A" -"Display.Format" "PAL" "Display.YStart" "56" "Display.Height" "230" "Display.Width" "152" @@ -8249,7 +7936,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "144" "Display.XStart" "8" @@ -8274,7 +7960,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "198" "Display.YStart" "64" "" @@ -8290,7 +7975,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26117" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "63" "" @@ -8298,7 +7982,6 @@ "Cartridge.MD5" "668dc528b7ea9345140f4fcfbecf7066" "Cartridge.Name" "Pooyan (1982) (Konami-Gakken) (PAL) [!]" "Cartridge.Manufacturer" "Konami-Gakken" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "33" "" @@ -8306,7 +7989,6 @@ "Cartridge.MD5" "66c2380c71709efa7b166621e5bb4558" "Cartridge.Name" "Tutankham (1983) (Parker Bros) (PAL) [!]" "Cartridge.Manufacturer" "Parker Bros" -"Display.Format" "PAL" "" "Cartridge.MD5" "675ae9c23fa1aae376cea86cad96f9a5" @@ -8315,7 +7997,6 @@ "Cartridge.MD5" "67631ea5cfe44066a1e76ddcb6bcb512" "Cartridge.Name" "Termool (AKA Fast Eddie) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -8324,7 +8005,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-003" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "215" "Display.YStart" "46" "" @@ -8395,7 +8075,6 @@ "Cartridge.Name" "Kung Fu (PAL) [!]" "Cartridge.ModelNo" "99003" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "218" "Display.YStart" "50" "" @@ -8417,7 +8096,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG201" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "259" "" @@ -8438,7 +8116,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-004" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "225" "Display.YStart" "44" "Display.Phosphor" "Yes" @@ -8533,7 +8210,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-202" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "64" @@ -8560,7 +8236,6 @@ "Cartridge.Name" "Dragon Defender (PAL)" "Cartridge.ModelNo" "TP-605" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "249" "Display.YStart" "32" "Display.Phosphor" "Yes" @@ -8571,7 +8246,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "214" "Display.Width" "140" "Display.XStart" "12" @@ -8587,7 +8261,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "202" "Display.YStart" "50" "Display.Width" "152" @@ -8630,7 +8303,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG203" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "41" "" @@ -8645,7 +8317,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "222" "Display.Width" "152" "Display.XStart" "8" @@ -8684,7 +8355,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -8704,7 +8374,6 @@ "Cartridge.MD5" "6bb09bc915a7411fe160d0b2e4d66047" "Cartridge.Name" "Space Jockey (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "227" "Display.YStart" "64" "" @@ -8712,7 +8381,6 @@ "Cartridge.MD5" "6c1553ca90b413bf762dfc65f2b881c7" "Cartridge.Name" "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Format" "PAL" "Display.Height" "240" "Display.Width" "152" "Display.XStart" "8" @@ -8721,7 +8389,6 @@ "Cartridge.MD5" "703f0f7af350b0fa29dfe5fbf45d0d75" "Cartridge.Name" "4 Pak (Dark Green) [p1][!]" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "144" "Display.XStart" "8" @@ -8739,7 +8406,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "235" "Display.YStart" "50" "" @@ -8751,7 +8417,6 @@ "Cartridge.MD5" "6c91ac51421cb9fc72c9833c4f440d65" "Cartridge.Name" "Cosmic Town (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -8794,8 +8459,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5540" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" -"Display.Format" "PAL" "Display.Height" "202" "Display.Width" "144" "Display.XStart" "8" @@ -8848,7 +8511,6 @@ "Cartridge.MD5" "6d9afd70e9369c2a6bff96c4964413b7" "Cartridge.Name" "Time Race 2 (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" -"Display.Format" "PAL" "Display.YStart" "45" "" @@ -8861,7 +8523,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG207" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "58" "Display.Phosphor" "Yes" @@ -8893,8 +8554,6 @@ "Cartridge.Name" "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)" "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Rarity" "Prototype" -"Cartridge.Type" "E0" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "25" "" @@ -8927,13 +8586,13 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2648 / 4975161" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "217" "Display.YStart" "56" "" "Cartridge.MD5" "6f084daf265599f65422ef4173b69bc7" "Cartridge.Name" "Music Kit (V2.0) - Song Player (Paul Slocum)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "6f2aaffaaf53d23a28bf6677b86ac0e3" @@ -8965,7 +8624,6 @@ "Cartridge.MD5" "6fac680fc9a72e0e54255567c72afe34" "Cartridge.Name" "Superman (1978) (Atari) (PAL) [p2][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "56" "" @@ -8974,7 +8632,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3611" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "201" "Display.YStart" "62" "" @@ -8990,7 +8647,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2689" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -9051,7 +8707,6 @@ "Cartridge.Name" "Frostbite (1983) (Activision) [o1]" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "232" "Display.Width" "152" "Display.XStart" "8" @@ -9068,7 +8723,6 @@ "Cartridge.MD5" "709910c2e83361bc4bf8cd0c20c34fbf" "Cartridge.Name" "Im Reich der Spinne (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "" "Cartridge.MD5" "7096a198531d3f16a99d518ac0d7519a" @@ -9126,7 +8780,6 @@ "Cartridge.Name" "Parachute (HomeVision) (PAL)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "49" "" @@ -9134,7 +8787,6 @@ "Cartridge.MD5" "7732e4e4cc2644f163d6650ddcc9d9df" "Cartridge.Name" "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "236" "Display.YStart" "49" "" @@ -9142,14 +8794,12 @@ "Cartridge.MD5" "72fd08deed1d6195942e0c6f392e9848" "Cartridge.Name" "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "236" "Display.YStart" "49" "" "Cartridge.MD5" "71f09f128e76eb14e244be8f44848759" "Cartridge.Name" "Astro Attack (Goliath) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "44" "Display.Height" "230" "" @@ -9193,7 +8843,6 @@ "Cartridge.MD5" "72876fd7c7435f41d571f1101fc456ea" "Cartridge.Name" "Die Ente und der Wolf (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "" "Cartridge.MD5" "71f8bacfbdca019113f3f0801849057e" @@ -9217,7 +8866,6 @@ "Cartridge.MD5" "721a5567f76856f6b50a6707aa8f8316" "Cartridge.Name" "Ghostbusters (1985) (Activision) (PAL) [a1][!]" "Display.YStart" "64" -"Display.Format" "PAL" "Display.Height" "197" "Display.Width" "152" "Display.XStart" "8" @@ -9228,7 +8876,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4000" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "144" "Display.XStart" "8" @@ -9264,7 +8911,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5550" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "32" @@ -9275,7 +8921,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3204" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "" @@ -9327,7 +8972,6 @@ "Cartridge.MD5" "73521c6b9fed6a243d9b7b161a0fb793" "Cartridge.Name" "Miniature Golf (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "47" "" @@ -9335,7 +8979,6 @@ "Cartridge.MD5" "73aa02458b413091ac940c0489301710" "Cartridge.Name" "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "217" "Display.Width" "152" "Display.XStart" "8" @@ -9373,14 +9016,12 @@ "Cartridge.MD5" "73c545db2afd5783d37c46004e4024c2" "Cartridge.Name" "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "60" "" "Cartridge.MD5" "73c839aff6a055643044d2ce16b3aaf7" "Cartridge.Name" "Starmaster (1982) (Activision) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -9393,7 +9034,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG203" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "47" "" @@ -9413,7 +9053,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4104" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "206" "Display.Width" "152" "Display.XStart" "8" @@ -9432,7 +9071,6 @@ "Cartridge.MD5" "74d072e8a34560c36cacbc57b2462360" "Cartridge.Name" "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" -"Display.Format" "PAL" "Display.Height" "243" "Display.Width" "152" "Display.XStart" "8" @@ -9466,7 +9104,6 @@ "Cartridge.MD5" "75511bb694662301c9e71df645f4b5a7" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "144" "Display.XStart" "8" @@ -9478,7 +9115,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-014" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "152" "Display.XStart" "8" @@ -9490,7 +9126,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2629" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "44" "Display.Height" "256" "" @@ -9506,7 +9141,6 @@ "Cartridge.MD5" "7576dd46c2f8d8ab159d97e3a3f2052f" "Cartridge.Name" "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]" -"Display.Format" "PAL" "Display.Height" "221" "Display.YStart" "49" "" @@ -9516,7 +9150,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4103" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "52" @@ -9525,7 +9158,6 @@ "Cartridge.MD5" "75b22fdf632d76e246433db1ebccd3c4" "Cartridge.Name" "Skeleton+ (05-05-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -9538,7 +9170,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT7045" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E7" "Display.Height" "188" "Display.Width" "152" "Display.XStart" "8" @@ -9555,7 +9186,6 @@ "Cartridge.MD5" "7628d3cadeee0fd2e41e68b3b8fbe229" "Cartridge.Name" "Fishing Derby (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "188" "Display.Width" "144" "Display.XStart" "8" @@ -9565,7 +9195,6 @@ "Cartridge.MD5" "7608abdfd9b26f4a0ecec18b232bea54" "Cartridge.Name" "Football (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "219" "Display.YStart" "61" "" @@ -9573,7 +9202,6 @@ "Cartridge.MD5" "75ea128ba96ac6db8edf54b071027c4e" "Cartridge.Name" "Slot Machine (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "44" "" @@ -9588,7 +9216,6 @@ "Cartridge.MD5" "76ee917d817ef9a654bc4783e0273ac4" "Cartridge.Name" "Fox & Goat (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "64" "" @@ -9606,7 +9233,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "38" "Emulation.HmoveBlanks" "No" @@ -9639,7 +9265,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-021" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "60" "" @@ -9683,7 +9308,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "56" "" @@ -9705,7 +9329,6 @@ "Cartridge.MD5" "78821ef76ebc3934850d1bc1b9e4f4b0" "Cartridge.Name" "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "49" "Display.Height" "214" "" @@ -9737,7 +9360,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "152" "Display.XStart" "8" @@ -9755,7 +9377,6 @@ "Cartridge.MD5" "7f525b07bc98080cc8950f7284e52ede" "Cartridge.Name" "128-in-1 Junior Console (Chip 4) (PAL) [!]" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "" @@ -9763,7 +9384,6 @@ "Cartridge.MD5" "7f430c33044e0354815392b53a9a772d" "Cartridge.Name" "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "222" "Display.YStart" "49" "" @@ -9787,7 +9407,6 @@ "Cartridge.Name" "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]" "Cartridge.Note" "Uses Kids/Keypad Controllers" "Controller.Left" "KEYBOARD" -"Display.Format" "PAL" "Display.YStart" "45" "Display.Height" "228" "" @@ -9818,7 +9437,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2616" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "41" "" @@ -9849,7 +9467,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2673" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -9919,7 +9536,6 @@ "Cartridge.MD5" "7b5207e68ee85b16998bea861987c690" "Cartridge.Name" "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "63" @@ -9928,7 +9544,6 @@ "Cartridge.MD5" "7ac4f4fb425db38288fa07fb8ff4b21d" "Cartridge.Name" "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Sancho-Goliath" -"Display.Format" "PAL" "Display.Height" "240" "Display.Width" "152" "Display.XStart" "8" @@ -10012,7 +9627,6 @@ "Cartridge.Manufacturer" "TNT Games" "Cartridge.ModelNo" "CX26190" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "152" "Display.XStart" "8" @@ -10024,7 +9638,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "202" "Display.Width" "144" "Display.XStart" "8" @@ -10073,7 +9686,6 @@ "Cartridge.MD5" "7c9b3b8b25acf2fe3b8da834f69629c6" "Cartridge.Name" "I Robot (1984) (Atari) (Prototype) [!]" -"Display.Format" "PAL" "" "Cartridge.MD5" "7ca7a471d70305c673fedd08174a81e8" @@ -10100,7 +9712,6 @@ "Cartridge.MD5" "7d5c3b7b908752b98e30690e2a3322c2" "Cartridge.Name" "Freeway (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -10112,7 +9723,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "144" "Display.XStart" "8" @@ -10132,7 +9742,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26139" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "188" "Display.Width" "152" "Display.XStart" "8" @@ -10171,7 +9780,6 @@ "Cartridge.MD5" "7d9c96b215d1941e87b6fb412eb9204f" "Cartridge.Name" "Othello (1978) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "215" "Display.YStart" "60" "" @@ -10184,7 +9792,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -10209,7 +9816,6 @@ "Cartridge.MD5" "7e464186ba384069582d9f0c141f7491" "Cartridge.Name" "General Retreat (Playground) (PAL)" "Cartridge.Manufacturer" "Playaround" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -10270,7 +9876,6 @@ "Cartridge.MD5" "7f07cd2e89dda5a3a90d3ab064bfd1f6" "Cartridge.Name" "Boxen (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Format" "PAL" "Display.Height" "216" "Display.Width" "152" "Display.XStart" "8" @@ -10317,7 +9922,6 @@ "Cartridge.MD5" "8c8a26ed57870daba8e13162d497bad1" "Cartridge.Name" "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "236" "Display.YStart" "49" "" @@ -10325,7 +9929,6 @@ "Cartridge.MD5" "8aad33da907bed78b76b87fceaa838c1" "Cartridge.Name" "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "39" "" @@ -10401,7 +10004,6 @@ "Cartridge.Name" "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "219" "" @@ -10418,7 +10020,6 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100286" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "230" "Display.Width" "144" "Display.XStart" "8" @@ -10458,7 +10059,6 @@ "Cartridge.MD5" "80e1410ec98089e0733cc09e584dba4b" "Cartridge.Name" "Jumping Jack (Dynamics) (PAL) [!]" "Cartridge.Manufacturer" "Dynamics" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "42" "" @@ -10470,7 +10070,6 @@ "Cartridge.MD5" "8101efafcf0af32fedda4579c941e6f4" "Cartridge.Name" "Okie Dokie (4K) (PD)" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "128" "Display.XStart" "16" @@ -10480,7 +10079,6 @@ "Cartridge.MD5" "8108ad2679bd055afec0a35a1dca46a4" "Cartridge.Name" "Puzzled World (Cooper Black) (PAL) [p1]" "Cartridge.Manufacturer" "Cooper Black" -"Display.Format" "PAL" "Display.Height" "175" "Display.YStart" "52" "" @@ -10488,7 +10086,6 @@ "Cartridge.MD5" "8108162bc88b5a14adc3e031cf4175ad" "Cartridge.Name" "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Format" "PAL" "Display.Height" "251" "Display.YStart" "48" "" @@ -10509,7 +10106,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "54" "" @@ -10545,7 +10141,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2629" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -10576,7 +10171,6 @@ "Cartridge.MD5" "822a950f27ff0122870558a89a49cad3" "Cartridge.Name" "Space Jockey (1982) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -10611,7 +10205,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-203" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "49" "" @@ -10622,7 +10215,6 @@ "Cartridge.MD5" "82bf0dff20cee6a1ed4bb834b00074e6" "Cartridge.Name" "Der hungrige Panda (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "212" "Display.YStart" "51" "" @@ -10643,7 +10235,6 @@ "Cartridge.MD5" "834a2273e97aec3181ee127917b4b269" "Cartridge.Name" "Die Hungrigen Froesche (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "202" "Display.YStart" "64" "" @@ -10679,7 +10270,6 @@ "Cartridge.MD5" "83d15fb9843d9f84aa3710538403f434" "Cartridge.Name" "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)" "Display.YStart" "41" -"Display.Format" "PAL" "Display.Height" "195" "" @@ -10713,7 +10303,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3211" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -10775,7 +10364,6 @@ "Cartridge.MD5" "853c11c4d07050c22ef3e0721533e0c5" "Cartridge.Name" "Oink! (1983) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -10789,7 +10377,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "46" "" @@ -10867,7 +10454,6 @@ "Cartridge.MD5" "8654d7f0fb351960016e06646f639b02" "Cartridge.Name" "Ski Hunt (HomeVision) (PAL)" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "235" "Display.Width" "152" "Display.XStart" "8" @@ -10877,7 +10463,6 @@ "Cartridge.MD5" "869abe0426e6e9fcb6d75a3c2d6e05d1" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -10906,18 +10491,15 @@ "Cartridge.Name" "Euchre (Beta) (PAL) (12-09-2002) (Erik Eid)" "Cartridge.Manufacturer" "Erik Eid" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "" "Cartridge.MD5" "873fb75a7788ba0f4ae715229a05545e" "Cartridge.Name" "Euchre (Improved Colors) (PAL) (26-09-2002) (Erik Eid)" -"Display.Format" "PAL" "" "Cartridge.MD5" "876a953daae0e946620cf05ed41989f4" "Cartridge.Name" "Qb (V2.08) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -10933,7 +10515,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "229" "Display.YStart" "47" "" @@ -10955,7 +10536,6 @@ "Cartridge.MD5" "8786f229b974c393222874f73a9f3206" "Cartridge.Name" "Spider Fighter (1983) (Activision) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "59" "" @@ -10976,7 +10556,6 @@ "Cartridge.ModelNo" "AZ-030" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Format" "PAL" "Display.Height" "191" "Display.Width" "152" "Display.XStart" "8" @@ -11061,7 +10640,6 @@ "Cartridge.Name" "Pac Kong (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "215" "Display.Width" "144" "Display.XStart" "8" @@ -11090,7 +10668,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG202" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "259" "Display.YStart" "37" "" @@ -11110,7 +10687,6 @@ "Cartridge.MD5" "89a65b83203980d5d4d60f52a584a5b8" "Cartridge.Name" "Marble Craze (PAL) (02-02-2003) (Paul Slocum)" -"Display.Format" "PAL" "Display.YStart" "53" "" @@ -11119,7 +10695,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG208" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "42" "" @@ -11135,7 +10710,6 @@ "Cartridge.MD5" "89afff4a10807093c105740c73e9b544" "Cartridge.Name" "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]" "Cartridge.Manufacturer" "Konami-Gakken" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "47" "" @@ -11144,7 +10718,6 @@ "Cartridge.Name" "RealSports Basketball (Atari) (Prototype) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -11158,7 +10731,6 @@ "Cartridge.MD5" "8a8e401369e2b63a13e18a4d685387c6" "Cartridge.Name" "Laser Blast (1982) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -11170,7 +10742,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (swapped)" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "35" "" @@ -11193,7 +10764,6 @@ "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]" "Cartridge.ModelNo" "2451" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -11215,7 +10785,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5360" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "152" "Display.XStart" "4" @@ -11232,7 +10801,6 @@ "Cartridge.Name" "Synthcart (2002) (Paul Slocum) (PAL) [!]" "Cartridge.Note" "Uses Keypad Controllers" "Controller.Left" "Keyboard" -"Display.Format" "PAL" "Display.YStart" "55" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -11243,7 +10811,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4201" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -11259,7 +10826,6 @@ "Cartridge.MD5" "8bebac614571135933116045204f0f00" "Cartridge.Name" "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)" -"Display.Format" "PAL" "Display.YStart" "40" "Display.Height" "256" "Display.Phosphor" "Yes" @@ -11297,7 +10863,6 @@ "Cartridge.MD5" "8c2fa33048f055f38358d51eefe417db" "Cartridge.Name" "Teddy Apple (HomeVision) (PAL) [!]" "Cartridge.Manufacturer" "HomeVision" -"Display.Format" "PAL" "Display.Height" "239" "Display.YStart" "51" "Display.Phosphor" "Yes" @@ -11306,7 +10871,6 @@ "Cartridge.MD5" "8c36ed2352801031516695d1eeefe617" "Cartridge.Name" "Winter Games (1987) (Epyx) (PAL) [!]" "Cartridge.Manufacturer" "Epyx" -"Display.Format" "PAL" "Display.YStart" "56" "" @@ -11327,7 +10891,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2649 / 4975163" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "44" "Emulation.HmoveBlanks" "No" @@ -11372,7 +10935,6 @@ "Cartridge.MD5" "8d8b7d7b983f75debbdaac651e814768" "Cartridge.Name" "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "8d1e2a6d2885966e6d86717180938f87" @@ -11422,7 +10984,6 @@ "Cartridge.MD5" "8e737a88a566cc94bd50174c2d019593" "Cartridge.Name" "Feuerwehr im Einsatz (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "58" "" @@ -11441,14 +11002,12 @@ "Cartridge.Name" "Laser Gates (1983) (Imagic) (PAL) [!]" "Cartridge.Manufacturer" "Imagic" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "233" "" "Cartridge.MD5" "8e42674972d6805068fc653e014370fd" "Cartridge.Name" "Skeleton (PAL) (15-10-2002) (Eric Ball)" "Display.Height" "256" -"Display.Format" "PAL" "" "Cartridge.MD5" "8e4fa8c6ad8d8dce0db8c991c166cdaa" @@ -11469,14 +11028,12 @@ "Cartridge.MD5" "8e887d1ba5f3a71ae8a0ea16a4af9fc9" "Cartridge.Name" "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)" -"Display.Format" "PAL" "Display.Height" "256" "" "Cartridge.MD5" "8ed73106e2f42f91447fb90b6f0ea4a4" "Cartridge.Name" "Tape Worm (1982) (Spectravideo) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo" -"Display.Format" "PAL" "Display.Height" "215" "Display.YStart" "64" "Display.Phosphor" "Yes" @@ -11485,7 +11042,6 @@ "Cartridge.MD5" "8f33bce5ba1053dcf4cea9c1c69981e4" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]" "Cartridge.Manufacturer" "Tigervision" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -11503,8 +11059,6 @@ "Cartridge.MD5" "9295570a141cdec18074c55dc7229d08" "Cartridge.Name" "Bump 'N' Jump (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Cartridge.Type" "E7" -"Display.Format" "PAL" "Display.Height" "188" "Display.YStart" "41" "" @@ -11524,7 +11078,6 @@ "Cartridge.Name" "Crash Dive (PAL Conversion) (Fabrizio Zavagli)" "Cartridge.Manufacturer" "Fabrizio Zavagli / 20th Century Fox" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Format" "PAL" "Display.YStart" "27" "" @@ -11533,7 +11086,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-203" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "48" "" @@ -11542,7 +11094,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "202" "Display.YStart" "62" "" @@ -11556,7 +11107,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2674" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "190" "Display.YStart" "64" "" @@ -11564,7 +11114,6 @@ "Cartridge.MD5" "8fe00172e7fff4c1878dabcf11bb8dce" "Cartridge.Name" "Hili Ball (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "187" "Display.Width" "152" "Display.XStart" "8" @@ -11589,7 +11138,6 @@ "Cartridge.MD5" "8fffc8f15bb2e6d24e211884a5479aa5" "Cartridge.Name" "Qb (V1.00) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -11598,7 +11146,6 @@ "Cartridge.MD5" "90578a63441de4520be5324e8f015352" "Cartridge.Name" "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Format" "PAL" "Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -11634,7 +11181,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3400" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "213" "Display.YStart" "64" "" @@ -11642,7 +11188,6 @@ "Cartridge.MD5" "914a8feaf6d0a1bbed9eb61d33817679" "Cartridge.Name" "Freeway (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "144" "Display.XStart" "8" @@ -11664,7 +11209,6 @@ "Cartridge.MD5" "913d5d959b5021f879033c89797bab5e" "Cartridge.Name" "Robot Player Graphic (1996) (J.V. Matthews) (PD)" -"Display.Format" "PAL" "Display.YStart" "53" "" @@ -11711,7 +11255,6 @@ "Cartridge.Name" "Qb (2.15) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -11722,7 +11265,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "201" "Display.Width" "152" "Display.XStart" "8" @@ -11733,7 +11275,6 @@ "Cartridge.Name" "Dancing Plates (1983) (BitCorp) (PAL)" "Cartridge.ModelNo" "PG205" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "42" "Display.Phosphor" "Yes" @@ -11761,7 +11302,6 @@ "Cartridge.MD5" "92d1f6ac179ebe5963868d6bc1bdda8d" "Cartridge.Name" "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "45" "" @@ -11779,7 +11319,6 @@ "Cartridge.Manufacturer" "Gakken" "Cartridge.ModelNo" "010" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "27" "" @@ -11787,7 +11326,6 @@ "Cartridge.Name" "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]" "Cartridge.Manufacturer" "Zimag" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -11812,7 +11350,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2638 / 4975166" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "43" "Display.Phosphor" "Yes" @@ -11820,7 +11357,6 @@ "Cartridge.MD5" "936f555b4b1a2cd061b659ff63f4f5f2" "Cartridge.Name" "My Golf (1990) (HES) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "62" "Display.Height" "196" "Display.Width" "144" @@ -11845,7 +11381,6 @@ "Cartridge.MD5" "93c9f9239a4e5c956663dd7affa70da2" "Cartridge.Name" "Billard (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "186" "Display.YStart" "64" "Display.Phosphor" "Yes" @@ -11940,7 +11475,6 @@ "Cartridge.MD5" "95351b46fa9c45471d852d28b9b4e00b" "Cartridge.Name" "Golf (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "191" "Display.Width" "152" "Display.XStart" "8" @@ -11978,7 +11512,6 @@ "Cartridge.MD5" "962ffd3eaf865230a7a312b80e6c5cfd" "Cartridge.Name" "Fathom (1983) (Imagic) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -11991,7 +11524,6 @@ "Cartridge.MD5" "95e542a7467c94b1e4ab24a3ebe907f1" "Cartridge.Name" "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "242" "Display.Phosphor" "Yes" "" @@ -12008,7 +11540,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26114" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "240" "" @@ -12017,7 +11548,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -12060,7 +11590,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2628 / 6699842 / 4975117" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "37" "" @@ -12070,7 +11599,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2677" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "215" "Display.Width" "144" "Display.XStart" "8" @@ -12080,13 +11608,11 @@ "Cartridge.MD5" "97327d6962f8c64e6f926f79cd01c6b9" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Tigervision" -"Display.Format" "PAL" "Display.YStart" "47" "" "Cartridge.MD5" "96eccc2277043508a6c481ea432d7dd9" "Cartridge.Name" "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)" -"Display.Format" "PAL" "Display.YStart" "40" "Display.Height" "256" "Display.Phosphor" "Yes" @@ -12107,7 +11633,6 @@ "Cartridge.MD5" "97933c9f20873446e4c1f8a4da21575f" "Cartridge.Name" "Hili Ball (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Height" "187" "Display.Width" "152" @@ -12133,7 +11658,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26177" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "152" "Display.XStart" "8" @@ -12164,7 +11688,6 @@ "Cartridge.MD5" "98555b95cb38e0e0b22b482b2b60a5b6" "Cartridge.Name" "Fire Spinner (Emag) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "213" "Display.YStart" "58" "Display.Phosphor" "Yes" @@ -12204,7 +11727,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-013" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -12224,7 +11746,6 @@ "Cartridge.Name" "Challenge (Funvision) (PAL) [a1]" "Cartridge.Manufacturer" "Funvision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "240" "Display.YStart" "35" "" @@ -12263,7 +11784,6 @@ "Cartridge.MD5" "9989f974c3cf9c641db6c8a70a2a2267" "Cartridge.Name" "Colours Selector (Eckhard Stolberg) (PAL)" -"Display.Format" "PAL" "" "Cartridge.MD5" "99112a46486b52b1110bae607bfa8cd6" @@ -12292,7 +11812,6 @@ "Cartridge.MD5" "9945a22f60bbaf6d04a8d73b3cf3db75" "Cartridge.Name" "Kung Fu Master (1984) (Activision) (PAL) [a1][!]" "Display.YStart" "59" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -12355,14 +11874,12 @@ "Cartridge.MD5" "ab434f4c942d6472e75d5490cc4dd128" "Cartridge.Name" "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "222" "Display.YStart" "49" "" "Cartridge.MD5" "a94b8ca630f467b574b614808d813919" "Cartridge.Name" "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "48" "Display.Height" "230" "" @@ -12377,7 +11894,6 @@ "Cartridge.MD5" "9b246683f44c963a50e41d6b485bee77" "Cartridge.Name" "Boring (PAL) (AD)" -"Display.Format" "PAL" "Display.YStart" "35" "" @@ -12394,7 +11910,6 @@ "Cartridge.MD5" "9bb136b62521c67ac893213e01dd338f" "Cartridge.Name" "Spike's Peak (1983) (Xonox) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "235" "Display.Width" "152" @@ -12456,7 +11971,6 @@ "Cartridge.Name" "Laseresal 2002 (PAL-60) (PD)" "Cartridge.Manufacturer" "Andrew Wallace" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "" "Cartridge.MD5" "9c6d65bd3b477aace0376f705b354d68" @@ -12491,7 +12005,6 @@ "Cartridge.MD5" "9d0befa555f003069a21d2f6847ad962" "Cartridge.Name" "Vanguard (1982) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -12500,7 +12013,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "EIZ-002-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "52" "" @@ -12539,7 +12051,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2634" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "227" "Display.Width" "152" "Display.XStart" "8" @@ -12612,7 +12123,6 @@ "Cartridge.MD5" "9ed0f2aa226c34d4f55f661442e8f22a" "Cartridge.Name" "Fox & Goat (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -12655,7 +12165,6 @@ "Cartridge.MD5" "9eeb40f04a27efb1c68ba1d25e606607" "Cartridge.Name" "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)" -"Display.Format" "PAL" "Display.YStart" "59" "Display.Width" "152" "Display.XStart" "8" @@ -12687,7 +12196,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.Height" "228" "Display.YStart" "45" "" @@ -12713,7 +12221,6 @@ "Cartridge.Manufacturer" "Parker Bros / Thomas Jentzsch" "Cartridge.Name" "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Cartridge.Type" "E0" "Display.Format" "PAL60" "Display.YStart" "38" "Display.Height" "192" @@ -12731,7 +12238,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2688" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "152" "Display.XStart" "8" @@ -12776,7 +12282,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "61" "Display.Width" "152" @@ -12803,7 +12308,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -12842,7 +12346,6 @@ "Cartridge.MD5" "a0e2d310e3e98646268200c8f0f08f46" "Cartridge.Name" "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "55" "Display.Height" "230" "" @@ -12852,7 +12355,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-049" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "136" "Display.XStart" "12" "Display.YStart" "53" @@ -12889,7 +12391,6 @@ "Cartridge.MD5" "a1ca372388b6465a693e4626cc98b865" "Cartridge.Name" "Der Vielfrass (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -12905,7 +12406,6 @@ "Cartridge.Name" "Motocross (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "249" "Display.YStart" "45" "" @@ -12915,7 +12415,6 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "11003" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "198" "Display.YStart" "58" "" @@ -12958,7 +12457,6 @@ "Cartridge.MD5" "a2424c1a0c783d7585d701b1c71b5fdc" "Cartridge.Name" "Video Pinball (1980) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -12997,7 +12495,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.YStart" "57" "" @@ -13039,7 +12536,6 @@ "Cartridge.MD5" "a3f2a0fcf74bbc5fa763b0ee979b05b1" "Cartridge.Name" "Eishockey-Fieber (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "250" "Display.YStart" "53" "" @@ -13051,7 +12547,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Width" "136" "Display.XStart" "8" "Display.YStart" "52" @@ -13087,7 +12582,6 @@ "Cartridge.MD5" "a406d2f6d84e61d842f4cb13b2b1cfa7" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [!]" "Cartridge.Manufacturer" "Tigervision" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -13124,7 +12618,6 @@ "Cartridge.MD5" "a537879d8e82e1061d3ad800479d3b84" "Cartridge.Name" "Brooni (PAL) (2001) (Andrew Wallace) (PD)" -"Display.Format" "PAL" "Display.YStart" "46" "" @@ -13134,7 +12627,6 @@ "Cartridge.MD5" "a511f7ee13e4b35512f9217a677b4028" "Cartridge.Name" "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "189" "" @@ -13188,7 +12680,6 @@ "Cartridge.MD5" "a56b642a3d3ab9bbeee63cd44eb73216" "Cartridge.Name" "Gopher (1982) (Carrere Video) (PAL) [!]" "Cartridge.Manufacturer" "Carrere Video" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -13218,7 +12709,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "208" "Display.YStart" "64" "" @@ -13228,7 +12718,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-007" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -13238,7 +12727,6 @@ "Cartridge.MD5" "a60598ad7ee9c5ccad42d5b0df1570a1" "Cartridge.Name" "Surround (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "237" "Display.YStart" "36" "" @@ -13248,7 +12736,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "53" @@ -13277,7 +12764,6 @@ "Cartridge.MD5" "a69f5b1761a8a11c98e706ec7204937f" "Cartridge.Name" "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]" "Cartridge.Manufacturer" "TechnoVision" -"Display.Format" "PAL" "Display.YStart" "47" "Display.Height" "230" "Display.Phosphor" "Yes" @@ -13286,7 +12772,6 @@ "Cartridge.MD5" "a7523db9a33e9417637be0e71fa4377c" "Cartridge.Name" "Gangster (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -13295,7 +12780,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26118" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "144" "Display.XStart" "8" @@ -13356,7 +12840,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2606" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "63" "" @@ -13396,7 +12879,6 @@ "Cartridge.MD5" "a875f0a919129b4f1b5103ddd200d2fe" "Cartridge.Name" "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "250" "Display.YStart" "35" "" @@ -13452,7 +12934,6 @@ "Cartridge.MD5" "a957dbe7d85ea89133346ad56fbda03f" "Cartridge.Name" "Asteroids (1979) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "44" "Display.Height" "220" "Display.Phosphor" "Yes" @@ -13509,7 +12990,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2656" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "236" "Display.YStart" "35" "Display.Phosphor" "Yes" @@ -13529,7 +13009,6 @@ "Cartridge.MD5" "aab840db22075aa0f6a6b83a597f8890" "Cartridge.Name" "Hell Driver (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Format" "PAL" "Display.Height" "209" "Display.YStart" "61" "" @@ -13541,7 +13020,6 @@ "Cartridge.MD5" "ab10f2974dee73dab4579f0cab35fca6" "Cartridge.Name" "Lilly Adventure (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "232" "Display.Width" "152" "Display.XStart" "8" @@ -13571,7 +13049,6 @@ "Cartridge.MD5" "aafc79ffc32c4c9b2d73c8ada7602cfe" "Cartridge.Name" "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "144" "Display.XStart" "8" @@ -13641,7 +13118,6 @@ "Cartridge.MD5" "abb740bea0a6842831b4f53112fb8145" "Cartridge.Name" "Qb (V1.01) (PAL) (2001) (Retroactive)" -"Display.Format" "PAL" "Display.YStart" "50" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -13655,7 +13131,6 @@ "Cartridge.MD5" "abb741c83f665d73c86d90a7d9292a9b" "Cartridge.Name" "Space Attack (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "201" "Display.YStart" "58" "" @@ -13665,7 +13140,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-042" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "209" "Display.Width" "152" "Display.XStart" "8" @@ -13697,7 +13171,6 @@ "Cartridge.MD5" "ac5f78bae0638cf3f2a0c8d07eb4df69" "Cartridge.Name" "Minesweeper (V.99) (Soren Gust) (PD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "ac53b83e1b57a601eeae9d3ce1b4a458" @@ -13709,7 +13182,6 @@ "Cartridge.MD5" "ac26d7d37248d1d8eac5eccacdbef8db" "Cartridge.Name" "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "42" "" @@ -13719,7 +13191,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-012" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "41" "" @@ -13765,14 +13236,12 @@ "Cartridge.MD5" "b0ba51723b9330797985808db598fc31" "Cartridge.Name" "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.Height" "246" "" "Cartridge.MD5" "adf1afac3bdd7b36d2eda5949f1a0fa3" "Cartridge.Name" "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -13788,7 +13257,6 @@ "Cartridge.MD5" "ad42e3ca3144e2159e26be123471bffc" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "" @@ -13809,7 +13277,6 @@ "Cartridge.Rarity" "Common" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.Height" "230" "Display.Width" "152" "Display.XStart" "8" @@ -13828,7 +13295,6 @@ "Cartridge.MD5" "afe4eefc7d885c277fc0649507fbcd84" "Cartridge.Name" "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "57" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -13864,7 +13330,6 @@ "Cartridge.Name" "Qb (V2.02) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -13877,7 +13342,6 @@ "Cartridge.MD5" "ae465044dfba287d344ba468820995d7" "Cartridge.Name" "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Goliath-Funvision" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -13897,7 +13361,6 @@ "Cartridge.MD5" "ae682886058cd6981c4b8e93e7b019cf" "Cartridge.Name" "Qb (V0.12) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -13960,7 +13423,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "144" "Display.XStart" "8" @@ -14001,7 +13463,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-048-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "152" "Display.XStart" "8" @@ -14013,7 +13474,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "002-01" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.YStart" "64" "" @@ -14037,7 +13497,6 @@ "Cartridge.MD5" "b0c47e426c7f799aee2c40422df8f56a" "Cartridge.Name" "Space Treat (PAL) (Fabrizio Zavagli)" -"Display.Format" "PAL" "" "Cartridge.MD5" "b12a7f63787a6bb08e683837a8ed3f18" @@ -14060,7 +13519,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-217" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -14084,7 +13542,6 @@ "Cartridge.MD5" "b17b9cc4103844dcda54f77f44acc93a" "Cartridge.Name" "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "61" @@ -14116,7 +13573,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26171" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -14132,7 +13588,6 @@ "Cartridge.MD5" "b4f87ce75f7329c18301a2505fe59cd3" "Cartridge.Name" "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "152" "Display.XStart" "8" @@ -14162,7 +13617,6 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "5861 A030" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "226" "Display.Width" "152" "Display.XStart" "8" @@ -14183,7 +13637,6 @@ "Cartridge.MD5" "b29359f7de62fed6e6ad4c948f699df8" "Cartridge.Name" "Labyrinth (Goliath) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "52" "Display.Height" "225" "" @@ -14202,7 +13655,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5080" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E0" "Display.Height" "180" "Display.YStart" "47" "Display.Phosphor" "Yes" @@ -14217,7 +13669,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26155" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -14227,7 +13678,6 @@ "Cartridge.MD5" "b3017e397f74efd53caf8fae0a38e3fe" "Cartridge.Name" "Qb (2.12) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -14247,7 +13697,6 @@ "Cartridge.MD5" "b392964e8b1c9c2bed12246f228011b2" "Cartridge.Name" "Name This Game (AKA Octopus) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -14256,7 +13705,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99001" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "235" "Display.Width" "152" "Display.XStart" "8" @@ -14289,7 +13737,6 @@ "Cartridge.MD5" "b49331b237c8f11d5f36fe2054a7b92b" "Cartridge.Name" "Galactic (G) (Funvision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Funvision" -"Display.Format" "PAL" "Display.Height" "208" "Display.YStart" "64" "" @@ -14313,7 +13760,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -14323,7 +13769,6 @@ "Cartridge.MD5" "b59417d083b0be2d49a7d93769880a4b" "Cartridge.Name" "Donkey Kong (1983) (Pet Boat) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "60" "" @@ -14333,7 +13778,6 @@ "Cartridge.ModelNo" "CX2694" "Cartridge.Note" "Game crashes after car starts first turn (bad rom dump)" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "190" "Display.YStart" "43" "" @@ -14354,7 +13798,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "227" "Display.YStart" "43" "Display.Phosphor" "Yes" @@ -14435,7 +13878,6 @@ "Cartridge.MD5" "b702641d698c60bcdc922dbd8c9dd49c" "Cartridge.Name" "Space War (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "202" "Display.YStart" "62" "" @@ -14445,7 +13887,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "40" "Emulation.HmoveBlanks" "No" "" @@ -14453,7 +13894,6 @@ "Cartridge.MD5" "b7345220a0c587f3b0c47af33ebe533c" "Cartridge.Name" "Landungskommando (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "56" "" @@ -14474,7 +13914,6 @@ "Cartridge.MD5" "b79fe32320388a197ac3a0b932cc2189" "Cartridge.Name" "Moonsweeper (1983) (Imagic) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -14484,7 +13923,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG201" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "259" "Display.YStart" "37" "" @@ -14494,7 +13932,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "2695 / PB5820" "Cartridge.Rarity" "Extremely Rare" -"Cartridge.Type" "E0" "Display.Phosphor" "Yes" "" @@ -14577,7 +14014,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2667" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -14586,7 +14022,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Note" "Uses the Paddle (left) and Joystick (right) Controllers" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "57" @@ -14596,7 +14031,6 @@ "Cartridge.Name" "James Bond 007 (1983) (Parker Bros) [b1]" "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5110" -"Cartridge.Type" "E0" "Cartridge.Rarity" "Rare" "Display.Phosphor" "Yes" "" @@ -14614,7 +14048,6 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-009" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -14624,7 +14057,6 @@ "Cartridge.MD5" "bce93984b920e9b56cf24064f740fe78" "Cartridge.Name" "Checkers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Width" "140" "Display.XStart" "20" "Display.YStart" "50" @@ -14633,7 +14065,6 @@ "Cartridge.MD5" "b9f9c0fed0db08c34346317f3957a945" "Cartridge.Name" "Chopper Command (1982) (Supervision) (PAL) [p1] [!]" "Cartridge.Manufacturer" "Supervision" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -14690,7 +14121,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-201" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "61" "Display.Width" "152" @@ -14755,7 +14185,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26136" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -14765,7 +14194,6 @@ "Cartridge.MD5" "bc3057a35319aae3a5cd87a203736abe" "Cartridge.Name" "Time Warp (CCE) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Format" "PAL" "" "Cartridge.MD5" "bc703ea6afb20bc089f04d8c9d79a2bd" @@ -14797,7 +14225,6 @@ "Cartridge.MD5" "bce4c291d0007f16997faa5c4db0a6b8" "Cartridge.Name" "Weltraum Tunnel (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "40" "" @@ -14824,7 +14251,6 @@ "Cartridge.Name" "Night Stalker (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "206" "Display.YStart" "61" "Display.Width" "152" @@ -14841,7 +14267,6 @@ "Cartridge.MD5" "bda1463e02ae3a6e1107ffe1b572efd2" "Cartridge.Name" "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "43" "Display.Height" "229" "Display.Width" "152" @@ -14857,7 +14282,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11005" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "144" "Display.XStart" "8" @@ -14869,7 +14293,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5050" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "41" "" @@ -14877,7 +14300,6 @@ "Cartridge.MD5" "bdecc81f740200780db04a107c3a1eba" "Cartridge.Name" "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -14894,7 +14316,6 @@ "Cartridge.MD5" "be2870a0120fd28d25284e9ccdcbdc99" "Cartridge.Name" "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)" -"Cartridge.Type" "E0" "Display.Height" "192" "Display.YStart" "38" "" @@ -14941,7 +14362,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -14976,7 +14396,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2656" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -14987,7 +14406,6 @@ "Cartridge.MD5" "c02e1afa0671e438fd526055c556d231" "Cartridge.Name" "A-Team, The (Atari) (Prototype) (PAL-60) [!]" -"Display.Format" "PAL" "" "Cartridge.MD5" "c00734a2233ef683d9b6e622ac97a5c8" @@ -15017,7 +14435,6 @@ "Cartridge.MD5" "bffe34516aaa3cbf5d307eab382a7e95" "Cartridge.Name" "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)" -"Display.Format" "PAL" "" "Cartridge.MD5" "c00b65d1bae0aef6a1b5652c9c2156a1" @@ -15056,7 +14473,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2696" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "191" "Display.YStart" "66" "" @@ -15064,7 +14480,6 @@ "Cartridge.MD5" "c4bbbb0c8fe203cbd3be2e318e55bcc0" "Cartridge.Name" "Atlantis (1982) (Imagic) (PAL) [p1][!]" "Cartridge.Manufacturer" "Imagic" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -15121,7 +14536,6 @@ "Cartridge.MD5" "c08d0cee43077d3055febb00e5745c1d" "Cartridge.Name" "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -15165,7 +14579,6 @@ "Cartridge.Note" "Uses Joystick (left) and Keypad (right) Controllers" "Cartridge.Rarity" "Uncommon" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "64" "" @@ -15173,7 +14586,6 @@ "Cartridge.MD5" "c221607529cabc93450ef25dbac6e8d2" "Cartridge.Name" "Color Test (26-09-2002) (Eckhard Stolberg)" "Console.LeftDifficulty" "A" -"Display.Format" "PAL" "Display.YStart" "53" "" @@ -15194,7 +14606,6 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "MT5662" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "55" @@ -15212,7 +14623,6 @@ "Cartridge.Name" "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -15229,7 +14639,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2646 / 4975185" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "206" "Display.YStart" "54" "" @@ -15238,7 +14647,6 @@ "Cartridge.Name" "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Parker Bros / Thomas Jentzsch" "Cartridge.Rarity" "Prototype (Video Format Conversion)" -"Cartridge.Type" "E0" "" "Cartridge.MD5" "c28b29764c2338b0cf95537cc9aad8c9" @@ -15250,7 +14658,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" -"Cartridge.Type" "E0" "Display.Height" "206" "Display.YStart" "37" "" @@ -15258,7 +14665,6 @@ "Cartridge.MD5" "c471b97446a85304bbac021c57c2cb49" "Cartridge.Name" "Boing! (1983) (First Star Software) (PAL) [!]" "Cartridge.Manufacturer" "First Star Software" -"Display.Format" "PAL" "Display.Height" "183" "Display.Width" "152" "Display.XStart" "8" @@ -15288,7 +14694,6 @@ "Cartridge.Name" "Ghostbusters II (1992) (Salu) (PAL) [!]" "Cartridge.Manufacturer" "Salu" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "242" "Display.YStart" "42" "Display.Phosphor" "Yes" @@ -15297,7 +14702,6 @@ "Cartridge.MD5" "c31a17942d162b80962cb1f7571cd1d5" "Cartridge.Name" "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -15318,7 +14722,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2663" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "225" "Display.Width" "144" "Display.XStart" "8" @@ -15330,7 +14733,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2641 / 99807 / 75105" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "226" "Display.YStart" "45" "" @@ -15391,7 +14793,6 @@ "Cartridge.MD5" "c47244f5557ae12c61e8e01c140e2173" "Cartridge.Name" "Jungle Hunt (1982) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "196" "Display.Width" "152" @@ -15403,7 +14804,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2697" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "206" "Display.YStart" "52" "" @@ -15430,7 +14830,6 @@ "Cartridge.MD5" "c5124e7d7a8c768e5a18bde8b54aeb1d" "Cartridge.Name" "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -15451,7 +14850,6 @@ "Cartridge.MD5" "c4d888bcf532e7c9c5fdeafbb145266a" "Cartridge.Name" "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]" -"Display.Format" "PAL" "Display.Height" "235" "Display.Phosphor" "Yes" "" @@ -15496,7 +14894,6 @@ "Cartridge.MD5" "c5387fc1aa71f11d2fa82459e189a5f0" "Cartridge.Name" "Weltraum Tunnel (Bitcorp) (PAL) [!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "37" "" @@ -15601,7 +14998,6 @@ "Cartridge.MD5" "c6c63da3bc2e47291f63280e057061d0" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "128-in-1 Junior Console" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "" @@ -15623,7 +15019,6 @@ "Cartridge.MD5" "c745487828a1a6a743488ecebc55ad44" "Cartridge.Name" "Galactic (Starsoft) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -15661,7 +15056,6 @@ "Cartridge.Name" "Ice Hockey (PAL) [p1][!]" "Cartridge.ModelNo" "AX-012" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "245" "Display.YStart" "41" "" @@ -15689,7 +15083,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5370" "Cartridge.Rarity" "Common" -"Cartridge.Type" "E0" "Display.Phosphor" "Yes" "" @@ -15698,7 +15091,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2680" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "152" "Display.XStart" "8" @@ -15747,7 +15139,6 @@ "Cartridge.MD5" "c92cfa54b5d022637fdcbdc1ef640d82" "Cartridge.Name" "Qb (V2.05) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -15756,7 +15147,6 @@ "Cartridge.MD5" "c9196e28367e46f8a55e04c27743148f" "Cartridge.Name" "Stampede (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -15776,7 +15166,6 @@ "Cartridge.MD5" "c9d02d3cfeef8b48fb71cb4520a4aa84" "Cartridge.Name" "Euchre (More for less) (PAL) (22-08-2002) (Erik Eid)" -"Display.Format" "PAL" "" "Cartridge.MD5" "c9c25fc536de9a7cdc5b9a916c459110" @@ -15809,7 +15198,6 @@ "Cartridge.Name" "Air Raiders (1982) (Mattel) (PAL) [p1][!]" "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5861" -"Display.Format" "PAL" "Display.Height" "226" "Display.YStart" "46" "Display.Width" "152" @@ -15838,7 +15226,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26110" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "174" "Display.Width" "144" "Display.XStart" "8" @@ -15848,7 +15235,6 @@ "Cartridge.MD5" "ca7aaebd861a9ef47967d31c5a6c4555" "Cartridge.Name" "Home Run (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "220" "Display.Width" "152" "Display.XStart" "8" @@ -15864,7 +15250,6 @@ "Cartridge.MD5" "ca50cc4b21b0155255e066fcd6396331" "Cartridge.Name" "Raumpatrouille (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "61" "Display.Phosphor" "Yes" @@ -15889,7 +15274,6 @@ "Cartridge.Manufacturer" "Ariola" "Cartridge.ModelNo" "VG-01" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -15899,7 +15283,6 @@ "Cartridge.ModelNo" "AZ-028" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -15920,7 +15303,6 @@ "Cartridge.MD5" "cb4a7b507372c24f8b9390d22d54a918" "Cartridge.Name" "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]" "Cartridge.Manufacturer" "ITT" -"Display.Format" "PAL" "Display.Height" "200" "Display.YStart" "64" "" @@ -15962,8 +15344,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5060" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E0" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -16029,7 +15409,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -16039,7 +15418,6 @@ "Cartridge.MD5" "cc3d942c6958bd16b1c602623f59e6e1" "Cartridge.Name" "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.Height" "240" "" @@ -16074,7 +15452,6 @@ "Cartridge.MD5" "cd88ef1736497288c4533bcca339f881" "Cartridge.Name" "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -16090,13 +15467,11 @@ "Cartridge.MD5" "ccd6ce508eee4b3fca67212833edcd85" "Cartridge.Name" "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "60" "" "Cartridge.MD5" "cccfe9e9a11b1dad04beba46eefb7351" "Cartridge.Name" "Poker Squares (V0.25) (PAL) (2001) (B. Watson)" -"Display.Format" "PAL" "Display.YStart" "45" "" @@ -16115,7 +15490,6 @@ "Cartridge.Manufacturer" "Ariola" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -16124,7 +15498,6 @@ "Cartridge.MD5" "cd4ded1ede63c4dd09f3dd01bda7458c" "Cartridge.Name" "Laser Gate (Future Video Games) (PAL) [p1][!]" -"Display.Format" "PAL" "" "Cartridge.MD5" "cd3e26786136a4692fd2cb2dfbc1927e" @@ -16160,7 +15533,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Width" "136" "Display.XStart" "8" "Display.YStart" "52" @@ -16194,7 +15566,6 @@ "Cartridge.MD5" "ce243747bf34a2de366f846b3f4ca772" "Cartridge.Name" "Felix Return (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Format" "PAL" "Display.Height" "247" "Display.YStart" "44" "" @@ -16202,7 +15573,6 @@ "Cartridge.MD5" "ce904c0ae58d36d085cd506989116b0b" "Cartridge.Name" "International Soccer (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "152" "Display.XStart" "8" @@ -16273,7 +15643,6 @@ "Cartridge.MD5" "d0cdafcb000b9ae04ac465f17788ad11" "Cartridge.Name" "Alice's Abenteuer (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "240" "Display.Width" "152" "Display.XStart" "8" @@ -16282,7 +15651,6 @@ "Cartridge.MD5" "d0af33865512e9b6900714c26db5fa23" "Cartridge.Name" "Armor Ambush (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "60" "" @@ -16300,7 +15668,6 @@ "Cartridge.Manufacturer" "Rainbow Vision" "Cartridge.ModelNo" "SS-009" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -16336,7 +15703,6 @@ "Cartridge.Name" "Mission Survive (1983) (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Console.LeftDifficulty" "A" -"Display.Format" "PAL" "Display.YStart" "60" "Display.Width" "148" "Display.XStart" "8" @@ -16357,7 +15723,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26159" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "190" "Display.YStart" "64" "" @@ -16554,7 +15919,6 @@ "Cartridge.MD5" "d1d704a7146e95709b57b6d4cac3f788" "Cartridge.Name" "Slot Racers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "61" "" @@ -16563,7 +15927,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "198" "Display.YStart" "64" "" @@ -16577,7 +15940,6 @@ "Cartridge.MD5" "d223bc6f13358642f02ddacfaf4a90c9" "Cartridge.Name" "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "215" "Display.Width" "144" "Display.XStart" "8" @@ -16612,7 +15974,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2618 / 4975123" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "230" "Display.Width" "152" "Display.XStart" "8" @@ -16621,7 +15982,6 @@ "Cartridge.MD5" "dafc3945677ccc322ce323d1e9930beb" "Cartridge.Name" "A-Team, The (Atari) (Prototype) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "59" "" @@ -16630,7 +15990,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Note" "Uses the Paddle (left) and Joystick (right) Controllers" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "57" @@ -16638,7 +15997,6 @@ "Cartridge.MD5" "d341d39774277cee6a1d378a013f92ac" "Cartridge.Name" "Artillery Duel (1983) (Xonox) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "26" "Display.Height" "190" "" @@ -16662,7 +16020,6 @@ "Cartridge.MD5" "d339b95f273f8c3550dc4daa67a4aa94" "Cartridge.Name" "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "55" @@ -16673,7 +16030,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "206" "" @@ -16689,7 +16045,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26140" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.YStart" "17" "" @@ -16706,7 +16061,6 @@ "Cartridge.MD5" "d36308387241e98f813646f346e7f9f7" "Cartridge.Name" "Ghostbuster 2 (PAL) (King Atari)" "Display.YStart" "42" -"Display.Format" "PAL" "Display.Height" "230" "Display.Phosphor" "Yes" "" @@ -16736,7 +16090,6 @@ "Cartridge.MD5" "d39e29b03af3c28641084dd1528aae05" "Cartridge.Name" "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Goliath-Funvision" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -16760,14 +16113,12 @@ "Cartridge.MD5" "d47387658ed450db77c3f189b969cc00" "Cartridge.Name" "Westward Ho (Playground) (PAL)" "Cartridge.Manufacturer" "Playaround" -"Display.Format" "PAL" "Display.YStart" "64" "" "Cartridge.MD5" "d4942f4b55313ff269488527d84ce35c" "Cartridge.Name" "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]" "Display.YStart" "64" -"Display.Format" "PAL" "Display.Height" "200" "" @@ -16832,7 +16183,6 @@ "Cartridge.MD5" "d61629bbbe035f45552e31cef7d591b2" "Cartridge.Name" "Atari Logo Demo (PD) (PAL)" -"Display.Format" "PAL" "Display.YStart" "56" "" @@ -16848,7 +16198,6 @@ "Cartridge.MD5" "d57913088e0c49ac3a716bf9837b284f" "Cartridge.Name" "Pressure Cooker (1983) (Activision) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "200" "Display.Width" "152" @@ -16886,7 +16235,6 @@ "Cartridge.MD5" "d6dc9b4508da407e2437bfa4de53d1b2" "Cartridge.Name" "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]" "Cartridge.Manufacturer" "HomeVision" -"Display.Format" "PAL" "Display.Height" "205" "Display.YStart" "67" "" @@ -16899,7 +16247,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Format" "PAL" "Display.Height" "229" "Display.YStart" "44" "" @@ -16914,7 +16261,6 @@ "Cartridge.ModelNo" "AX-016" "Cartridge.Note" "Use Color/BW switch to change between galactic chart and front views" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -16942,7 +16288,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-202" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "64" @@ -17009,7 +16354,6 @@ "Cartridge.MD5" "d816fea559b47f9a672604df06f9d2e3" "Cartridge.Name" "Fun with Numbers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "22" "" @@ -17027,7 +16371,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "209" "Display.YStart" "64" "" @@ -17052,7 +16395,6 @@ "Cartridge.Manufacturer" "Starsoft" "Display.Height" "217" "Display.YStart" "59" -"Display.Format" "PAL" "" "Cartridge.MD5" "d8df256c0d89e494a9fb3e9abb8e44ac" @@ -17060,7 +16402,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3312" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "50" "" @@ -17075,7 +16416,6 @@ "Cartridge.MD5" "d89fedded0436fdeda7c3c37e2fb7cf1" "Cartridge.Name" "Surround (1978) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "226" "Display.YStart" "45" "" @@ -17090,7 +16430,6 @@ "Cartridge.MD5" "d8e4c8e2d210270cd1e0f6d1b4582b91" "Cartridge.Name" "Subterrenea (1983) (Imagic) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "54" "" @@ -17099,7 +16438,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "197" "Display.YStart" "64" "" @@ -17109,7 +16447,6 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2002" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "" "Cartridge.MD5" "d912312349d90e9d41a9db0d5cd3db70" @@ -17145,7 +16482,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26129" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -17300,7 +16636,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99005" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "225" "Display.YStart" "25" "" @@ -17336,7 +16671,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2631" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.YStart" "38" "" @@ -17369,7 +16703,6 @@ "Cartridge.MD5" "dbdd21e1ee3d72119e8cd14d943c585b" "Cartridge.Name" "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "44" "" @@ -17380,7 +16713,6 @@ "Cartridge.MD5" "dc81c4805bf23959fcf2c649700b82bf" "Cartridge.Name" "No Escape! (1983) (Imagic) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "50" "Display.Height" "230" "" @@ -17394,7 +16726,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3000" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.YStart" "54" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -17412,14 +16743,12 @@ "Cartridge.MD5" "dd08e18cfee87a0e7fc19a684b36e124" "Cartridge.Name" "Kangaroo (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "200" "" "Cartridge.MD5" "dd17711a30ad60109c8beace0d4a76e8" "Cartridge.Name" "Karate (1982) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "27" "Display.Height" "217" "" @@ -17429,7 +16758,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99006" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "250" "Display.YStart" "55" "" @@ -17443,7 +16771,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99005" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "225" "Display.YStart" "25" "" @@ -17455,7 +16782,6 @@ "Cartridge.MD5" "de29e46dbea003c3c09c892d668b9413" "Cartridge.Name" "Carnival (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Format" "PAL" "Display.Height" "212" "Display.YStart" "50" "" @@ -17463,7 +16789,6 @@ "Cartridge.MD5" "de1e9fb700baf8d2e5ae242bffe2dbda" "Cartridge.Name" "Commando (1988) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Height" "191" "Display.Width" "152" "Display.XStart" "8" @@ -17526,7 +16851,6 @@ "Cartridge.Name" "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "152" "Display.XStart" "8" @@ -17586,7 +16910,6 @@ "Cartridge.Rarity" "Extremely Rare" "Display.Height" "194" "Display.YStart" "38" -"Display.Format" "PAL" "" "Cartridge.MD5" "de7bca4e569ad9d3fd08ff1395e53d2d" @@ -17618,7 +16941,6 @@ "Cartridge.Manufacturer" "Cooper Black" "Display.Height" "233" "Display.YStart" "36" -"Display.Format" "PAL" "" "Cartridge.MD5" "df4aea767cdf6a3f138255092e84d713" @@ -17650,7 +16972,6 @@ "Cartridge.MD5" "e02156294393818ff872d4314fc2f38e" "Cartridge.Name" "Dice Puzzle (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Panda" -"Display.Format" "PAL" "Display.YStart" "40" "Display.Height" "244" "Display.Phosphor" "Yes" @@ -17672,7 +16993,6 @@ "Cartridge.MD5" "df753cb87d3af4d03f694ab848638108" "Cartridge.Name" "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "53" "" @@ -17686,7 +17006,6 @@ "Cartridge.MD5" "dfad86dd85a11c80259f3ddb6151f48f" "Cartridge.Name" "My Golf (1990)" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "144" "Display.XStart" "8" @@ -17715,7 +17034,6 @@ "Cartridge.MD5" "e020f612255e266a8a6a9795a4df0c0f" "Cartridge.Name" "Universal Chaos (Telegames) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "46" "" @@ -17732,13 +17050,11 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2487" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.YStart" "53" "" "Cartridge.MD5" "e0221c95aa657f5764eeeb64c8429258" "Cartridge.Name" "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)" -"Cartridge.Type" "E0" "Display.Height" "192" "Display.YStart" "38" "" @@ -17746,7 +17062,6 @@ "Cartridge.MD5" "e0b24c3f40a46cda52e29835ab7ad660" "Cartridge.Name" "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "227" "Display.Width" "152" "Display.XStart" "8" @@ -17794,14 +17109,12 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "36" "" "Cartridge.MD5" "e150f0d14f013a104b032305c0ce23ef" "Cartridge.Name" "China Syndrome (1982) (Spectravideo) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "50" "Display.Height" "217" "Display.Phosphor" "Yes" @@ -17832,7 +17145,6 @@ "Cartridge.Name" "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-020" -"Display.Format" "PAL" "Display.Height" "195" "Display.Width" "152" "Display.XStart" "8" @@ -17876,7 +17188,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5590" "Cartridge.Rarity" "Prototype" -"Cartridge.Type" "E0" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "30" @@ -17913,7 +17224,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "204" "Display.Width" "144" "Display.XStart" "8" @@ -17926,7 +17236,6 @@ "Cartridge.MD5" "e2ca84a2bb63d1a210ebb659929747a9" "Cartridge.Name" "Cosmic Creeps (1982) (Telesys) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "57" "Display.Height" "212" "Display.Phosphor" "Yes" @@ -17960,7 +17269,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "198" "Display.Width" "152" "Display.XStart" "8" @@ -17976,7 +17284,6 @@ "Cartridge.MD5" "e5fcc62e1d73706be7b895e887e90f84" "Cartridge.Name" "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "39" "" @@ -17992,7 +17299,6 @@ "Cartridge.MD5" "e37c8055d70979af354251ebe9f1b7dd" "Cartridge.Name" "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.YStart" "37" "Display.Height" "240" "" @@ -18035,7 +17341,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2609 / 4975186" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "256" "" @@ -18051,7 +17356,6 @@ "Cartridge.MD5" "e3c35eac234537396a865d23bafb1c84" "Cartridge.Name" "Nuts (Technovision) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "42" "" @@ -18071,7 +17375,6 @@ "Cartridge.MD5" "e3ed4ba3361756970f076e46e9cad1d2" "Cartridge.Name" "Tennis (1981) (Activision) (PAL) [p1][o1]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -18087,7 +17390,6 @@ "Cartridge.MD5" "e4519d584bb1663ff2734f16c983fa2b" "Cartridge.Name" "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "45" "Display.Height" "229" "Display.Width" "152" @@ -18128,7 +17430,6 @@ "Cartridge.MD5" "e505bd8e59e31aaed20718d47b15c61b" "Cartridge.Name" "Condor Attack (High-Score Games) (PAL) [!]" "Cartridge.Manufacturer" "High-Score Games" -"Display.Format" "PAL" "Display.YStart" "60" "" @@ -18145,7 +17446,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5110" "Cartridge.Rarity" "Rare" -"Cartridge.Type" "E0" "Display.Phosphor" "Yes" "" @@ -18187,12 +17487,10 @@ "Cartridge.MD5" "e5d5085123a98c1e61818caa2971e999" "Cartridge.Name" "Euchre (PAL) (Erik Eid) (PD)" -"Display.Format" "PAL" "" "Cartridge.MD5" "e5d72ff8bab4450be57785cc9e83f3c0" "Cartridge.Name" "Kung Fu Superkicks (Telegames) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "59" "Display.Height" "195" "" @@ -18218,14 +17516,11 @@ "Cartridge.MD5" "e61210293b14c9c4ecc91705072c6a7e" "Cartridge.Name" "Bugs (1983) (Gameworld) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "42" "" "Cartridge.MD5" "e600f5e98a20fafa47676198efe6834d" "Cartridge.Name" "Gyruss (1984) (Parker Bros) (PAL) [!]" -"Cartridge.Type" "E0" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "YES" "" @@ -18286,7 +17581,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "194" "Display.Width" "144" "Display.XStart" "8" @@ -18309,7 +17603,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3211" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "64" "" @@ -18327,7 +17620,6 @@ "Cartridge.MD5" "e7dd8c2e6c100044002c1086d02b366e" "Cartridge.Name" "Barnstorming (1982) (Activision) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Width" "152" "Display.XStart" "8" @@ -18341,7 +17633,6 @@ "Cartridge.MD5" "e784a9d26707cfcd170a4c1c60422a72" "Cartridge.Name" "Gefecht im All (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -18354,7 +17645,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5900" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "240" "Display.Width" "144" "Display.XStart" "8" @@ -18383,7 +17673,6 @@ "Cartridge.MD5" "e7f005ddb6902c648de098511f6ae2e5" "Cartridge.Name" "CompuMate (Spectravideo & Universum) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo & Universum" -"Display.Format" "PAL" "Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -18398,7 +17687,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2601" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "39" "" @@ -18423,7 +17711,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5663" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "196" "Display.YStart" "64" "Display.Width" "144" @@ -18455,7 +17742,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2655 / 4975167" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "45" "Display.Phosphor" "Yes" @@ -18474,7 +17760,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11012" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "187" "Display.Width" "136" "Display.XStart" "12" @@ -18508,7 +17793,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5370" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Phosphor" "Yes" "" @@ -18530,7 +17814,6 @@ "Cartridge.Manufacturer" "Sancho" "Cartridge.ModelNo" "TEC004" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "43" "" @@ -18552,7 +17835,6 @@ "Cartridge.MD5" "f8c1c4a41303bd40b0d6c81bfaf8573b" "Cartridge.Name" "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]" -"Display.Format" "PAL" "Display.YStart" "42" "Display.Height" "240" "" @@ -18605,7 +17887,6 @@ "Cartridge.MD5" "eb46e99ec15858f8cd8c91cef384ce09" "Cartridge.Name" "Ground Zero (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "8" @@ -18632,7 +17913,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26150" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "205" "Display.Width" "152" "Display.XStart" "4" @@ -18671,7 +17951,6 @@ "Cartridge.MD5" "ec407a206b718a0a9f69b03e920a0185" "Cartridge.Name" "Landung in der Normandie (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "" "Cartridge.MD5" "ebf9038e927e6a0db3e0d170c59911e6" @@ -18683,7 +17962,6 @@ "Cartridge.MD5" "eb9712e423b57f0b07ccd315bb9abf61" "Cartridge.Name" "Qb (V2.04) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -18694,7 +17972,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "192" "Display.Width" "144" "Display.XStart" "8" @@ -18734,7 +18011,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11005" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "193" "Display.Width" "144" "Display.XStart" "8" @@ -18744,7 +18020,6 @@ "Cartridge.MD5" "ec5d04b7e6cc6641d74d3ba7bb41ebc9" "Cartridge.Name" "Pro Wrestling (Absolute-Activision) (PAL) [!]" "Cartridge.Manufacturer" "Absolute-Activision" -"Display.Format" "PAL" "Display.Height" "184" "Display.Width" "152" "Display.XStart" "8" @@ -18774,7 +18049,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2635 / 4975157" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "188" "Display.YStart" "64" "" @@ -18805,7 +18079,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2626" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "45" "" @@ -18839,7 +18112,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "234" "Display.Width" "136" "Display.XStart" "8" @@ -18874,7 +18146,6 @@ "Cartridge.MD5" "ee6cbedf6c0aac90faa0a8dbc093ffbe" "Cartridge.Name" "My Golf (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Format" "PAL" "Display.Height" "196" "Display.Width" "144" "Display.XStart" "8" @@ -18915,7 +18186,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26192" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "" "Cartridge.MD5" "eec61cc4250df70939d48fe02d7122ac" @@ -18923,7 +18193,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-005" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "206" "Display.Width" "144" "Display.XStart" "8" @@ -18982,7 +18251,6 @@ "Cartridge.MD5" "ef76ea05655a0b62cb1018c92b9b4b7d" "Cartridge.Name" "Strategy X (1982) (Gakken) (PAL) [p1][!]" "Cartridge.Manufacturer" "Gakken" -"Display.Format" "PAL" "" "Cartridge.MD5" "f0536303f49006806bac3aec15738336" @@ -19007,13 +18275,11 @@ "Cartridge.Name" "Milpede (Atari) (Prototype)" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Format" "PAL" "Display.YStart" "50" "" "Cartridge.MD5" "efb47d70b2965ce689e2c5757616b286" "Cartridge.Name" "Time Test Demo (Eckhard Stolberg) (PAL) (PD)" -"Display.Format" "PAL" "Display.Height" "192" "Display.YStart" "36" "" @@ -19021,7 +18287,6 @@ "Cartridge.MD5" "efffafc17b7cb01b9ca35324aa767364" "Cartridge.Name" "See Saw (Cooper Black) (PAL) [p1][!]" "Cartridge.Manufacturer" "Cooper Black" -"Display.Format" "PAL" "Display.Height" "190" "Display.YStart" "42" "" @@ -19038,7 +18303,6 @@ "Cartridge.MD5" "f02ba8b5292bf3017d10553c9b7b2861" "Cartridge.Name" "Xenophobe (1990) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "60" "" @@ -19138,7 +18402,6 @@ "Cartridge.Name" "Ski Run (Funvision) (PAL) [!]" "Cartridge.ModelNo" "TP-607" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "190" "Display.Width" "152" "Display.XStart" "8" @@ -19170,7 +18433,6 @@ "Cartridge.MD5" "f14d5e96ec3380aef57a4b70132c6677" "Cartridge.Name" "Pac Kong (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Format" "PAL" "Display.Height" "215" "Display.Width" "144" "Display.XStart" "8" @@ -19193,7 +18455,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.Height" "246" "" @@ -19205,7 +18466,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "None" -"Display.Format" "PAL" "Display.Height" "225" "Display.YStart" "47" "" @@ -19218,7 +18478,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Format" "PAL" "Display.YStart" "38" "" @@ -19231,7 +18490,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "230" "Display.YStart" "47" "" @@ -19258,7 +18516,6 @@ "Console.LeftDifficulty" "A" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "250" "Display.Width" "152" "Display.XStart" "8" @@ -19267,14 +18524,12 @@ "Cartridge.MD5" "f21813aa050437f0dbc8479864acec6d" "Cartridge.Name" "Sneek 'n Peek (1982) (PAL) [p1][!]" -"Display.Format" "PAL" "Display.Height" "229" "Display.YStart" "51" "" "Cartridge.MD5" "f240ba9f8092d2e8a4c7d82c554bf509" "Cartridge.Name" "Strahlen der Teufelsvoegel (PAL) [p1]" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -19285,7 +18540,6 @@ "Cartridge.MD5" "f2f2cb35fdef063c966c1f5481050ea2" "Cartridge.Name" "Ram It (1982) (Telegames) (PAL) [p1][!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "" "Cartridge.MD5" "f69d4fcf76942fcd9bdf3fd8fde790fb" @@ -19345,7 +18599,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -19363,7 +18616,6 @@ "Cartridge.MD5" "f3dfae774f3bd005a026e29894db40d3" "Cartridge.Name" "See Saw (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Height" "196" "Display.YStart" "64" "" @@ -19384,7 +18636,6 @@ "Cartridge.MD5" "f69bb58b815a6bdca548fa4d5e0d5a75" "Cartridge.Name" "Bowling (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "218" "Display.YStart" "63" "" @@ -19412,7 +18663,6 @@ "Cartridge.MD5" "f48735115ec302ba8bb2d2f3a442e814" "Cartridge.Name" "Dancing Plates (PAL) [p1][!]" -"Display.Format" "PAL" "Display.YStart" "50" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -19446,7 +18696,6 @@ "Cartridge.MD5" "f49a34f1fdd7dc147cbf96ce2ce71b76" "Cartridge.Name" "Qb (Special Edition) (PAL) (Retroactive)" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -19471,7 +18720,6 @@ "Cartridge.MD5" "f5445b52999e229e3789c39e7ee99947" "Cartridge.Name" "Flag Capture (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -19501,7 +18749,6 @@ "Cartridge.Name" "Motocross (Starsoft) (PAL) [a1][!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "249" "Display.YStart" "45" "" @@ -19520,7 +18767,6 @@ "Cartridge.ModelNo" "AZ-028" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "152" "Display.XStart" "8" @@ -19551,7 +18797,6 @@ "Cartridge.Name" "Missile Command (1981) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2638 / 4975166" -"Display.Format" "PAL" "Display.Height" "220" "Display.YStart" "55" "Display.Phosphor" "Yes" @@ -19564,7 +18809,6 @@ "Cartridge.MD5" "f6d512bef1bf253dc935d0e13c3d1462" "Cartridge.Name" "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.YStart" "61" "" @@ -19596,7 +18840,6 @@ "Cartridge.Name" "Cubis (1997) (Eckhard Stolberg)" "Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "" "Cartridge.MD5" "f73d2d0eff548e8fc66996f27acf2b4b" @@ -19613,7 +18856,6 @@ "Cartridge.MD5" "f736864442164b29235e8872013180cd" "Cartridge.Name" "Quest for Quintana Roo (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Format" "PAL" "Display.Height" "195" "Display.YStart" "61" "" @@ -19634,7 +18876,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-012" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "196" "Display.YStart" "76" "" @@ -19675,7 +18916,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-108-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "197" "Display.Width" "152" "Display.XStart" "8" @@ -19687,7 +18927,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5900" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "144" "Display.XStart" "8" "Display.YStart" "51" @@ -19700,7 +18939,6 @@ "Cartridge.MD5" "f802fa61011dd9eb6f80b271bac479d0" "Cartridge.Name" "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "61" @@ -19739,7 +18977,6 @@ "Cartridge.Name" "Panda Chase (HomeVision)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "30" "" @@ -19760,7 +18997,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26111" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "229" "Display.Width" "152" "Display.XStart" "8" @@ -19814,7 +19050,6 @@ "Cartridge.Name" "Laseresal 2002 (PAL) (PD)" "Cartridge.Manufacturer" "Andrew Wallace" "Cartridge.Rarity" "New Release" -"Display.Format" "PAL" "Display.YStart" "47" "Display.Height" "218" "" @@ -19851,7 +19086,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "202" "Display.YStart" "60" "" @@ -19867,7 +19101,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "200" "Display.Width" "144" "Display.XStart" "8" @@ -19908,7 +19141,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "191" "Display.YStart" "63" "Display.Width" "152" @@ -19950,7 +19182,6 @@ "Cartridge.Name" "Tooth Protectors (DSD-Camelot)" "Cartridge.Manufacturer" "DSD-Camelot" "Cartridge.Rarity" "Unbelievably Rare" -"Cartridge.Type" "E0" "Display.Height" "220" "Display.YStart" "26" "Display.Phosphor" "Yes" @@ -19973,7 +19204,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2696" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "191" "Display.YStart" "66" "" @@ -20013,7 +19243,6 @@ "Cartridge.MD5" "fae0b86934a7c5a362281dffebdb43a0" "Cartridge.Name" "Qb (2.07) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.Format" "PAL" "Display.YStart" "64" "Display.Height" "250" "Display.Phosphor" "Yes" @@ -20024,7 +19253,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2681" "Cartridge.Rarity" "Uncommon" -"Display.Format" "PAL" "Display.Height" "199" "Display.Width" "152" "Display.XStart" "4" @@ -20049,7 +19277,6 @@ "Cartridge.MD5" "faffd84f3a8eceee2fa5ea5b0a3e6678" "Cartridge.Name" "Immies & Aggies (Emag) (PAL) [p1][!]" "Cartridge.Manufacturer" "Emag" -"Display.Format" "PAL" "Display.YStart" "49" "" @@ -20108,7 +19335,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Format" "PAL" "Display.Height" "189" "Display.Width" "144" "Display.XStart" "8" @@ -20162,7 +19388,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2646" "Cartridge.Rarity" "Common" -"Display.Format" "PAL" "Display.Height" "223" "Display.YStart" "51" "" @@ -20190,7 +19415,6 @@ "Cartridge.MD5" "fc6052438f339aea373bbc999433388a" "Cartridge.Name" "Slot Machine (1979) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "Display.Height" "256" "Display.YStart" "44" "" @@ -20203,7 +19427,6 @@ "Cartridge.MD5" "fd7464edaa8cc264b97ba0d13e7f0678" "Cartridge.Name" "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Format" "PAL" "Display.Height" "236" "Display.YStart" "49" "" @@ -20228,7 +19451,6 @@ "Cartridge.MD5" "fd6e507b5df68beeeddeaf696b6828fa" "Cartridge.Name" "Boxing (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Format" "PAL" "Display.Width" "140" "Display.XStart" "8" "Display.YStart" "61" @@ -20247,7 +19469,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Width" "152" "Display.XStart" "8" "Display.YStart" "64" @@ -20256,7 +19477,6 @@ "Cartridge.MD5" "fd10915633aea4f9cd8b518a25d62b55" "Cartridge.Name" "Superman (1978) (Atari) (PAL) [a1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Format" "PAL" "" "Cartridge.MD5" "fdf6680b2b1e8054293a39700a765692" @@ -20281,7 +19501,6 @@ "Cartridge.MD5" "fd8b4ee0d57605b35e236e814f706ff1" "Cartridge.Name" "Phoenix (1982) (Atari) (PAL) [a1][!]" -"Display.Format" "PAL" "Display.YStart" "55" "" @@ -20296,7 +19515,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-037-04" "Cartridge.Rarity" "Rare" -"Display.Format" "PAL" "Display.Height" "202" "Display.Width" "152" "Display.XStart" "8" @@ -20309,7 +19527,6 @@ "Cartridge.MD5" "fe0b7f27e3ad50bbf9ff468ee56d553d" "Cartridge.Name" "Lines Demo (Eckhard Stolberg) (PAL) (PD)" -"Display.Format" "PAL" "Display.Height" "192" "Display.YStart" "36" "" @@ -20328,7 +19545,6 @@ "Cartridge.MD5" "feba8686fd0376015258d1152923958a" "Cartridge.Name" "Super Circus (PAL) [!]" -"Display.Format" "PAL" "Display.Height" "192" "Display.YStart" "63" "" @@ -20340,7 +19556,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Format" "PAL" "Display.Height" "240" "Display.YStart" "49" "" @@ -20372,7 +19587,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -20382,7 +19596,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.YStart" "64" "" @@ -20408,7 +19621,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Format" "PAL" "Display.YStart" "50" "" @@ -20462,7 +19674,6 @@ "Cartridge.MD5" "4c606235f4ec5d2a4b89139093a69437" "Cartridge.Name" "Andrew Davies early notBoulderDash demo (PAL)" "Cartridge.Name" "notBoulderDashPAL.bin" -"Display.Format" "PAL" "Display.Phosphor" "YES" "" @@ -20475,14 +19686,12 @@ "Cartridge.Manufacturer" "Aaron Curtis" "Cartridge.Name" "AStar (PAL)" "Cartridge.Rarity" "Homebrew" -"Display.Format" "PAL" "" "Cartridge.MD5" "807a8ff6216b00d52aba2dfea5d8d860" "Cartridge.Manufacturer" "John Payson" "Cartridge.Name" "Strat-O-Gems Deluxe" "Cartridge.Rarity" "Homebrew" -"Display.Format" "PAL" "Display.Height" "250" "" @@ -20500,7 +19709,6 @@ "Cartridge.Sound" "STEREO" "Controller.Left" "PADDLES" "Controller.Right" "PADDLES" -"Display.Format" "PAL" "" "Cartridge.MD5" "2c1ed379ff4e9d3b933ed44c9fbe7ffa" @@ -20535,7 +19743,6 @@ "Cartridge.Manufacturer" "Dave Neuman" "Cartridge.Name" "Space Battle (PAL)" "Cartridge.Rarity" "Homebrew" -"Display.Format" "PAL" "" "Cartridge.MD5" "e959b5a2c882ccaacb43c32790957c2d" diff --git a/stella/src/gui/GameInfoDialog.cxx b/stella/src/gui/GameInfoDialog.cxx index a6f806562..8491f99a6 100644 --- a/stella/src/gui/GameInfoDialog.cxx +++ b/stella/src/gui/GameInfoDialog.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: GameInfoDialog.cxx,v 1.32 2006-12-09 00:25:20 stephena Exp $ +// $Id: GameInfoDialog.cxx,v 1.33 2006-12-26 00:39:44 stephena Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -214,14 +214,15 @@ GameInfoDialog::GameInfoDialog( xpos = 10; ypos = vBorder; lwidth = font.getStringWidth("Use Phosphor: "); - pwidth = font.getStringWidth("PAL60"); + pwidth = font.getStringWidth("Auto-detect"); new StaticTextWidget(myTab, font, xpos, ypos+1, lwidth, fontHeight, "Format:", kTextAlignLeft); myFormat = new PopUpWidget(myTab, font, xpos+lwidth, ypos, pwidth, lineHeight, "", 0, 0); - myFormat->appendEntry("NTSC", 1); - myFormat->appendEntry("PAL", 2); - myFormat->appendEntry("PAL60", 3); + myFormat->appendEntry("Auto-detect", 1); + myFormat->appendEntry("NTSC", 2); + myFormat->appendEntry("PAL", 3); + myFormat->appendEntry("PAL60", 4); wid.push_back(myFormat); ypos += lineHeight + 3; @@ -439,12 +440,14 @@ void GameInfoDialog::loadView() // Display properties s = myGameProperties.get(Display_Format); - if(s == "NTSC") + if(s == "AUTO-DETECT") myFormat->setSelectedTag(1); - else if(s == "PAL") + else if(s == "NTSC") myFormat->setSelectedTag(2); - else if(s == "PAL60") + else if(s == "PAL") myFormat->setSelectedTag(3); + else if(s == "PAL60") + myFormat->setSelectedTag(4); else myFormat->setSelectedTag(0); diff --git a/stella/src/tools/create_props.pl b/stella/src/tools/create_props.pl index dd5d4c47c..4a1d3c910 100755 --- a/stella/src/tools/create_props.pl +++ b/stella/src/tools/create_props.pl @@ -48,7 +48,7 @@ my @prop_defaults = ( "JOYSTICK", "JOYSTICK", "NO", - "NTSC", + "AUTO-DETECT", "0", "160", "34", diff --git a/stella/src/unix/OSystemUNIX.cxx b/stella/src/unix/OSystemUNIX.cxx index 0aa9c39ba..9c4241442 100644 --- a/stella/src/unix/OSystemUNIX.cxx +++ b/stella/src/unix/OSystemUNIX.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystemUNIX.cxx,v 1.22 2006-12-08 16:49:39 stephena Exp $ +// $Id: OSystemUNIX.cxx,v 1.23 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -142,7 +142,7 @@ void OSystemUNIX::mainLoop() } // Only print console information if a console was actually created - if(mySettings->getBool("showinfo") && myConsole) + if(mySettings->getBool("showinfo")) { double executionTime = (double) frameTime / 1000000.0; double framesPerSecond = (double) numberOfFrames / executionTime; @@ -150,11 +150,6 @@ void OSystemUNIX::mainLoop() cout << endl; cout << numberOfFrames << " total frames drawn\n"; cout << framesPerSecond << " frames/second\n"; - cout << endl; - cout << "Cartridge Name: " << myConsole->properties().get(Cartridge_Name); - cout << endl; - cout << "Cartridge MD5: " << myConsole->properties().get(Cartridge_MD5); - cout << endl << endl; } } diff --git a/stella/src/win32/OSystemWin32.cxx b/stella/src/win32/OSystemWin32.cxx index 3f4297f14..4cd5d4917 100644 --- a/stella/src/win32/OSystemWin32.cxx +++ b/stella/src/win32/OSystemWin32.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: OSystemWin32.cxx,v 1.14 2006-12-08 16:49:41 stephena Exp $ +// $Id: OSystemWin32.cxx,v 1.15 2006-12-26 00:39:44 stephena Exp $ //============================================================================ #include @@ -99,8 +99,7 @@ void OSystemWin32::mainLoop() ++numberOfFrames; } - // Only print console information if a console was actually created - if(mySettings->getBool("showinfo") && myConsole) + if(mySettings->getBool("showinfo")) { double executionTime = (double) frameTime / 1000000.0; double framesPerSecond = (double) numberOfFrames / executionTime; @@ -108,11 +107,6 @@ void OSystemWin32::mainLoop() cout << endl; cout << numberOfFrames << " total frames drawn\n"; cout << framesPerSecond << " frames/second\n"; - cout << endl; - cout << "Cartridge Name: " << myConsole->properties().get(Cartridge_Name); - cout << endl; - cout << "Cartridge MD5: " << myConsole->properties().get(Cartridge_MD5); - cout << endl << endl; } }