From 705c97fd4f3039d859cd459b121bd75bde8dc85a Mon Sep 17 00:00:00 2001 From: stephena Date: Thu, 28 Dec 2006 18:31:27 +0000 Subject: [PATCH] Some changes across the board. Lets see if I can remember them all: Fixed annoying timing bug that's bothered me since the 2.0 release. Exiting a ROM and starting another one was causing the new ROM to not start playing sound from the beginning. This was made worse by the new display format auto-detection logic. Basically, the main event loop wasn't being reset from one ROM to another. Moved OSystem::mainLoop() back into the actual OSystem class, and removed it from the UNIX/OSX/Win32/GP2X ports. It's still virtual, though, just in case a port wants to handle all timing itself. Started a massive purge of all enhanced XStart/YStart values from the internal properties. I'll also be removing the 'tiadefaults' argument, and leaning towards a more authentic emulation look and feel. Second pass at image centering in the GP2X port. Now we only do vertical centering, and only on images that won't be scaled in hardware. Reworked creating a new Console. It now takes in the properties and Cartridge required for operation. Re-added changeWidth() and changeHeight() console functionality, since it's proved to be very beneficial. Cleaned up getting info about a cartridge. It was sort of hacky before. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1246 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/common/SoundSDL.cxx | 3 +- stella/src/emucore/Cart.cxx | 9 +- stella/src/emucore/Cart.hxx | 16 +- stella/src/emucore/Console.cxx | 140 +- stella/src/emucore/Console.hxx | 77 +- stella/src/emucore/DefProps.hxx | 3402 ++++++++++---------- stella/src/emucore/EventHandler.cxx | 29 +- stella/src/emucore/EventHandler.hxx | 12 +- stella/src/emucore/OSystem.cxx | 130 +- stella/src/emucore/OSystem.hxx | 57 +- stella/src/emucore/stella.pro | 4449 +-------------------------- stella/src/gp2x/FrameBufferGP2X.cxx | 38 +- stella/src/gp2x/OSystemGP2X.cxx | 38 +- stella/src/gp2x/OSystemGP2X.hxx | 9 +- stella/src/macosx/OSystemMACOSX.cxx | 73 +- stella/src/macosx/OSystemMACOSX.hxx | 11 +- stella/src/unix/OSystemUNIX.cxx | 86 +- stella/src/unix/OSystemUNIX.hxx | 11 +- stella/src/win32/OSystemWin32.cxx | 50 +- stella/src/win32/OSystemWin32.hxx | 11 +- 20 files changed, 2196 insertions(+), 6455 deletions(-) diff --git a/stella/src/common/SoundSDL.cxx b/stella/src/common/SoundSDL.cxx index 64bee886c..28f8a3cd9 100644 --- a/stella/src/common/SoundSDL.cxx +++ b/stella/src/common/SoundSDL.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: SoundSDL.cxx,v 1.34 2006-12-26 22:57:31 azaballa Exp $ +// $Id: SoundSDL.cxx,v 1.35 2006-12-28 18:31:22 stephena Exp $ //============================================================================ #ifdef SOUND_SUPPORT @@ -218,6 +218,7 @@ void SoundSDL::reset() SDL_PauseAudio(1); myIsMuted = false; myLastRegisterSetCycle = 0; + myTIASound.reset(); myRegWriteQueue.clear(); SDL_PauseAudio(0); } diff --git a/stella/src/emucore/Cart.cxx b/stella/src/emucore/Cart.cxx index 5d37ca1e3..f020bfc80 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.25 2006-12-26 17:06:00 stephena Exp $ +// $Id: Cart.cxx,v 1.26 2006-12-28 18:31:22 stephena Exp $ //============================================================================ #include @@ -48,7 +48,7 @@ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cartridge* Cartridge::create(const uInt8* image, uInt32 size, - const Properties& properties, const Settings& settings, string& about) + const Properties& properties, const Settings& settings) { Cartridge* cartridge = 0; @@ -71,7 +71,7 @@ Cartridge* Cartridge::create(const uInt8* image, uInt32 size, type = detected; } - about = buf.str(); + myAboutString = buf.str(); // We should know the cart's type by now so let's create it if(type == "2K") @@ -398,3 +398,6 @@ Cartridge& Cartridge::operator = (const Cartridge&) assert(false); return *this; } + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +string Cartridge::myAboutString; diff --git a/stella/src/emucore/Cart.hxx b/stella/src/emucore/Cart.hxx index 9171015b3..f31872294 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.13 2006-12-26 00:39:43 stephena Exp $ +// $Id: Cart.hxx,v 1.14 2006-12-28 18:31:22 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.13 2006-12-26 00:39:43 stephena Exp $ + @version $Id: Cart.hxx,v 1.14 2006-12-28 18:31:22 stephena Exp $ */ class Cartridge : public Device { @@ -46,11 +46,10 @@ 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, string& about); + const Properties& props, const Settings& settings); public: /** @@ -63,6 +62,11 @@ class Cartridge : public Device */ virtual ~Cartridge(); + /** + Query some information about this cartridge. + */ + static const string& about() { return myAboutString; } + virtual void bank(uInt16 b); // set bank virtual int bank(); // get current bank (-1 if no bankswitching supported) virtual int bankCount(); // count # of banks @@ -78,7 +82,6 @@ class Cartridge : public Device bool bankLocked; private: - /** Try to auto-detect the bankswitching type of the cartridge @@ -119,6 +122,9 @@ class Cartridge : public Device static bool isProbablyE7(const uInt8* image, uInt32 size); private: + // Contains info about this cartridge in string format + static string myAboutString; + // Copy constructor isn't supported by cartridges so make it private Cartridge(const Cartridge&); diff --git a/stella/src/emucore/Console.cxx b/stella/src/emucore/Console.cxx index 25d7205d1..9fac99b85 100644 --- a/stella/src/emucore/Console.cxx +++ b/stella/src/emucore/Console.cxx @@ -13,10 +13,10 @@ // 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.113 2006-12-26 17:06:01 stephena Exp $ +// $Id: Console.cxx,v 1.114 2006-12-28 18:31:22 stephena Exp $ //============================================================================ -#include +#include #include #include #include @@ -58,14 +58,11 @@ #endif // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Console::Console(const uInt8* image, uInt32 size, const string& md5, - OSystem* osystem) +Console::Console(OSystem* osystem, Cartridge* cart, const Properties& props) : myOSystem(osystem), - myIsValidFlag(false), + myProperties(props), myUserPaletteDefined(false) { - Cartridge* cartridge = (Cartridge*) NULL; - ostringstream buf; myControllers[0] = 0; myControllers[1] = 0; myMediaSource = 0; @@ -76,9 +73,6 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, // Attach the event subsystem to the current console myEvent = myOSystem->eventHandler().event(); - // Search for the properties based on MD5 - myOSystem->propSet().getMD5(md5, myProperties); - // A developer can override properties from the commandline setDeveloperProperties(); @@ -87,10 +81,6 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, loadUserPalette(); setColorLossPalette(myOSystem->settings().getBool("colorloss")); - // 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); string right = myProperties.get(Controller_Right); @@ -188,25 +178,21 @@ 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::create(image, size, myProperties, - myOSystem->settings(), myAboutString); - buf << myAboutString; - - if(!cartridge) - return; mySystem->attach(m6502); mySystem->attach(m6532); mySystem->attach(tia); - mySystem->attach(cartridge); + mySystem->attach(cart); // Remember what my media source is myMediaSource = tia; - myCart = cartridge; + myCart = cart; myRiot = m6532; - // Reset, the system to its power-on state - mySystem->reset(); + // Query some info about this console + ostringstream buf; + buf << " Cart Name: " << myProperties.get(Cartridge_Name) << endl + << " Cart MD5: " << myProperties.get(Cartridge_MD5) << endl; // Auto-detect NTSC/PAL mode if it's requested myDisplayFormat = myProperties.get(Display_Format); @@ -219,6 +205,7 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, // the second 30 (useful to get past SuperCharger BIOS) // Unfortunately, this means we have to always enable 'fastscbios', // since otherwise the BIOS loading will take over 250 frames! + mySystem->reset(); int palCount = 0; for(int i = 0; i < 60; ++i) { @@ -231,6 +218,7 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, if(myProperties.get(Display_Format) == "AUTO-DETECT") buf << " Auto-detected display format: " << myDisplayFormat << endl; } + buf << cart->about(); // Make sure height is set properly for PAL ROM if(myDisplayFormat.compare(0, 3, "PAL") == 0) @@ -249,10 +237,10 @@ Console::Console(const uInt8* image, uInt32 size, const string& md5, return; } - mySystem->reset(); // Restart ROM again + // Reset, the system to its power-on state + mySystem->reset(); myAboutString = buf.str(); - myIsValidFlag = true; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -268,12 +256,6 @@ Console::~Console() delete myControllers[1]; } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -const Properties& Console::properties() const -{ - return myProperties; -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::toggleFormat() { @@ -481,12 +463,6 @@ void Console::initializeVideo() setPalette(myOSystem->settings().getString("palette")); } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Console::initializeAudio() -{ - myMediaSource->setSound(myOSystem->sound()); -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Console::setChannels(int channels) { @@ -517,7 +493,7 @@ void Console::setChannels(int channels) Until someone comes up with a more accurate way to emulate frying, I'm leaving this as Fred posted it. -- B. */ -void Console::fry() +void Console::fry() const { for (int ZPmem=0; ZPmem<0x100; ZPmem += rand() % 4) mySystem->poke(ZPmem, mySystem->peek(ZPmem) & (uInt8)rand() % 256); @@ -606,7 +582,89 @@ void Console::changeYStart(int direction) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Console::toggleTIABit(TIA::TIABit bit, const string& bitname, bool show) +void Console::changeWidth(int direction) +{ + uInt32 xstart = atoi(myProperties.get(Display_XStart).c_str()); + Int32 width = atoi(myProperties.get(Display_Width).c_str()); + ostringstream strval; + string message; + + if(direction == +1) // increase Width + { + width += 4; + if((width > 160) || ((width % 4) != 0)) + { + myOSystem->frameBuffer().showMessage("Width at maximum"); + return; + } + else if((width + xstart) > 160) + { + myOSystem->frameBuffer().showMessage("Width no effect"); + return; + } + } + else if(direction == -1) // decrease Width + { + width -= 4; + if(width < 80) + { + myOSystem->frameBuffer().showMessage("Width at minimum"); + return; + } + } + else + return; + + strval << width; + myProperties.set(Display_Width, strval.str()); + mySystem->reset(); + initializeVideo(); + + message = "Width "; + message += strval.str(); + myOSystem->frameBuffer().showMessage(message); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void Console::changeHeight(int direction) +{ + Int32 height = atoi(myProperties.get(Display_Height).c_str()); + ostringstream strval; + string message; + + if(direction == +1) // increase Height + { + height++; + if(height > 256) + { + myOSystem->frameBuffer().showMessage("Height at maximum"); + return; + } + } + else if(direction == -1) // decrease Height + { + height--; + if(height < 100) + { + myOSystem->frameBuffer().showMessage("Height at minimum"); + return; + } + } + else + return; + + strval << height; + myProperties.set(Display_Height, strval.str()); + mySystem->reset(); + initializeVideo(); + + message = "Height "; + message += strval.str(); + myOSystem->frameBuffer().showMessage(message); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void Console::toggleTIABit(TIA::TIABit bit, const string& bitname, bool show) const { bool result = ((TIA*)myMediaSource)->toggleBit(bit); string message = bitname + (result ? " enabled" : " disabled"); @@ -614,7 +672,7 @@ void Console::toggleTIABit(TIA::TIABit bit, const string& bitname, bool show) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void Console::enableBits(bool enable) +void Console::enableBits(bool enable) const { ((TIA*)myMediaSource)->enableBits(enable); string message = string("TIA bits") + (enable ? " enabled" : " disabled"); diff --git a/stella/src/emucore/Console.hxx b/stella/src/emucore/Console.hxx index b2d002a8c..28336ae47 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.54 2006-12-26 17:06:01 stephena Exp $ +// $Id: Console.hxx,v 1.55 2006-12-28 18:31:22 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.54 2006-12-26 17:06:01 stephena Exp $ + @version $Id: Console.hxx,v 1.55 2006-12-28 18:31:22 stephena Exp $ */ class Console { @@ -47,13 +47,11 @@ class Console Create a new console for emulating the specified game using the given game image and operating system. - @param image The ROM image of the game to emulate - @param size The size of the ROM image - @param md5 The md5 of the ROM image - @param osystem The OSystem object to use + @param osystem The OSystem object to use + @param cart The cartridge to use with this console + @param props The properties for the cartridge */ - Console(const uInt8* image, uInt32 size, const string& md5, - OSystem* osystem); + Console(OSystem* osystem, Cartridge* cart, const Properties& props); /** Create a new console object by copying another one @@ -90,7 +88,7 @@ class Console @return The properties being used by the game */ - const Properties& properties() const; + const Properties& properties() const { return myProperties; } /** Get the console switches @@ -130,7 +128,7 @@ class Console /** Query some information about this console. */ - string about() { return myAboutString; } + const string& about() const { return myAboutString; } public: /** @@ -182,22 +180,12 @@ class Console */ void initialize(); - /** - Determine whether the console object is valid (no errors occurred - when it was created) - */ - bool isValid() const { return myIsValidFlag; } - /** Initialize the video subsystem wrt this class. + This is required for changing window size, title, etc. */ void initializeVideo(); - /** - Initialize the audio subsystem wrt this class. - */ - void initializeAudio(); - /** Sets the number of sound channels @@ -208,11 +196,11 @@ class Console /** "Fry" the Atari (mangle memory/TIA contents) */ - void fry(); + void fry() const; /** Change the "Display.XStart" variable. Currently, a system reset is issued - after the change. GUI's may need to resize their viewports. + after the change. @param direction +1 indicates increase, -1 indicates decrease. */ @@ -220,29 +208,45 @@ class Console /** Change the "Display.XStart" variable. Currently, a system reset is issued - after the change. GUI's may need to resize their viewports. + after the change. @param direction +1 indicates increase, -1 indicates decrease. */ void changeYStart(int direction); + /** + Change the "Display.XStart" variable. Currently, a system reset is issued + after the change. + + @param direction +1 indicates increase, -1 indicates decrease. + */ + void changeWidth(int direction); + + /** + Change the "Display.XStart" variable. Currently, a system reset is issued + after the change. + + @param direction +1 indicates increase, -1 indicates decrease. + */ + void changeHeight(int direction); + /** Toggles the TIA bit specified in the method name. */ - void toggleP0Bit() { toggleTIABit(TIA::P0, "P0"); } - void toggleP1Bit() { toggleTIABit(TIA::P1, "P1"); } - void toggleM0Bit() { toggleTIABit(TIA::M0, "M0"); } - void toggleM1Bit() { toggleTIABit(TIA::M1, "M1"); } - void toggleBLBit() { toggleTIABit(TIA::BL, "BL"); } - void togglePFBit() { toggleTIABit(TIA::PF, "PF"); } - void enableBits(bool enable); + void toggleP0Bit() const { toggleTIABit(TIA::P0, "P0"); } + void toggleP1Bit() const { toggleTIABit(TIA::P1, "P1"); } + void toggleM0Bit() const { toggleTIABit(TIA::M0, "M0"); } + void toggleM1Bit() const { toggleTIABit(TIA::M1, "M1"); } + void toggleBLBit() const { toggleTIABit(TIA::BL, "BL"); } + void togglePFBit() const { toggleTIABit(TIA::PF, "PF"); } + void enableBits(bool enable) const; #ifdef ATARIVOX_SUPPORT AtariVox *atariVox() { return vox; } #endif private: - void toggleTIABit(TIA::TIABit bit, const string& bitname, bool show = true); + void toggleTIABit(TIA::TIABit bit, const string& bitname, bool show = true) const; void setDeveloperProperties(); /** @@ -277,7 +281,7 @@ class Console MediaSource* myMediaSource; // Properties for the game - Properties myProperties; + Properties myProperties; // Pointer to the switches on the front of the console Switches* mySwitches; @@ -296,8 +300,8 @@ class Console AtariVox *vox; #endif - // Indicates whether the console was successfully created - bool myIsValidFlag; + // The currently defined display format (NTSC/PAL/PAL60) + string myDisplayFormat; // Indicates whether an external palette was found and // successfully loaded @@ -306,9 +310,6 @@ class Console // 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 and PAL static uInt32 ourNTSCPalette[256]; static uInt32 ourPALPalette[256]; diff --git a/stella/src/emucore/DefProps.hxx b/stella/src/emucore/DefProps.hxx index 80af62443..6603770be 100644 --- a/stella/src/emucore/DefProps.hxx +++ b/stella/src/emucore/DefProps.hxx @@ -8,790 +8,790 @@ regenerated and the application recompiled. */ static const char* DefProps[][23] = { - { "7eaf009a892f03d90682dc1e67e85f07", "", "", "Bounce! (18-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d6fc7a19be76d808aa233415cb583fc", "CCE", "", "Carnival (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "212", "", "", "" }, - { "c5d2834bf98e90245e545573eb7e6bbc", "CCE", "CX26111", "Snoopy and the Red Baron (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, - { "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", "", "", "" }, + { "7eaf009a892f03d90682dc1e67e85f07", "", "", "Bounce! (18-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "3d6fc7a19be76d808aa233415cb583fc", "CCE", "", "Carnival (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "214", "", "", "" }, + { "c5d2834bf98e90245e545573eb7e6bbc", "CCE", "CX26111", "Snoopy and the Red Baron (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1f21666b8f78b65051b7a609f1d48608", "CCE / Ultravision / K-Tel Vision", "C-851", "Condor Attack (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f73e7175474c1c22fb8030c3158e9b3", "Atari", "CX2665", "Frog Pond (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a25bb76e9e773117e567fd4300b1bb23", "", "", "Interleaved ChronoColour Demo (NTSC) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e2ca84a2bb63d1a210ebb659929747a9", "", "", "Cosmic Creeps (1982) (Telesys) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "212", "Yes", "", "" }, - { "0ef64cdbecccb7049752a3de0b7ade14", "Atari", "", "Combat (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, + { "e2ca84a2bb63d1a210ebb659929747a9", "", "", "Cosmic Creeps (1982) (Telesys) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "0ef64cdbecccb7049752a3de0b7ade14", "Atari", "", "Combat (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2e1401b931c9eb064af5e0a7184e598d", "", "", "Death Derby (v0008) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "4d2cef8f19cafeec72d142e34a1bbc03", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6e372f076fb9586aff416144f5cfe1cb", "Atari", "CX2646 / 4975185", "Pac-Man (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "91c2098e88a6b13f977af8c003e0bca5", "Atari", "CX2676", "Centipede (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "191", "", "", "" }, - { "16cb43492987d2f32b423817cdaaf7c4", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, + { "d573089534ca596e64efef474be7b6bc", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [h1]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "f3213a8a702b0646d2eaf9ee0722b51c", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0805366f1b165a64b6d4df20d2c39d25", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "16cb43492987d2f32b423817cdaaf7c4", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "26bc2bdf447a17376aea7ef187ff6e44", "", "", "Amanda Invaders (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "35be55426c1fec32dfb503b4f0651572", "", "C-817", "Air Raid (Men-A-Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "239", "Yes", "", "" }, + { "35be55426c1fec32dfb503b4f0651572", "", "C-817", "Air Raid (Men-A-Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "NTSC", "", "", "", "250", "YES", "", "" }, { "456453a54ca65191781aef316343ae00", "", "", "Full Screen Bitmap (3-D Green) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "575c0fb61e66a31d982c95c9dea6865c", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "6672de8f82c4f7b8f7f1ef8b6b4f614d", "Ariola", "", "Angling (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "76a9bf05a6de8418a3ebc7fc254b71b4", "Videosoft", "VS1008", "Color Bar Generator (Videosoft)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "876a953daae0e946620cf05ed41989f4", "Retroactive", "", "Qb (V2.08) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "9ad362179c2eea4ea115c7640b4b003e", "Activision", "AX-013", "Barnstorming (1982) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ab5bf1ef5e463ad1cbb11b6a33797228", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdb4b584ddc90c9d2ec7e21632a236b6", "", "", "Nitemare at Sunshine Bowl-a-Rama (beta 1) (Atari Freak 1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Freeway Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "205", "", "", "" }, + { "ce17325834bf8b0a0d0d8de08478d436", "", "", "Boring Freeway (Freeway Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "31", "180", "", "", "" }, + { "fac28963307b6e85082ccd77c88325e7", "CCE", "", "Berzerk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0443cfa9872cdb49069186413275fa21", "Mattel", "MT4518", "Burgertime (1982) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "", "", "" }, { "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", "", "" }, + { "133b56de011d562cbab665968bde352b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19d6956ff17a959c48fcd8f4706a848d", "Mystique", "", "Burning Desire (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "", "YES", "", "" }, { "227532d82505c3c185a878273c285d5f", "", "", "Hangman Man Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2a10053fd08664c7cfbbb104386ed77f", "", "", "Alpha Demo - The Beta Demo (2000) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "64", "188", "", "", "" }, + { "4093382187f8387e6d011883e8ea519b", "HomeVision", "554-33391", "Col 'N (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "220", "", "", "" }, + { "490e3cc59d82f85fae817cdf767ea7a0", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "63a6eda1da30446569ac76211d0f861c", "Activision", "AG-001", "Dragster (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "69ebf910ab9b63e5b8345f016095003b", "", "", "Maze Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "826481f6fc53ea47c9f272f7050eedf7", "Imagic", "", "Atlantis II (1982) (Imagic) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8c8a26ed57870daba8e13162d497bad1", "HES", "", "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "962ffd3eaf865230a7a312b80e6c5cfd", "", "", "Fathom (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "9efb4e1a15a6cdd286e4bcd7cd94b7b8", "20th Century Fox", "", "Planet of the Apes (20th Century Fox) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "aeb104f1e7b166bc0cbaca0a968fde51", "Rob Kudla", "", "Ms. Pac-Man (1982) (Atari) [h1]", "Hack of Ms. Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "" }, + { "ca7abc774a2fa95014688bc0849eee47", "Atari", "CX26110", "Crystal Castles (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d0cdafcb000b9ae04ac465f17788ad11", "Starsoft", "", "Alice's Abenteuer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "da0fb2a484d0d2d8f79d6e063c94063d", "", "", "Air Raiders (1982) (Mattel) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df62a658496ac98a3aa4a6ee5719c251", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e63efdfda9a4003dcd77a854a781a06a", "Paul Slocum", "", "Combat Rock (PD) [a1]", "Hack of Combat (1977) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ef66af190840871409fe1702d2483554", "", "", "DiscoTech (12-02-2003) (Andrew Davie, Paul Slocum And Christopher Tumber)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f750b5d613796963acecab1690f554ae", "Manuel Polik", "", "Gunfight 2600 (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "f750b5d613796963acecab1690f554ae", "Manuel Polik", "", "Gunfight 2600 (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc92d74f073a44bc6e46a3b3fa8256a2", "", "", "Megademo (19xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "184", "", "", "" }, - { "1d1d2603ec139867c1d1f5ddf83093f1", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, + { "01b09872dcd9556427761f0ed64aa42a", "", "", "Galaga (River Raid clone) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0685bd0bcb975ceef7041749a5454a48", "Piero Cavina", "", "11 Sprite Demo (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0963aa9f7f6cf5a36ff700001583624e", "Franklin Cruz", "", "Space Invaders 2 (Space Invaders Hack) [o1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d5af65ad3f19558e6f8e29bf2a9d0f8", "Atari", "CX26151", "Dark Chambers (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, + { "10958cd0a1a81d599005f1797ab0e51d", "Eduardo", "", "Centipede 2k (2000) (PD)", "Hack of Centipede (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1442d1b35a6478fba22ae7dd1fcb5634", "", "", "Thrust (V0.2) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1862fca4f98e66f363308b859b5863af", "", "", "128-in-1 Junior Console (Chip 1) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1d1d2603ec139867c1d1f5ddf83093f1", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "24d9a55d8f0633e886a1b33ee1e0e797", "", "", "Dragon Defender (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "15", "240", "YES", "", "" }, + { "282a77841cb3d33af5b56151acba770e", "Starsoft", "", "Black Hole (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "303242c239474f2d7763b843de58c1c3", "CCE", "", "Laser Blast (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3347a6dd59049b15a38394aa2dafa585", "Parker Bros", "PB5760", "Montezuma's Revenge - Starring Panama Joe (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "376944889dcfa96c73d3079f308e3d32", "Retroactive", "", "Qb (0.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "3b69f8929373598e1752f43f8da61aa4", "Starsoft", "", "Die Springteufel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "3f039981255691d3859d04ef813a1264", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, + { "4279485e922b34f127a88904b31ce9fa", "Activision", "AX-026", "Enduro (1983) (Activision) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "47711c44723da5d67047990157dcb5dd", "CCE", "", "Ice Hockey (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "4b205ef73a5779acc5759bde3f6d33ed", "Atari", "", "Berzerk (1982) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f618c2429138e0280969193ed6c107e", "Activision", "AZ-028", "Robot Tank (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5409d20c1aea0b89c56993aec5dc5740", "", "", "Carnival Shooter (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5a2f2dcd775207536d9299e768bcd2df", "Starsoft", "", "Flippern (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "194", "", "", "" }, + { "5a2f2dcd775207536d9299e768bcd2df", "Starsoft", "", "Flippern (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5df32450b9fbcaf43f9d83bd66bd5a81", "", "", "Atari Logo Playfield Demo (2001) (Eric Ball) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6141c095d0aee4e734bebfaac939030a", "Starsoft", "", "Die Unterwasser-Bestien (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, + { "6141c095d0aee4e734bebfaac939030a", "Starsoft", "", "Die Unterwasser-Bestien (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "201", "", "", "" }, + { "7450ae4e10ba8380c55b259d7c2b13e8", "", "", "Register Twiddler Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "791bc8aceb6b0f4d9990d6062b30adfa", "Activision", "AB-035-04", "Pitfall! (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "85478bb289dfa5c63726b9153992a920", "", "", "Candi (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "89a68746eff7f266bbf08de2483abe55", "Atari", "CX2696", "Asterix (1988) (Atari) (Prototype) (NTSC)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8f53a3b925f0fd961d9b8c4d46ee6755", "Starsoft", "SM8002", "Astrowar (Starsoft)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "93c9f9239a4e5c956663dd7affa70da2", "Starsoft", "", "Billard (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "98555b95cb38e0e0b22b482b2b60a5b6", "", "", "Fire Spinner (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "9cbb07f1993a027bc2f87d5205457ec9", "", "", "Eckhard Stolberg's Scrolling Text Demo 1 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a15b5831a1fab52e4c416068c85ec011", "Hozer Video Games", "", "Gunfight 2600 - The Good, The Bad, The Ugly (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4ab331e8768eafdc20ce8b0411ff77a", "", "", "Demo Image Series #1 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a94b8ca630f467b574b614808d813919", "", "", "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "230", "", "", "" }, + { "a94b8ca630f467b574b614808d813919", "", "", "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "183", "Yes", "", "" }, + { "c471b97446a85304bbac021c57c2cb49", "First Star Software", "", "Boing! (1983) (First Star Software) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "26", "190", "", "", "" }, + { "cca33ae30a58f39e3fc5d80f94dc0362", "", "", "Okie Dokie (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cfe62ed7125ff9fae99b4c8a367c0399", "Activision", "AX-026", "Enduro (1983) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d341d39774277cee6a1d378a013f92ac", "", "", "Artillery Duel (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, { "d7891b0faa4c7f764482762d0ed427a5", "", "", "Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "db339aea2b65b84c7cfe0eeab11e110a", "", "", "Chronocolor Frame Demo 2 (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "de1e9fb700baf8d2e5ae242bffe2dbda", "Activision", "", "Commando (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, + { "de1e9fb700baf8d2e5ae242bffe2dbda", "Activision", "", "Commando (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "e4c00beb17fdc5881757855f2838c816", "20th Century Fox", "11004", "Deadly Duck (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e88340f5bd2f03e2e9ce5ecfa9c644f5", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ed2218b3075d15eaa34e3356025ccca3", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1127ade54037236e75a133b1dfc389d", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, + { "f965cc981cbb0822f955641f8d84e774", "Answer", "", "Confrontation (1983) (Answer Software)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "220", "YES", "", "" }, + { "fb88c400d602fe759ae74ef1716ee84e", "20th Century Fox", "11031", "Crash Dive (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, + { "fe0b7f27e3ad50bbf9ff468ee56d553d", "", "", "Lines Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "00f7985c20b8bdf3c557fac4d3f26775", "Aaron Curtis", "", "AStar (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02e3f4ba156fb578bef7d7a0bf3400c1", "", "", "Booster (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "056ff67dd9715fafa91fb8b0ddcc4a46", "", "", "Brick Kick (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "073d7aff37b7601431e4f742c36c0dc1", "", "SS-009", "Bermuda (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "10", "", "", "", "" }, + { "08bd4c1dcc843f6a0b563d9fd80b3b11", "Starsoft", "", "Phantom Panzer II (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, - { "0e08cd2c5bcf11c6a7e5a009a7715b6a", "", "", "Boing! (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "175", "", "", "" }, - { "0fcff6fe3b0769ad5d0cf82814d2a6d9", "Starsoft", "", "Aufruhr im Zoo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "51", "220", "", "", "" }, + { "0c7926d660f903a2d6910c254660c32c", "Atari", "CX2602", "Air-Sea Battle (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "260", "", "", "" }, + { "0e08cd2c5bcf11c6a7e5a009a7715b6a", "", "", "Boing! (PD) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0fcff6fe3b0769ad5d0cf82814d2a6d9", "Starsoft", "", "Aufruhr im Zoo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1201c18cf00d2c236f42e4d7d8c86aa1", "", "", "Nick Bensema Demo (Nick Bensema)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13a991bc9c2ff03753aeb322d3e3e2e5", "Funvision", "", "Galactic (G) (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "220", "", "", "" }, - { "157bddb7192754a45372be196797f284", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "35", "194", "", "", "" }, + { "13a991bc9c2ff03753aeb322d3e3e2e5", "Funvision", "", "Galactic (G) (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "157bddb7192754a45372be196797f284", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "67", "187", "", "", "" }, + { "1bb91bae919ddbd655fa25c54ea6f532", "Starsoft", "", "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1e4990f2bfc79b47b9b091f0a1538eeb", "", "", "Greeting Cart Sue (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2008c76deba5953201ef75a09b2ff7dc", "", "", "Fortress (21-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "218c0fe53dfaaa37f3c823f66eafd3fc", "Atari", "CX2624", "Basketball (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2432f33fd278dea5fe6ae94073627fcc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "62", "247", "", "", "" }, + { "2bc26619e31710a9884c110d8430c1da", "Atari", "CX2652", "Casino (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, - { "3c82e808fe0e6a006dc0c4e714d36209", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "", "" }, + { "2ef36341d1bf42e02c7ea2f71e024982", "", "", "Space Invaders (Explosion Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3105967f7222cc36a5ac6e5f6e89a0b4", "Sega", "011-02", "Spy Hunter (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "324cb4a749bcac4f3db9da842b85d2f7", "", "", "Climber 5 (01-05-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "NO" }, + { "345769d085113d57937198262af52298", "", "", "Space Raid (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "368d88a6c071caba60b4f778615aae94", "Atari", "CX26159", "Double Dunk (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "386ff28ac5e254ba1b1bac6916bcc93a", "Starpath", "AR-4300", "Fireball (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "3a771876e4b61d42e3a3892ad885d889", "Atari", "CX26120", "Defender II (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3c82e808fe0e6a006dc0c4e714d36209", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "" }, + { "41810dd94bd0de1110bedc5092bef5b0", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "442602713cb45b9321ee93c6ea28a5d0", "Imagic", "", "Demon Attack (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "467340a18158649aa5e02a4372dcfccd", "", "", "H.E.R.O. (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "481d20ec22e7a63e818d5ef9679d548b", "", "", "Freeway (AKA Rabbits) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4a6be79310f86f0bebc7dfcba4d74161", "Telesys", "1006", "Demolition Herby (1982) (Telesys) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "5355f80cacf0e63a49cbf4ade4e27034", "Christian Samuel", "", "Cute Dead Things House by Christian Samuel (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "55949cb7884f9db0f8dfcf8707c7e5cb", "", "CX2639 / 4975162", "Othello (1978) [p1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, + { "589c73bbcd77db798cb92a992b4c06c3", "Xonox", "", "Artillery Duel (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, + { "5ae73916fa1da8d38ceff674fa25a78a", "CCE", "", "Barnstorming (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5c618a50dfa23daac97ba459b9ff5206", "", "", "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "29", "", "YES", "", "" }, + { "5f17fef8a64d64d119f8e76c50238762", "", "", "Acid Drop (1992) (Salu) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "604e09724555807c28108049efe34a13", "", "", "Sokoban (01-01-2003) (Adam Wozniak)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "62ffd175cac3f781ef6e4870136a2520", "", "", "2600 Digital Clock (V x.xx) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6468d744be9984f2a39ca9285443a2b2", "Atari", "", "Othello (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, + { "6468d744be9984f2a39ca9285443a2b2", "Atari", "", "Othello (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, - { "73158ea51d77bf521e1369311d26c27b", "Zellers", "", "Challenge (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "24", "220", "", "", "" }, - { "757f529026696e13838364dea382a4ed", "Activision", "AX-014", "Grand Prix (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, + { "715dd9e0240638d441a3add49316c018", "", "", "128-in-1 Junior Console (Chip 2) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73158ea51d77bf521e1369311d26c27b", "Zellers", "", "Challenge (Zellers) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "25", "", "", "", "" }, + { "757f529026696e13838364dea382a4ed", "Activision", "AX-014", "Grand Prix (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7dc03a1f56d0e6a8aae3e3e50d654a08", "", "", "Hozer Video Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "37", "197", "", "", "" }, - { "7f6533386644c7d6358f871666c86e79", "CommaVid", "CM-008", "Cakewalk (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "7dc03a1f56d0e6a8aae3e3e50d654a08", "", "", "Hozer Video Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f6533386644c7d6358f871666c86e79", "CommaVid", "CM-008", "Cakewalk (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "814210c0e121f7dbc25661b93c06311c", "", "", "Joustpong (16-09-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "83f05ececae8be59ba1e51135f4bdcbf", "", "", "Demo Image Series #13 - Mario (4K Interleaved Chronocolour) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "862cf669cbced78f9ed31a5d375b2ebe", "", "", "Gunfight 2600 - Flicker acceptance (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "862cf669cbced78f9ed31a5d375b2ebe", "", "", "Gunfight 2600 - Flicker acceptance (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "888debb162d7d1ae71025b4ab794257f", "", "", "Interleaved ChronoColour - Nude Art (17-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "931b91a8ea2d39fe4dca1a23832b591a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "27", "", "", "", "" }, + { "8b5b1e3a434ebbdc2c2a49dc68f46360", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8da51e0c4b6b46f7619425119c7d018e", "Atari", "CX26183", "Sentinel (1990) (Atari)", "Uses Light Gun Controller (left only)", "Rare", "", "", "", "", "", "", "Lightgun", "None", "", "", "", "", "", "", "", "", "" }, + { "9072c142728a3a3d994956d03bfacba2", "Fabrizio Zavagli / 20th Century Fox", "", "Crash Dive (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, + { "931b91a8ea2d39fe4dca1a23832b591a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9526e3db3bdfbc27989a9cbfd0ee34bf", "", "", "Atari Logo Demo 6 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "97327d6962f8c64e6f926f79cd01c6b9", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "", "", "", "" }, - { "9905f9f4706223dadee84f6867ede8e3", "Funvision", "", "Challenge (Funvision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "240", "", "", "" }, + { "97327d6962f8c64e6f926f79cd01c6b9", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9905f9f4706223dadee84f6867ede8e3", "Funvision", "", "Challenge (Funvision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "45", "228", "", "", "" }, + { "a0297c4788f9e91d43e522f4c561b4ad", "Atari", "CX26102", "Cookie Monster Munch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "a1ccf58ca588bd3e0fb35a1e2a41b423", "", "", "Greeting Cart Green Dress (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a3fee8ce15525ea00d45a06f04c215d1", "Aaron Curtis", "", "AStar (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "250", "", "", "" }, - { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "a3fee8ce15525ea00d45a06f04c215d1", "Aaron Curtis", "", "AStar (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "", "", "" }, + { "a5b7f420ca6cc1384da0fed523920d8e", "", "", "Adventure (New Graphics) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8101cb667e50a46165c6fb48c608b6b", "", "", "Kung Fu Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "aacbf0dd6021bc5f4cee6c96ff37e84f", "", "", "Death Derby (v0001) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "b21ee4639476eaec8204f00c712b7497", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "", "" }, + { "ae10527840a1ac24de43730645ed508d", "Atari / Charles Morgan", "", "Planet Invaders by Charles Morgan (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aff8cba0f2d2eb239953dd7116894a08", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b21ee4639476eaec8204f00c712b7497", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "8", "152", "57", "", "", "", "" }, + { "b7903268e235310dc346a164af4c7022", "UA / Thomas Jentzsch", "", "Cat Trax (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "YES", "", "" }, + { "b9f6fa399b8cd386c235983ec45e4355", "Parker Bros", "", "Action Force (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "c73ae5ba5a0a3f3ac77f0a9e14770e73", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, + { "be929419902e21bd7830a7a7d746195d", "Activision", "AX-025", "Keystone Kapers (1983) (Activision)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c16c79aad6272baffb8aae9a7fff0864", "US Games", "VC 2001", "Gopher (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c3472fa98c3b452fa2fd37d1c219fb6f", "Atari", "CX2637 / 4975158", "Dodge 'em (1980) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c5124e7d7a8c768e5a18bde8b54aeb1d", "", "", "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c73ae5ba5a0a3f3ac77f0a9e14770e73", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "226", "", "", "" }, + { "cf3a9ada2692bb42f81192897752b912", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d05e371765929bf5d39c91c6ea189bec", "", "", "Death Derby (v0005 New Build) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d28afe0517a046265c418181fa9dd9a1", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "198", "", "", "" }, - { "d4806775693fcaaa24cf00fc00edcdf3", "Atari", "CX26140", "Desert Falcon (1987) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "17", "", "", "", "" }, + { "d28afe0517a046265c418181fa9dd9a1", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d4806775693fcaaa24cf00fc00edcdf3", "Atari", "CX26140", "Desert Falcon (1987) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dbc7485ad5814d466de780a3e7ed3b46", "Kyle Pittman", "", "Pink Floyd (Kyle Pittman) (PD)", "Hack of Adventures of Tron (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "46", "180", "", "", "" }, + { "dbc7485ad5814d466de780a3e7ed3b46", "Kyle Pittman", "", "Pink Floyd (Kyle Pittman) (PD)", "Hack of Adventures of Tron (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dd7884b4f93cab423ac471aa1935e3df", "", "", "Asteroids (1979) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "dea0ade296f7093e71185e802b500db8", "CCE", "", "Fishing Derby (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "", "" }, + { "dea0ade296f7093e71185e802b500db8", "CCE", "", "Fishing Derby (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dff33523ccd2fdc8912e84cab8e0d982", "", "", "Fu Kung! (V0.03) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1a51690792838c5c687da80cd764d78", "", "", "Alligator People (20th Century Fox) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e3c35eac234537396a865d23bafb1c84", "", "", "Nuts (Technovision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, + { "e3c35eac234537396a865d23bafb1c84", "", "", "Nuts (Technovision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e5a6e0bb7d56e2f08b237e15076e5699", "", "", "Color Table Display Helper (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "e784a9d26707cfcd170a4c1c60422a72", "Starsoft", "", "Gefecht im All (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e9c71f8cdba6037521c9a3c70819d171", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox) (w-Skull Island Label) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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" }, + { "f0536303f49006806bac3aec15738336", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "220", "Yes", "", "" }, - { "f847fb8dba6c6d66d13724dbe5d95c4d", "Absolute", "AZ-042 / AG-042", "Skate Boardin' (1987) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "", "" }, + { "f4204fc92d17ed4cb567c40361ad58f1", "Inky", "", "Beanie Baby Bash by Inky (Beany Bopper Hack)", "Hack of Beany Bopper (1982) (20th Century Fox)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f6a9ea814d15b85bffe980c927df606b", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "f847fb8dba6c6d66d13724dbe5d95c4d", "Absolute", "AZ-042 / AG-042", "Skate Boardin' (1987) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "4", "152", "62", "199", "", "", "No" }, - { "fd6e507b5df68beeeddeaf696b6828fa", "Activision", "", "Boxing (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "61", "", "", "", "" }, + { "fbe554aa8f759226d251ba6b64a9cce4", "Atari", "CX2681", "Battlezone (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "fd6e507b5df68beeeddeaf696b6828fa", "Activision", "", "Boxing (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "" }, + { "00b7b4cbec81570642283e7fc1ef17af", "Sega", "006-01", "Congo Bongo (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, + { "01297d9b450455dd716db9658efb2fae", "TechnoVision", "", "Save Our Ship (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "028024fb8e5e5f18ea586652f9799c96", "Coleco", "2468", "Carnival (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "26", "214", "", "", "" }, + { "038e1e79c3d4410defde4bfe0b99cc32", "Atari", "", "Aquaventure (1983) (Atari) (Prototype)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "04dfb4acac1d0909e4c360fd2ac04480", "", "", "Jammed (2001) (XYPE) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05d61b925d3d2474bab83f0a79bb5df1", "", "", "Cosmic Ark Stars (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "09274c3fc1c43bf1e362fda436651fd8", "", "", "Acid Drop (NTSC Conversion) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "8", "240", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "" }, + { "0bf1e354304f46c0caf8fc0f6f5e9525", "Starpath", "AR-4105", "Frogger (Official Version by Sega) (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0cebb0bb45a856b23f56d21ce7d1bc34", "", "", "Crash Dive (1983) (20th Century Fox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0de53160a8b54c3aa5aed8d68c970b62", "Starsoft", "", "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0eebfb60d437796d536039701ec43845", "Fabrizio Zavagli / CommaVid", "", "Cakewalk (PAL Conversion) (Fabrizio Zavagli)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0f341d1f4e144e3163d9a5fc5a662b79", "", "", "RUN Platform Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "103f1756d9dc0dd2b16b53ad0f0f1859", "ITT Family Games", "554-33391", "Alien's Return (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "114c599454d32f74c728a6e1f71012ba", "Activision", "AX-015", "Chopper Command (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1287535256bf5dff404839ac9e25c3e7", "", "", "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "13782adc70e285d51e2f4dd9c3094166", "", "", "Death Derby (21-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1423f560062c4f3c669d55891a2bcbe7", "CCE", "", "M.A.S.H. (CCE) (no logo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "", "" }, + { "1423f560062c4f3c669d55891a2bcbe7", "CCE", "", "M.A.S.H. (CCE) (no logo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "152c253478b009c275e18cd731b48561", "", "", "Quest (11-10-2002) (Chris Larkin)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, - { "19a9d3f9fa1b1358fb53009444247aaf", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "59", "220", "", "", "" }, + { "171cd6b55267573e6a9c2921fb720794", "Atari / Kurt Howe", "", "Adventure 34 by Kurt Howe (Adventure Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, + { "17c0a63f9a680e7a61beba81692d9297", "US Games", "VC 2004", "Picnic (1982) (US Games) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "", "", "" }, + { "18dc28bc22402f21e1c9b81344b3b8c5", "", "", "Galaxian (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "19a9d3f9fa1b1358fb53009444247aaf", "Atari", "", "Blackjack (1977) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "1a23540d91f87584a04f184304a00648", "", "", "Race Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1c8c42d1aee5010b30e7f1992d69216e", "Mystique", "1009", "Gigolo (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "", "" }, + { "1c8c42d1aee5010b30e7f1992d69216e", "Mystique", "1009", "Gigolo (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "27", "230", "", "", "" }, + { "1f773a94d919b2a3c647172bbb97f6b4", "Atari", "CX2678", "Dumbo's Flying Circus (1983) (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "205070b6a0d454961dd9196a8e81d877", "", "", "Hangman Monkey Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "212d0b200ed8b45d8795ad899734d7d7", "Coca Cola", "", "Pepsi Invaders (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "224", "", "", "" }, + { "212d0b200ed8b45d8795ad899734d7d7", "Coca Cola", "", "Pepsi Invaders (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2240655247d6de1c585564004a853ab7", "", "", "Fu Kung! (V0.17) (07-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2365e1534d67f94d8670394ab99150ce", "", "", "Missile Command (CX-80 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "24759be31e8fe55d2829fd86bdf3181f", "Hozer Video Games", "", "Gunfight 2600 - Worst Nightmare... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, + { "24759be31e8fe55d2829fd86bdf3181f", "Hozer Video Games", "", "Gunfight 2600 - Worst Nightmare... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25710bde8fa181b0c5cf0846b983bec1", "", "", "Demo Image Series #15 - Three Marios (NTSC) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25f9cf703575c5d63048c222f5463758", "", "", "Multi-Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "274d17ccd825ef9c728d68394b4569d2", "Mystique-Playaround", "1004", "Bachelorette Party (1982) (Mystique-Playaround)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "27", "219", "Yes", "", "" }, - { "27f9e2e1b92af9dc17c6155605c38e49", "CCE", "", "Nightmare (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "", "" }, - { "2903896d88a341511586d69fcfc20f7d", "Activision", "AX-014", "Grand Prix (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "", "" }, + { "274d17ccd825ef9c728d68394b4569d2", "Mystique-Playaround", "1004", "Bachelorette Party (1982) (Mystique-Playaround)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "22", "222", "YES", "", "" }, + { "27f9e2e1b92af9dc17c6155605c38e49", "CCE", "", "Nightmare (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2903896d88a341511586d69fcfc20f7d", "Activision", "AX-014", "Grand Prix (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "29949f893ef6cb9e8ecb368b9e99eee4", "Erik Eid", "", "Euchre (Alpha) (NTSC) (31-08-2002) (Erik Eid)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2abc3d46b3f2140160759e2e10bc86d9", "", "", "Gunfight 2600 - Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "2abc3d46b3f2140160759e2e10bc86d9", "", "", "Gunfight 2600 - Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "250", "", "", "" }, + { "2dbdca3058035d2b40c734dcf06a86d9", "Thomas Jentzsch", "", "Asteroids DC+ by Thomas Jentzsch (Asteroids Hack)", "Uses the Joystick (left) or Steering (right) Controller", "New Release (Hack)", "", "", "", "", "", "", "", "Driving", "", "", "", "", "", "", "Yes", "", "No" }, + { "2e842c2ee22e9dad9df16eed091315c4", "", "", "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2fa5f90deb8b84ecaf64f5fb11c0fd93", "", "", "Death Derby (19-01-2003) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "30c92c685224dc7a72b9bbe5eb62d004", "", "", "Hangman Monkey Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "317a4cdbab090dcc996833d07cb40165", "Goliath", "", "Missile War (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "321c3451129357af42a375d12afd4450", "", "", "Ikari Warriors (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "32f4e47a71601ab06cfb59e1c6a0b846", "Ed Federmeyer", "", "Sound X (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34303a7d4c9ad4500ca7f2ede9709595", "", "", "Excalibur 39 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3556e125681aea864e17b09f3f3b2a75", "", "", "Incoming (2 Player Demo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "198", "", "", "" }, + { "36547bc6faa5132b87504e18d088e1d7", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "36f9a953ebdd9a8be97ccf27a2041903", "", "", "Chinese Character Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "384db97670817103dd8c0bbdef132445", "", "CX2626 / 99829 / 75116", "Arcade Golf (1979) (Sears) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "391764720140c432aec454a468f77a40", "Video Game Program", "", "Miss Pack Man (Video Game Program) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3a2e2d0c6892aa14544083dfb7762782", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3b10106836565e5db28c7823c0898fbb", "", "", "Ghost Manor (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "230", "", "", "" }, + { "3b10106836565e5db28c7823c0898fbb", "", "", "Ghost Manor (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3b966bf3c2ca34ac6ca1de4cf6383582", "", "", "Double-Height 6-Digit Score Display (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d2367b2b09c28f1659c082bb46a7334", "Imagic", "IA3203", "Atlantis (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, - { "3d934bb980e2e63e1ead3e7756928ccd", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "57", "205", "", "", "" }, + { "3d2367b2b09c28f1659c082bb46a7334", "Imagic", "IA3203", "Atlantis (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d934bb980e2e63e1ead3e7756928ccd", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3edd0525a19e4fc612d99c74dffd8716", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "3f75a5da3e40d486b21dfc1c8517adc0", "Atari", "", "Sky Diver (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "402b1ca3c230a60fb279d4a2a10fa677", "Atari", "", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "40d8ed6a5106245aa79f05642a961485", "Xonox", "99002", "Ghost Manor (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4233eb824c2b4811abef9b6d00355ae9", "Retroactive", "", "Qb (V0.10) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "4311a4115fb7bc68477c96cf44cebacf", "Funvision", "", "Challenge (Funvision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "PAL", "", "", "14", "", "", "", "" }, { "448c2a175afc8df174d6ff4cce12c794", "", "", "Pitfall II - Lost Caverns (1984) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "461029ab23800833e9645be3e472d470", "", "", "Combat TC (v0.1)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "46e9428848c9ea71a4d8f91ff81ac9cc", "", "", "Astroblast (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, - { "47b82d47e491ac7fdb5053a88fccc832", "", "", "Asteroid 2 (Atari Freak 1 and Franklin Cruz)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "", "" }, + { "46e9428848c9ea71a4d8f91ff81ac9cc", "", "", "Astroblast (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47b82d47e491ac7fdb5053a88fccc832", "", "", "Asteroid 2 (Atari Freak 1 and Franklin Cruz)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "4868a81e1b6031ed66ecd60547e6ec85", "Eric Mooney", "", "Invaders by Erik Mooney (V2.1) (1-3-98) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "" }, + { "4999b45be0ab5a85bac1b7c0e551542b", "CCE", "", "Double Dragon (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4ae8c76cd6f24a2e181ae874d4d2aa3d", "20th Century Fox", "11015", "Flash Gordon (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4c0fb2544ae0f8b5f7ae8bce7bd7f134", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "4ca0959f846d2beada18ecf29efe137e", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4dbf47c7f5ac767a3b07843a530d29a5", "Ric Pryor", "", "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)", "Bump 'n' Jump Hack", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4e4895c3381aa4220f8c2795d6338237", "", "", "Backwards Cannonball v1 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4faeb04b1b7fb0fa25db05753182a898", "", "", "2600 Digital Clock (V x.xx) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "514f911ecff2be5eeff2f39c49a9725c", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "220", "", "", "" }, + { "514f911ecff2be5eeff2f39c49a9725c", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "238", "", "", "" }, - { "57c5b351d4de021785cf8ed8191a195c", "", "CX26102", "Cookie Monster Munch (1983) (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "35", "192", "", "", "" }, + { "56300ed31fef018bd96768ccc982f7b4", "HES", "", "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "57c5b351d4de021785cf8ed8191a195c", "", "CX26102", "Cookie Monster Munch (1983) (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "599cbf919d47a05af975ad447df29497", "", "", "Baubles (V0.002) (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5a734779d797ccef25dc8acfa47244c7", "", "", "Oh No! (Version 2) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5b124850de9eea66781a50b2e9837000", "Mystique", "1002", "Bachelor Party (1982) (Mystique)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "27", "219", "Yes", "", "" }, - { "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", "", "", "" }, + { "5b124850de9eea66781a50b2e9837000", "Mystique", "1002", "Bachelor Party (1982) (Mystique)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "22", "222", "YES", "", "" }, + { "5c0227ad63300670a647fcebf595ea37", "Imagic / Josh", "", "Battle for Naboo by Josh (Atlantis Hack)", "Hack of Atlantis (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5d8fb14860c2f198472b233874f6b0c9", "", "", "Boing! (PD) [a2]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5e99aa93d0acc741dcda8752c4e813ce", "", "", "2600 Digital Clock (V b2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "5f46d1ff6d7cdeb4b09c39d04dfd50a1", "Atari", "CX2661", "Fun with Numbers (1977) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "60358edf0c2cc76b1e549e031e50e130", "Manuel Polik", "", "Cyber Goth Galaxian by Manuel Polik (Galaxian Hack)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60d304582d33e2957b73eb300a7495bb", "", "", "Jam Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61ef8c2fc43be9a04fe13fdb79ff2bd9", "", "", "Gas Gauge Demo - Revisited (2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6342afe9c9ad1b6120b8f6fb040d0926", "", "", "Move a Blue Blob Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "64198bb6470c78ac24fcf13fe76ab28c", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, - { "64d43859258dc8ca54949e9ff4174202", "Starsoft / Thomas Jentzsch", "", "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "227", "", "", "" }, - { "65b106eba3e45f3dab72ea907f39f8b4", "Sparrow", "GCG 1001T", "Music Machine (1983) (Sparrow)", "Uses the Paddle Controllers", "Unbelievably Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "205", "", "", "" }, - { "665b8f8ead0eef220ed53886fbd61ec9", "Telesys", "1003", "Fast Food (1982) (Telesys) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "66bc1bef269ea59033928bac2d1d81e6", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "32", "200", "", "", "" }, + { "64198bb6470c78ac24fcf13fe76ab28c", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "64d43859258dc8ca54949e9ff4174202", "Starsoft / Thomas Jentzsch", "", "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "65b106eba3e45f3dab72ea907f39f8b4", "Sparrow", "GCG 1001T", "Music Machine (1983) (Sparrow)", "Uses the Paddle Controllers", "Unbelievably Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "665b8f8ead0eef220ed53886fbd61ec9", "Telesys", "1003", "Fast Food (1982) (Telesys) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66bc1bef269ea59033928bac2d1d81e6", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "6a82b8ecc663f371b19076d99f46c598", "Activision", "AX-026", "Enduro (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b71f20c857574b732e7a8e840bd3cb2", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6c91ac51421cb9fc72c9833c4f440d65", "ITT Family Games", "", "Cosmic Town (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6de924c2297c8733524952448d54a33c", "CCE", "", "Moon Patrol (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6e7ed74082f39ad4166c823765a59909", "", "", "Poker Squares (V0.14) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "52", "", "", "", "" }, - { "7732e4e4cc2644f163d6650ddcc9d9df", "HES", "", "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, + { "6fc394dbf21cf541a60e3b3631b817f1", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "70a8480cfaf08776e5420365732159d2", "Rob Kudla", "", "Horizontally Scrolling Playfield Thing (Rob Kudla) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "71f09f128e76eb14e244be8f44848759", "", "", "Astro Attack (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72db1194b1cc7d45b242f25eb1c148d3", "", "", "Pac-Man (1981) (Atari) [h1]", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73cb1f1666f3fd30b52b4f3d760c928f", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [p1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "75169c08b56e4e6c36681e599c4d8cc5", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "75e276ba12dc4504659481c31345703a", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7732e4e4cc2644f163d6650ddcc9d9df", "HES", "", "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "201", "", "", "" }, - { "7d93071b3e3616093a6b5a98b0315751", "", "", "Gunfight 2600 - Music & Bugfixes 2 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, - { "7e4783a59972ae2cd8384f231757ea0b", "Atari", "CX26139", "Crossbow (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "188", "", "", "" }, - { "7f07cd2e89dda5a3a90d3ab064bfd1f6", "Ariola", "", "Boxen (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "216", "", "", "" }, + { "79ab4123a83dc11d468fb2108ea09e2e", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "79fcdee6d71f23f6cf3d01258236c3b9", "Atari", "CX2673", "Phoenix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7af40c1485ce9f29b1a7b069a2eb04a7", "Amiga", "3120", "Mogul Maniac (1983) (Amiga) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7c757bb151269b2a626c907a22f5dae7", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d93071b3e3616093a6b5a98b0315751", "", "", "Gunfight 2600 - Music & Bugfixes 2 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e4783a59972ae2cd8384f231757ea0b", "Atari", "CX26139", "Crossbow (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f07cd2e89dda5a3a90d3ab064bfd1f6", "Ariola", "", "Boxen (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "49", "", "", "", "" }, + { "819aeeb9a2e11deb54e6de334f843894", "Atari", "CX2661", "Fun with Numbers (1977) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8372eec01a08c60dbed063c5524cdfb1", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, - { "8917f7c1ac5eb05b82331cf01c495af2", "Bitcorp", "PG202", "Space Tunnel (Bitcorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "259", "", "", "" }, + { "883258dcd68cefc6cd4d40b1185116dc", "Activision", "AZ-030", "Decathlon (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8917f7c1ac5eb05b82331cf01c495af2", "Bitcorp", "PG202", "Space Tunnel (Bitcorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8a9d953ac3db52a313a90d6a9b139c76", "", "", "Hangman Invader Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, + { "8bebac614571135933116045204f0f00", "", "", "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "187", "Yes", "", "" }, - { "910dd9bf98cc5bc080943e5128b15bf5", "", "", "Gunfight 2600 - Improved AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "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" }, + { "8e879aa58db41edb67cbf318b77766c4", "CCE / Thomas Jentzsch", "", "Cosmic Commuter (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "", "", "" }, + { "8fe00172e7fff4c1878dabcf11bb8dce", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "910dd9bf98cc5bc080943e5128b15bf5", "", "", "Gunfight 2600 - Improved AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9295570a141cdec18074c55dc7229d08", "Telegames", "", "Bump 'N' Jump (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "937736d899337036de818391a87271e0", "Atari", "CX26108", "Donald Duck's Speedboat (Atari) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9469d18238345d87768e8965f9f4a6b2", "CCE", "", "Ms. Pac-Man (1982) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "968efc79d500dce52a906870a97358ab", "TNT Games", "CX26190", "BMX Air Master (1989) (TNT Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "97d0151beb84acbe82aa6db18cd91b98", "", "", "Lunar Attack (2002) (Steve Engelhardt) (Z-Tack Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "98e5e4d5c4dd9a986d30fd62bd2f75ae", "", "", "Air-Sea Battle (1977) (Atari) [o1][h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "200", "", "", "" }, + { "98e5e4d5c4dd9a986d30fd62bd2f75ae", "", "", "Air-Sea Battle (1977) (Atari) [o1][h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "9b246683f44c963a50e41d6b485bee77", "", "", "Boring (PAL) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c6d65bd3b477aace0376f705b354d68", "", "", "RPG Kernal (18-04-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "9de0d45731f90a0a922ab09228510393", "20th Century Fox", "11003", "Fast Eddie (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "a100eff2d7ae61ca2b8e65baf7e2aae8", "David Marli", "", "Muncher by David Marli (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a19215975aeca1d98328173a124c47f7", "", "", "Death Derby (12-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "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", "", "", "" }, + { "a20b7abbcdf90fbc29ac0fafa195bd12", "Starsoft", "", "Motocross (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a302b922a8dbec47743f28b7f91d4cd8", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a47e26096de6f6487bf5dd2d1cced294", "Atari", "CX2643 / 99815", "Code Breaker (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, + { "a511f7ee13e4b35512f9217a677b4028", "", "", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a6127f470306eed359d85eb4a9cf3c96", "Atari", "CX26110", "Crystal Castles (1984) (Atari) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a7b584937911d60c120677fe0d47f36f", "Mattel", "MT5661", "Armor Ambush (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, + { "a9cb638cd2cb2e8e0643d7a67db4281c", "Mattel", "MT5861", "Air Raiders (1982) (Mattel) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ab434f4c942d6472e75d5490cc4dd128", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ac0ddbcff34d064009591607746e33b8", "", "", "Atlantis FH (2003) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "acb6787b938079f4e74313a905ec3ceb", "", "", "Chronocolor Donkey Kong (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "adf1afac3bdd7b36d2eda5949f1a0fa3", "Starsoft", "", "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, + { "adf1afac3bdd7b36d2eda5949f1a0fa3", "Starsoft", "", "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae83541cf4a4c0bce0adccd2c1bf6288", "", "", "Maze 003 Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "afe4eefc7d885c277fc0649507fbcd84", "Atari", "", "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b061e98a4c854a672aadefa233236e51", "Atari", "CX2624", "Basic Programming (1978) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Common", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "b4030c38a720dd84b84178b6ce1fc749", "Mattel", "MT5687", "International Soccer (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b4f87ce75f7329c18301a2505fe59cd3", "Ariola", "", "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b702641d698c60bcdc922dbd8c9dd49c", "Atari", "", "Space War (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b80d50ecee73919a507498d0a4d922ae", "20th Century Fox", "11008", "Fantastic Voyage (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "20", "140", "50", "", "", "", "" }, + { "bb745c893999b0efc96ea9029e3c62ca", "Play Video", "", "Planet Patrol (1982) (Play Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bce93984b920e9b56cf24064f740fe78", "Atari", "", "Checkers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "be1922bd8e09d74da471287e1e968653", "", "", "Hangman Pacman Demo (Cropsy) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bf6b753ec11acfec3b40f8a4c476e77d", "", "", "Image - Girl (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "c1fdd44efda916414be3527a47752c75", "Parker Bros", "PB5920", "G.I. Joe - Cobra Strike (1983) (Parker Bros) [!]", "Uses the Paddle (left) and Joystick (right) Controllers", "Uncommon", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "30", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, + { "c4b73c35bc2f54b66cd786f55b668a82", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c59633dbebd926c150fb6d30b0576405", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c68a6bafb667bad2f6d020f879be1d11", "Atari", "", "Crystal Castles (1984) (Atari) (NTSC) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c7d5819b26b480a49eb26aeb63cc831e", "", "AX-012", "Ice Hockey (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c8c7da12f087e8d16d3e6a21b371a5d3", "", "", "Demo Image Series #9 - Genius (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ca4f8c5b4d6fb9d608bb96bc7ebd26c7", "Mattel", "MT4317", "Adventures of Tron (1983) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "46", "180", "", "", "" }, + { "ca4f8c5b4d6fb9d608bb96bc7ebd26c7", "Mattel", "MT4317", "Adventures of Tron (1983) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, - { "ce904c0ae58d36d085cd506989116b0b", "Telegames", "", "International Soccer (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "198", "", "", "" }, - { "cfb3260c603b0341d49ddfc94051ec10", "Dactar", "", "Boxing (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, + { "cbe5a166550a8129a5e6d374901dffad", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "ccbd36746ed4525821a8083b0d6d2c2c", "", "CX2649", "Asteroids [p1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, + { "cd88ef1736497288c4533bcca339f881", "", "", "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "", "YES", "", "" }, + { "ce904c0ae58d36d085cd506989116b0b", "Telegames", "", "International Soccer (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cfb3260c603b0341d49ddfc94051ec10", "Dactar", "", "Boxing (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cff1e9170bdbc29859b815203edf18fa", "Retroactive", "", "Push (V0.01) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "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" }, + { "d0af33865512e9b6900714c26db5fa23", "Telegames", "", "Armor Ambush (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d1a1841b7f2007a24439ac248374630a", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "d2d8c4f1ea7f347c8bcc7d24f45aa338", "", "", "20 Sprites at Once Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "230", "Yes", "", "" }, + { "d36308387241e98f813646f346e7f9f7", "", "", "Ghostbuster 2 (PAL) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "67", "205", "", "", "" }, - { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "64", "209", "", "", "" }, + { "d6dc9b4508da407e2437bfa4de53d1b2", "HomeVision", "", "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d8295eff5dcc43360afa87221ea6021f", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "d90205e29bb73a4cdf28ea7662ba0c3c", "", "", "Boulderdash Demo (Brighter Version) (09-12-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "da732c57697ad7d7af414998fa527e75", "Atari", "CX26129", "Midnight Magic (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "dafc3945677ccc322ce323d1e9930beb", "", "", "A-Team, The (Atari) (Prototype) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dba270850ae997969a18ee0001675821", "Greg Troutman", "", "Dark Mage (4K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "55", "194", "", "", "" }, - { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "", "No" }, + { "de61a0b171e909a5a4cfcf81d146dbcb", "Starsoft", "", "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df40af244a8d68b492bfba9e97dea4d6", "Franklin Cruz", "", "Asteroids 2 (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, { "df94affaece8b9a02da82e971ea9c0ca", "", "", "Image - Nude2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e040df95a055b18ebdb094e904cb71b2", "", "", "Score Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e14dc36b24fe22c04fa076e298f2e15f", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o2]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "192", "", "", "" }, + { "e14dc36b24fe22c04fa076e298f2e15f", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o2]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "e25e173740f7ecc0e23025445c4591f3", "", "", "Comitoid (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, + { "e51c23389e43ab328ccfb05be7d451da", "Starpath", "", "Sweat! - The Decathalon Game (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "e5fcc62e1d73706be7b895e887e90f84", "Atari", "", "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "260", "", "", "" }, { "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", "", "", "" }, + { "e923001015bedd7901569f035d9c592c", "", "", "Adventure II (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eada0dd61ce13f8317de774dc1e68604", "", "", "2600 Digital Clock (Demo 1) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eb71743c6c7ccce5b108fad70a326ad9", "", "", "Euchre (25-11-2001) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ed0ab909cf7b30aff6fc28c3a4660b8e", "", "TEC004 / 105", "Nightmare (Sancho)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "", "" }, + { "ed0ab909cf7b30aff6fc28c3a4660b8e", "", "TEC004 / 105", "Nightmare (Sancho)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee456542b93fa8d7e6a8c689b5a0413c", "", "", "Chronocolor Donkey Kong Clean (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "eeb92f3f46df841487d1504f2896d61a", "", "", "Corys Adventure (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "eeb92f3f46df841487d1504f2896d61a", "", "", "Corys Adventure (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "efa1098c7d091b940c2543abe372f036", "Scott Stilphen", "", "E.T. The Extra-Terrestrial by Scott Stilphen (Pits Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f0b7db930ca0e548c41a97160b9f6275", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f16c709df0a6c52f47ff52b9d95b7d8d", "", "CX2662", "Hangman (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "f280976d69d6e27a48506bd6bad11dcd", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) (PAL) [!]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, + { "f38358cd8f5ecfedffd5aca1aa939f18", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex) [a1]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f48735115ec302ba8bb2d2f3a442e814", "", "", "Dancing Plates (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "f687ec4b69611a7f78bd69b8a567937a", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f714a223954c28eccf459295517dcae6", "", "", "Big - Move This Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7e07080ed8396b68f2e5788a5c245e2", "", "TP-617", "Farmyard Fun (Telegames) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "59", "189", "", "", "" }, - { "fc2233fc116faef0d3c31541717ca2db", "Atari", "CX2646", "Pac-Man (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "51", "223", "", "", "" }, + { "faebcb2ef1f3831b2fc1dbd39d36517c", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fb4ca865abc02d66e39651bd9ade140a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fbac6476e7b2b20d246202af81662c88", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fc2233fc116faef0d3c31541717ca2db", "Atari", "CX2646", "Pac-Man (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fcf8e306f6615f74feba5cb25550038c", "", "", "Blue Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fdd4995a50395db14f518f63c2d63438", "", "", "Oh No! (Version 3) (18-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe9ae625d924b54c9f8a14ac9a0f6c6d", "", "", "High Bid! (BG Dodson) (Pepsi Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ff87d58125ae517eb7b09a0475a1ccdc", "", "", "SCSIcide (Score Hack 1) (24-02-2001) (Joe Grand) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "007d18dedc1f0565f09c42aa61a6f585", "CCE", "", "Worm War I (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "00df776eb994d729db9eb13b17887aa6", "", "", "Greeting Cart Atari Coin (V2) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "012020625a3227815e47b37fd025e480", "Atari", "CX2632", "Better Space Invaders (1999) (Rob Kudla) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0164f26f6b38a34208cd4a2d0212afc3", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "02066b17f29082412c6754c1a2d6302e", "", "", "Demo Image Series #3 - Baboon (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "8", "144", "58", "199", "", "", "" }, - { "05ebd183ea854c0a1b56c218246fbbae", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "06cfd57f0559f38b9293adae9128ff88", "Telegames", "", "Adventures on GX-12 (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "193", "", "", "" }, + { "02a5fc90a0d183f870e8eebac1f16591", "HES", "", "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "033e21521e0bf4e54e8816873943406d", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "04014d563b094e79ac8974366f616308", "", "CX2690", "Pengo - 1 Player Only (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "049626cbfb1a5f7a5dc885a0c4bb758e", "Activision", "AX-017", "Megamania (1982) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0546f4e6b946f38956799dd00caab3b1", "HES / Thomas Jentzsch", "", "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05b45ba09c05befa75ac70476829eda0", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, + { "05ebd183ea854c0a1b56c218246fbbae", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "06cfd57f0559f38b9293adae9128ff88", "Telegames", "", "Adventures on GX-12 (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "07f91e33e76f53bb9d2731fd5d8a35a5", "Atari", "CX2632", "Space Invaders (1978) (Atari) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "083b17a1a6b3efc464ba7e789f1e194d", "", "", "Greeting Cart (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "" }, + { "0894aa7be77521f9df562be8d9555fe6", "", "2451", "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "08f4dc6f118f7c98e2406c180c08e78e", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "09388bf390cd9a86dc0849697b96c7dc", "", "AK-045", "Pete Rose Baseball (1988) (Absolute)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "097074f24cde141fe6a0f26a10333265", "", "", "Marble Craze (V0.90) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "189", "", "", "" }, - { "0b55399cf640a2a00ba72dd155a0c140", "Imagic", "O3205", "Fathom (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "Yes", "", "" }, + { "09e1ecf9bd2a3030d5670dba7a65e78d", "Atari", "CX2654", "Haunted House (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0acaf71e60b89f6b6eab63db6ab84510", "", "", "This Planet Sucks (Greg Troutman) [a2]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0afe6ae18966795b89314c3797dd2b1e", "", "", "Moon Patrol (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b55399cf640a2a00ba72dd155a0c140", "Imagic", "O3205", "Fathom (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "0c0392db94a20e4d006d885abbe60d8e", "", "", "Dodge Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0cb7af80fd0ddef84844481d85e5d29b", "", "", "Mr. Pac-Man (El Destructo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "0d1b3abf681a2fc9a6aa31a9b0e8b445", "Atari", "", "Laser Blast (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d90a0ee73d55539b7def24c88caa651", "Activision", "AG-005", "Skiing (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0e0808227ef41f6825c06f25082c2e56", "", "", "Candi (Space Invaders Hack)[o1]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0e224ea74310da4e7e2103400eb1b4bf", "", "", "Mind Maze (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0eecb5f58f55de9db4eedb3a0f6b74a8", "Xonox", "99002", "Ghost Manor (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "0eecb5f58f55de9db4eedb3a0f6b74a8", "Xonox", "99002", "Ghost Manor (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0f14c03050b35d6b1d8850b07578722d", "Jeffry Johnston", "", "Radial Pong - Version 10 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0f6676b05621f80c670966e2995b227a", "", "", "Globe Trotter Demo 1 (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "102672bbd7e25cd79f4384dd7214c32b", "", "CX2642 / 6699814", "Concentration (1978) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, - { "106855474c69d08c8ffa308d47337269", "Atari", "CX26151", "Dark Chambers (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "48", "170", "Yes", "", "No" }, - { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "194", "", "", "" }, + { "106855474c69d08c8ffa308d47337269", "Atari", "CX26151", "Dark Chambers (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, + { "110ac8ecaf1b69f41bc94c59dfcb8b2d", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) [t1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "11cf751bc8173db105eabd119c5844ba", "", "", "Star Fire - Crosshair (12-02-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "1267e3c6ca951ff1df6f222c8f813d97", "Imagic", "IA3611", "Dragonfire (1982) (Imagic) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "130c5742cd6cbe4877704d733d5b08ca", "ITT Family Games", "", "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "135708b9a7dd20576c1b66ab2a41860d", "", "", "Hangman Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13a37cf8170a3a34ce311b89bde82032", "Atari", "CX2684", "Galaxian (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "45", "198", "", "", "" }, + { "13a37cf8170a3a34ce311b89bde82032", "Atari", "CX2684", "Galaxian (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13d8326bf5648db4dafce45d25e62ddd", "", "", "Atari Logo Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "184", "", "", "" }, + { "1428029e762797069ad795ce7c6a1a93", "Sega", "", "Thunderground (1983) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "14c2548712099c220964d7f044c59fd9", "", "", "Boing! (PD)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "153f40e335e5cb90f5ce02e54934ab62", "", "", "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "15bf2ef7583bfcbbba630847a1dc5539", "Erik Eid", "", "Euchre (Jul 15) (2002) (Eric Eid) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "163e7e757e2dc44469123ff0e5daec5e", "", "", "Many Blue Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, + { "163e7e757e2dc44469123ff0e5daec5e", "", "", "Many Blue Bars and Text Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "61", "195", "", "", "" }, - { "18f299edb5ba709a64c80c8c9cec24f2", "Bomb", "CA282", "Great Escape (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "220", "", "", "" }, + { "1802cc46b879b229272501998c5de04f", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari)", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "", "", "", "", "" }, + { "18b28b386abdadb3a700ac8fb68e639a", "Manuel Polik", "", "Gunfight 2600 (MP) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "18f299edb5ba709a64c80c8c9cec24f2", "Bomb", "CA282", "Great Escape (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "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", "", "", "" }, + { "19abaf2144b6a7b281c4112cff154904", "", "", "Asteroids (1979) (Atari) (PAL) [a2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "19e739c2764a5ab9ed08f9095aa2af0b", "Atari", "CX26117", "Obelix (1983) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "1c3f3133a3e5b023c77ecba94fd65995", "", "", "Planet Patrol (CCE) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1cca2197d95c5a41f2add49a13738055", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "1d5eac85e67b8cff1377c8dba1136929", "", "", "Chronocolor Donkey Kong Sideways (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "1e0ef01e330e5b91387f75f700ccaf8f", "Starsoft", "", "Mein Weg (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e89f722494608d6ea15a00d99f81337", "Activision", "", "River Raid (1982) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1ee9c1ba95cef2cf987d63f176c54ac3", "Atari", "CX2675", "Ms. Pac-Man (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "1f349dd41c3f93c4214e5e308dccb056", "", "", "Virtual Pet Demo 2 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1fa58679d4a39052bd9db059e8cda4ad", "CCE", "", "Laser Gates (1983) (CCE) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2016726db38ad6a68b4c48ba6fe51557", "Eric Mooney", "", "Invaders 2 by Eric Mooney (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "", "Donkey Kong Junior (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "2091af29b4e7b86914d79d9aaa4cbd20", "CBS Electronics", "", "Donkey Kong Junior (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "45", "216", "", "", "" }, - { "22675cacd9b71dea21800cbf8597f000", "Atari", "CX2605", "Outlaw - GunSlinger (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "61", "230", "", "", "" }, + { "21d2c435bcccde7792d82844b3cf60f4", "Atari", "CX2677", "Dig Dug (V2) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "22675cacd9b71dea21800cbf8597f000", "Atari", "CX2605", "Outlaw - GunSlinger (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22f6b40fc82110d68e50a1208ae0bb97", "", "", "Purple Bar Demo (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "23e4ca038aba11982e1694559f3be10f", "", "", "Big Dig (V3) (20-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "244c6de27faff527886fc7699a41c3be", "", "", "Matt Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24b5f4bbdb853eca38ea0cae2dfe73a1", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2517827950fee41a3b9de60275c8aa6a", "Activision", "", "Fishing Derby (1980) (Activision) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "25a943e9d5e312b516660b0627352448", "", "", "Image - Baboon (Interlaced Demo 1) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "25e73efb9a6edf119114718bd2f646ba", "", "", "Miss Piggy's Wedding (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "28", "195", "", "", "" }, + { "25e73efb9a6edf119114718bd2f646ba", "", "", "Miss Piggy's Wedding (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2683d29a282dd059535ac3bb250f540d", "", "", "Space Treat (12-01-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "270229c6d5578446e6a588492e4e5910", "", "", "Space Invaders 2 (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "277cca62014fceebb46c549bac25a2e3", "Activision", "AG-002", "Boxing (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, + { "270229c6d5578446e6a588492e4e5910", "", "", "Space Invaders 2 (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "277cca62014fceebb46c549bac25a2e3", "Activision", "AG-002", "Boxing (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "27a3c5216b6c6e96e321634973b73784", "", "", "Greeting Cart Atari Coin (V1) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "281ff9bd0470643853de5cbd6d9e17f5", "Eckhard Stolberg", "", "Cubis (EM) (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "28a2bea8f84936cb2e063f857414cda0", "", "", "Mega Mania Raid (1999) (Thiago Paiva)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "291cc37604bc899e8e065c30153fc4b9", "Activision", "AX-020", "River Raid (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, - { "295f3679bdf91ca5e37da3f787b29997", "", "", "Exorcise (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, + { "28a2bea8f84936cb2e063f857414cda0", "", "", "Mega Mania Raid (1999) (Thiago Paiva)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "291cc37604bc899e8e065c30153fc4b9", "Activision", "AX-020", "River Raid (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "295f3679bdf91ca5e37da3f787b29997", "", "", "Exorcise (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "29dfa26b7988af9984d617708e4fc6e2", "", "", "Boulderdash Demo (05-04-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "2a33e21447bf9e13dcfed85077ff6b40", "", "", "Backwards Cannonball v2 (Human Cannonball Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "240", "", "", "" }, + { "2c3b2843295c9d6b16996971180a3fe9", "", "", "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2c9fadd510509cc7f28f1ccba931855f", "", "", "Hangman Invader Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2d16a8b59a225ea551667be45f554652", "Starsoft", "", "Der Geheimkurier (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "", "", "", "" }, - { "2d76c5d1aad506442b9e9fb67765e051", "Apollo", "", "Lost Luggage (1981) (Apollo) (NTSC) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "", "" }, + { "2d16a8b59a225ea551667be45f554652", "Starsoft", "", "Der Geheimkurier (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d76c5d1aad506442b9e9fb67765e051", "Apollo", "", "Lost Luggage (1981) (Apollo) (NTSC) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2e0aed5bb619edcefa3fafb4fbe7c551", "", "", "Qb (2.06) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "2e663eaa0d6b723b645e643750b942fd", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "191", "", "", "" }, - { "2eda6a49a49fcb2b674ea9e160b6a617", "Kyle Pittman", "", "Rambo in Afghanistan by Kyle Pittman (Riddle of the Sphinx Hack)", "Hack of Riddle of the Sphinx (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "", "" }, - { "2f273c423471d125d32d1d54d58f063a", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" }, + { "2e663eaa0d6b723b645e643750b942fd", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2eda6a49a49fcb2b674ea9e160b6a617", "Kyle Pittman", "", "Rambo in Afghanistan by Kyle Pittman (Riddle of the Sphinx Hack)", "Hack of Riddle of the Sphinx (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2f273c423471d125d32d1d54d58f063a", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "45", "229", "", "", "" }, - { "313243fc41e49ef6bd3aa9ebc0d372dd", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "318a9d6dda791268df92d72679914ac3", "Activision", "AX-017", "Megamania (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "192", "", "", "" }, + { "3051b6071cb26377cd428af155e1bfc4", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, + { "30e0ab8be713208ae9a978b34e9e8e8c", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "313243fc41e49ef6bd3aa9ebc0d372dd", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "318a9d6dda791268df92d72679914ac3", "Activision", "AX-017", "Megamania (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, + { "32244e55ce6ec6bfbd763f33384bdc2e", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "328949872e454181223a80389d03c122", "", "CX2623 / 99819 / 75125", "Home Run (1978) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "331938989f0f33ca39c10af4c09ff640", "", "", "Combat - Tank AI (19-04-2003) (Zach Matley)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "33d68c3cd74e5bc4cf0df3716c5848bc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "Yes", "", "" }, + { "33d68c3cd74e5bc4cf0df3716c5848bc", "CBS Electronics", "4L-2486", "Blueprint (1983) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "47", "237", "Yes", "", "" }, - { "3604e725e81dd0abede07fd1c82eb058", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "", "" }, + { "3577e19714921912685bb0e32ddf943c", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "3604e725e81dd0abede07fd1c82eb058", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3685060707df27d4091ba0ea2dc4b059", "", "", "PezZerk - PezMan in Ghost Manor (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "36c29ceee2c151b23a1ad7aa04bd529d", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "48", "171", "", "", "No" }, + { "36c29ceee2c151b23a1ad7aa04bd529d", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "373b8a081acd98a895db0cb02df35673", "", "", "Demo Image Series #5 - Boofly (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "37ab3affc7987995784b59fcd3fcbd31", "", "", "Sprite Test (29-11-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "384f5fbf57b5e92ed708935ebf8a8610", "20th Century Fox", "11009", "Crypts of Chaos (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "52", "185", "", "", "" }, + { "384f5fbf57b5e92ed708935ebf8a8610", "20th Century Fox", "11009", "Crypts of Chaos (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38c362dcd5cad5a62e73ae52631bd9d8", "", "", "Baubles (14-11-2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "393e41ca8bdd35b52bf6256a968a9b89", "US Games", "VC 1012", "M.A.D. (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "192", "", "", "" }, + { "393e41ca8bdd35b52bf6256a968a9b89", "US Games", "VC 1012", "M.A.D. (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "39c78d682516d79130b379fa9deb8d1c", "Apollo", "AP 1001", "Skeet Shoot (1981) (Apollo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3a51a6860848e36e6d06ffe01b71fb13", "Retroactive", "", "Qb (2.07) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3ac6c50a8e62d4ce71595134cbd8035e", "", "", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "31", "195", "", "", "" }, + { "3ac6c50a8e62d4ce71595134cbd8035e", "", "", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3b37ebc0674e3d5e49ffbdc4b65607a6", "", "", "Greeting Cart Decepticon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3b86a27132fb74d9b35d4783605a1bcb", "", "", "Wizard (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, + { "3b86a27132fb74d9b35d4783605a1bcb", "", "", "Wizard (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c4a6f613ca8ba27ce9e43c6c92a3128", "", "", "Qb (V0.04) (Non-Lax Version) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "42", "216", "Yes", "", "" }, - { "3e90cf23106f2e08b2781e41299de556", "Activision", "AX-018", "Pitfall! (1982) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, + { "3cbdf71bb9fd261fbc433717f547d738", "CCE", "PG206", "Bobby is Going Home (CCE) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, + { "3d48b8b586a09bdbf49f1a016bf4d29a", "", "TP-606", "Hole Hunter (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d8a2d6493123a53ade45e3e2c5cafa0", "Sears", "99843 / 75118", "Sky Diver (1978) (Atari) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3e03086da53ecc29d855d8edf10962cb", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "3e90cf23106f2e08b2781e41299de556", "Activision", "AX-018", "Pitfall! (1982) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f01bd6d059396f495a4cde7de0ab180", "", "", "Qb (Special Edition) (NTSC) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3f540a30fdee0b20aed7288e4a5ea528", "Atari", "CX2670", "Atari Video Cube (1982) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "" }, + { "3f540a30fdee0b20aed7288e4a5ea528", "Atari", "CX2670", "Atari Video Cube (1982) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3f9431cc8c5e2f220b2ac14bbc8231f4", "", "", "Colors Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3fe43915e5655cf69485364e9f464097", "CCE", "", "Fisher Price (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "196", "", "", "" }, + { "3fe43915e5655cf69485364e9f464097", "CCE", "", "Fisher Price (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4066309eb3fa3e7a725585b9814bc375", "", "", "Multi Ball Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "40b58f2f93e503b14a5d1d0ae2ca5aa0", "", "", "Greeting Cart Tanya (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "40e12c008037a323a1290c8fa4d2fe7f", "", "", "Skeleton (NTSC) (06-09-2002) (Eric Ball)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "41c4e3d45a06df9d21b7aae6ae7e9912", "CCE", "", "Grand Prix (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "189", "", "", "" }, + { "41c4e3d45a06df9d21b7aae6ae7e9912", "CCE", "", "Grand Prix (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "183", "", "", "" }, + { "4474b3ad3bf6aabe719a2d7f1d1fb4cc", "Activision", "AX-039", "Kung Fu Master (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "45040679d72b101189c298a864a5b5ba", "20th Century Fox", "11022", "SpaceMaster X-7 (1983) (20th Century Fox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "458883f1d952cd772cf0057abca57497", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, + { "470878b9917ea0348d64b5750af149aa", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4799a40b6e889370b7ee55c17ba65141", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47cd61f83457a0890de381e478f5cf5f", "Imagic", "O3205", "Fathom (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "48287a9323a0ae6ab15e671ac2a87598", "Zellers", "", "Laser Volley (1983) (Zellers) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "48f18d69799a5f5451a5f0d17876acef", "", "", "Criminal Pursuit (Emag)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "493e90602a4434b117c91c95e73828d1", "Telegames", "", "Lock 'N' Chase (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4a2fe6f0f6317f006fd6d4b34515448b", "", "", "Warring Worms (Midwest Classic Edition) (08-06-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135", "RealSports Boxing (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "185", "", "", "" }, + { "4abb4c87a4c5f5d0c14ead2bb36251be", "Atari", "CX26135", "RealSports Boxing (1987) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4afe528a082f0d008e7319ebd481248d", "", "", "Multi-Color Demo 1 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4b9581c3100a1ef05eac1535d25385aa", "", "", "I.Q. 180 (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "235", "", "", "" }, + { "4b9581c3100a1ef05eac1535d25385aa", "", "", "I.Q. 180 (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4c39a2c97917d3d71739b3e21f60bba5", "", "", "Whale (Sub Scan Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4c8970f6c294a0a54c9c45e5e8445f93", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4ca90ba45eced6f5ad560ea8938641b2", "", "", "Hangman Man Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4d5f6db55f7f44fd0253258e810bde21", "Mattel / Fabrizio Zavagli", "", "Betterblast by Fabrizio Zavagli (Astroblast Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "", "" }, + { "4d5f6db55f7f44fd0253258e810bde21", "Mattel / Fabrizio Zavagli", "", "Betterblast by Fabrizio Zavagli (Astroblast Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "54", "205", "", "", "" }, + { "4e99ebd65a967cabf350db54405d577c", "Coleco", "2663", "Time Pilot (1983) (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f781f0476493c50dc578336f1132a67", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [p1][o1][!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, - { "52615ae358a68de6e76467e95eb404c7", "", "", "DJdsl-wopd (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "51de328e79d919d7234cf19c1cd77fbc", "Atari", "CX2678", "Dukes of Hazzard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "52615ae358a68de6e76467e95eb404c7", "", "", "DJdsl-wopd (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "52e9db3fe8b5d336843acac234aaea79", "", "", "Fu Kung! (V0.11) (28-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "537ed1e0d80e6c9f752b33ea7acbe079", "", "", "A-VCS-tec Challenge (beta 5) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "53d181cde2e0219b5754caad246fcb66", "", "", "Missile Demo (1998) (Ruffin Bailey) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "54785fa29e28aae6038929ba29d33d38", "", "", "Poker Squares (V0.19) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5524718a19107a04ec3265c93136a7b5", "Atari / Thomas Jentzsch", "", "RealSports Basketball (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "199", "", "", "" }, - { "55ef7b65066428367844342ed59f956c", "", "CX2683", "Crazy Climber (1983) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "46", "195", "", "", "" }, - { "5678ebaa09ca3b699516dba4671643ed", "Coleco", "2459", "Mouse Trap (1982) (Coleco) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "Yes", "", "" }, - { "579baa6a4aa44f035d245908ea7a044d", "Jess Ragan", "", "Galaxian by Jess Ragan (Enhanced Graphics)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, - { "58513bae774360b96866a07ca0e8fd8e", "Mystique", "1001", "Custer's Revenge (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "198", "", "", "" }, + { "5524718a19107a04ec3265c93136a7b5", "Atari / Thomas Jentzsch", "", "RealSports Basketball (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "55ef7b65066428367844342ed59f956c", "", "CX2683", "Crazy Climber (1983) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5678ebaa09ca3b699516dba4671643ed", "Coleco", "2459", "Mouse Trap (1982) (Coleco) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "579baa6a4aa44f035d245908ea7a044d", "Jess Ragan", "", "Galaxian by Jess Ragan (Enhanced Graphics)", "Hack of Galaxian (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "58513bae774360b96866a07ca0e8fd8e", "Mystique", "1001", "Custer's Revenge (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "219", "", "", "" }, + { "5a6febb9554483d8c71c86a84a0aa74e", "CCE", "2653", "Donkey Kong Junior (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5a93265095146458df2baf2162014889", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5af02776ebcdd8b5e39c4dfae61019e1", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 122283)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5b6f5bcbbde42fc77d0bdb3146693565", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, - { "5bc9998b7e9a970e31d2cb60e8696cc4", "", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "5b6f5bcbbde42fc77d0bdb3146693565", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5bc9998b7e9a970e31d2cb60e8696cc4", "", "", "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "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", "", "", "" }, + { "5d2cc33ca798783dee435eb29debf6d6", "Atari", "", "Commando (1988) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5dccf215fdb9bbf5d4a6d0139e5e8bcb", "Froggo", "FG 1009", "Sea Hunt (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "5f316973ffd107f7ab9117e93f50e4bd", "US Games", "VC 1004", "Commando Raid (1982) (US Games) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "239", "", "", "" }, + { "5fb71cc60e293fe10a5023f11c734e55", "", "", "This Planet Sucks (Fix) (27-12-2002) (Greg Troutman)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "603c7a0d12c935df5810f400f3971b67", "Bitcorp", "", "Mr. Postman (1983) (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, - { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (8K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "190", "Yes", "", "" }, + { "613abf596c304ef6dbd8f3351920c37a", "", "", "Boring Pac-man (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, + { "61631c2f96221527e7da9802b4704f93", "", "", "Commando (1988) (Activision) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6272f348a9a7f2d500a4006aa93e0d08", "", "", "RealSports Soccer (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6333ef5b5cbb77acd47f558c8b7a95d3", "Greg Troutman", "", "Dark Mage (8K) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "637efac676ff063f2fbb0abff77c4fa5", "", "", "Noize Maker Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "63c7395d412a3cd095ccdd9b5711f387", "Eric Ball", "ELB005", "Skeleton+ (PAL)", "Stereo sound", "Homebrew", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "643e6451eb6b8ab793eb60ba9c02e000", "", "", "Ghostbusters II (V2)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "242", "Yes", "", "" }, + { "643e6451eb6b8ab793eb60ba9c02e000", "", "", "Ghostbusters II (V2)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, + { "6522717cfd75d1dba252cbde76992090", "ITT Family Games", "554-33391", "Meteor Defense (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "65917ae29a8c9785bb1f2acb0d6aafd0", "", "", "Junkosoft One Year Demo (1999) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "65bd29e8ab1b847309775b0de6b2e4fe", "Coleco", "2667", "Roc n' Rope (1984) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "65bd29e8ab1b847309775b0de6b2e4fe", "Coleco", "2667", "Roc n' Rope (1984) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6651e2791d38edc02c5a5fd7b47a1627", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 040584)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "66706459e62514d0c39c3797cbf73ff1", "Video Gems", "", "Treasure Below (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "", "8", "152", "56", "230", "", "", "" }, + { "66706459e62514d0c39c3797cbf73ff1", "Video Gems", "", "Treasure Below (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "" }, + { "67931b0d37dc99af250dd06f1c095e8d", "CommaVid", "CM-004", "Room of Doom (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "67bd3d4dc5ac6a42a99950b4245bdc81", "Retroactive", "", "Qb (2.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "683dc64ef7316c13ba04ee4398e2b93a", "Ed Federmeyer", "", "Edtris (1995) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68760b82fc5dcf3fedf84376a4944bf9", "", "", "Laser Gates (1983) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "32", "249", "Yes", "", "" }, + { "691d67910b08b63de8631901d1887c1f", "Starpath", "", "Survival Island (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "69974dd5d6420b90898cde50aec5ef39", "Activision", "AG-009", "Freeway (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a2c68f7a77736ba02c0f21a6ba0985b", "Atari", "", "Computer Chess (1983) (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a882fb1413912d2ce5cf5fa62cf3875", "", "TP-605", "Dragon Defender (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "195", "", "", "" }, + { "6b7a56b6ac2ca4bf9254474bf6ed7d80", "", "", "Horizonal Color Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6c1f3f2e359dbf55df462ccbcdd2f6bf", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "56", "217", "", "", "" }, + { "6e59dd52f88c00d5060eac56c1a0b0d3", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "6ff4156d10b357f61f09820d03c0f852", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "56", "195", "Yes", "", "" }, + { "718ee85ea7ec27d5bea60d11f6d40030", "Salu / Thomas Jentzsch", "", "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "72305c997f2cec414fe6f8c946172f83", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "72bda70c75dfa2365b3f8894bace9e6a", "", "", "Atlantis (Hack 01) (TJ) (Atlantis Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "72fd08deed1d6195942e0c6f392e9848", "HES", "", "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73aa02458b413091ac940c0489301710", "Starsoft", "", "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "740b47df422372fbef700b42cea4e0bf", "", "", "Dizzy Wiz (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "749fec9918160921576f850b2375b516", "Spectravideo", "SA-205", "China Syndrome (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "28", "212", "Yes", "", "" }, + { "749fec9918160921576f850b2375b516", "Spectravideo", "SA-205", "China Syndrome (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "", "YES", "", "" }, { "755fed16b48e81de05130708a905d00d", "", "", "Comitoid beta 3 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "75b22fdf632d76e246433db1ebccd3c4", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7608abdfd9b26f4a0ecec18b232bea54", "Atari", "", "Football (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76ee917d817ef9a654bc4783e0273ac4", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "777aece98d7373998ffb8bc0b5eff1a2", "", "", "2600 Collison Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "240", "", "", "" }, + { "78b84cfb1c57b0488d674d2374e656e6", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "798b8921276eec9e332dfcb47a2dbb17", "", "", "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]", "Uses Kids/Keypad Controllers", "", "", "", "", "", "", "", "KEYBOARD", "", "", "", "", "", "", "", "", "", "" }, + { "79b649fb812c50b4347d12e7ddbb8400", "", "", "Red Pong Number 2 Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "79e5338dbfa6b64008bb0d72a3179d3c", "Mattel", "MT4313", "Star Strike (1982) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a63d7ea3f2851bcf04f0bb4ba1a3929", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "7ac4f4fb425db38288fa07fb8ff4b21d", "Sancho-Goliath", "", "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7b33407b2b198af74906b936ce1eecbb", "", "", "Ghostbuster 2 (NTSC) (King Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "7ba07d4ea18bf3b3245c374d8720ad30", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "202", "", "", "" }, + { "7ba07d4ea18bf3b3245c374d8720ad30", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "7d5c3b7b908752b98e30690e2a3322c2", "Dactar", "", "Freeway (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d9c96b215d1941e87b6fb412eb9204f", "Atari", "", "Othello (1978) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e0dc330a32398f980637f9ded8f3ac4", "Tigervision", "7-012", "Espial (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e7c4c59d55494e66eef5e04ec1c6157", "Baroque Gaming (Brian Eno)", "", "Warring Worms (2002) (Baroque Gaming)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ed7130a6e4020161836414332b11983", "", "", "Fu Kung! (V0.05 Cuttle Card Compatible) (13-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7f525b07bc98080cc8950f7284e52ede", "", "", "128-in-1 Junior Console (Chip 4) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "7f525b07bc98080cc8950f7284e52ede", "", "", "128-in-1 Junior Console (Chip 4) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7fcd1766de75c614a3ccc31b25dd5b7a", "Playaround", "", "Knight on the Town (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "805f9a32ef97ac25f999a25014dc5c23", "", "", "Balthazar (aka Babylon 5) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "805f9a32ef97ac25f999a25014dc5c23", "", "", "Balthazar (aka Babylon 5) (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "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", "", "", "", "", "54", "205", "", "", "" }, - { "81b3bf17cf01039d311b4cd738ae608e", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "42", "190", "Yes", "", "" }, + { "813985a940aa739cc28df19e0edd4722", "Imagic", "IA3201", "Star Voyager (1982) (Imagic)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "81591a221419024060b890665beb0fb8", "Atari", "CX2611", "Indy 500 (1978) (Atari) (PAL) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, + { "81b3bf17cf01039d311b4cd738ae608e", "CBS Electronics", "M8793", "Gorf (1982) (CBS Electronics)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "831a0c908b1797093290b688baf5ba76", "", "", "Death Derby (2LK Demo) (26-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "83bdc819980db99bf89a7f2ed6a2de59", "Atari", "CX2637", "Dodge 'em (1980) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "57", "180", "", "", "" }, - { "840a5a2eaea24d95d289f514fd12f9bb", "", "", "GBImprov (Ghostbusters Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "201", "", "", "" }, - { "85227160f37aaa29f5e3a6c7a3219f54", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "193", "", "", "" }, - { "85a4133f6dcf4180e36e70ad0fca0921", "CCE", "", "Chopper Command (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "", "" }, - { "85e564dae5687e431955056fbda10978", "Milton Bradley", "4362", "Survival Run (1983) (Milton Bradley)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "219", "Yes", "", "" }, + { "83bdc819980db99bf89a7f2ed6a2de59", "Atari", "CX2637", "Dodge 'em (1980) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "840a5a2eaea24d95d289f514fd12f9bb", "", "", "GBImprov (Ghostbusters Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85227160f37aaa29f5e3a6c7a3219f54", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85a4133f6dcf4180e36e70ad0fca0921", "CCE", "", "Chopper Command (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "85e564dae5687e431955056fbda10978", "Milton Bradley", "4362", "Survival Run (1983) (Milton Bradley)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "86b4aa76bbeb70e1a4f9211a9880ba8e", "", "", "Incoming (1 Player Version) (05-11-2002) (Ben Larson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8747ba79cd39fa83a529bb26010db21b", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "47", "229", "", "", "" }, - { "87b460df21b7bbcfc57b1c082c6794b0", "", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "202", "", "", "" }, + { "8747ba79cd39fa83a529bb26010db21b", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "87b460df21b7bbcfc57b1c082c6794b0", "", "", "Climber 5 (20-03-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "NO" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "896ec58f26e930e02f5e4f046602c3a1", "", "", "Synthcart (Beta) (2002) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -799,1296 +799,1296 @@ static const char* DefProps[][23] = { { "8ae7809702b7d618e45daa2ddb0ece26", "", "", "Greeting Cart Blue-Ribbon Award(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "8cd26dcf249456fe4aeb8db42d49df74", "Atari", "CX26139", "Crossbow (1987) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8d8b7d7b983f75debbdaac651e814768", "", "", "Demo Image Series #15 - Three Marios (PAL) (06-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic", "", "Laser Gates (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "233", "", "", "" }, + { "8e4cd60d93fcde8065c1a2b972a26377", "Imagic", "", "Laser Gates (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ee3f64dc0f349adc893fe93df5245d8", "", "", "Euchre (20-07-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "8f88309afad108936ca70f8b2b084718", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8fffc8f15bb2e6d24e211884a5479aa5", "Retroactive", "", "Qb (V1.00) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "90ccf4f30a5ad8c801090b388ddd5613", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "913d5d959b5021f879033c89797bab5e", "", "", "Robot Player Graphic (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "91fdb6541f70c40b16aabf8308123be8", "", "", "Interlacing Game (19-08-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "92d1f6ac179ebe5963868d6bc1bdda8d", "HES", "", "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "230", "", "", "" }, + { "92d1f6ac179ebe5963868d6bc1bdda8d", "HES", "", "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, - { "966b11d3c147d894dd9e4ebb971ea309", "", "", "Marble Craze Song (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "191", "", "", "" }, + { "94e3fbc19107a169909e274187247a9d", "", "", "2-in-1 - Freeway and Tennis [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "956496f81775de0b69a116a0d1ad41cc", "CCE", "", "Alien (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "95e1d834c57cdd525dd0bd6048a57f7b", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "966b11d3c147d894dd9e4ebb971ea309", "", "", "Marble Craze Song (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "96bcb3d97ce4ff7586326d183ac338a2", "", "", "Revenge of the Apes (Planet of the Apes Hack) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "97933c9f20873446e4c1f8a4da21575f", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "187", "Yes", "", "" }, - { "9848b5ef7a0c02fe808b920a2ac566d2", "", "", "Baseball (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "97933c9f20873446e4c1f8a4da21575f", "Starsoft", "", "Hili Ball (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "9848b5ef7a0c02fe808b920a2ac566d2", "", "", "Baseball (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "98ef1593624b409b9fb83a1c272a0aa7", "CCE", "", "Cosmic Ark (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "991d57bbcd529ad62925098e0aec1241", "", "", "Gunfight 2600 - The Final Kernel (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9a25b3cfe2bbb847b66a97282200cca2", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9d2f05d0fe8b2dfcf770b02eda066fc1", "", "", "Push (V0.06) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9e192601829f5f5c2d3b51f8ae25dbe5", "Mystique", "", "Cathouse Blues (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "Yes", "", "" }, + { "9e192601829f5f5c2d3b51f8ae25dbe5", "Mystique", "", "Cathouse Blues (1982) (Mystique)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "9ea8ed9dec03082973244a080941e58a", "Eric Mooney, Piero Cavina", "", "INV+", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "9eeb40f04a27efb1c68ba1d25e606607", "", "", "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9f59eddf9ba91a7d93bce7ee4b7693bc", "Parker Bros / Thomas Jentzsch", "", "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "", "", "" }, + { "a00ec89d22fcc0c1a85bb542ddcb1178", "CCE", "", "Phoenix (1982) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0d502dc8b90b1d7daa5f6effb10d349", "", "", "Demo Image Series #5 - Sam (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "a1f9159121142d42e63e6fb807d337aa", "Starsoft", "11003", "Mr. T (AKA Fast Eddie) (Starsoft) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "58", "198", "", "", "" }, + { "a11099b6ec24e4b00b8795744fb12005", "Activision", "AK-049", "Rampage! (1989) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a184846d8904396830951217b47d13d9", "Activision", "AX-029", "Crackpots (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a1ca372388b6465a693e4626cc98b865", "Starsoft", "", "Der Vielfrass (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a1f9159121142d42e63e6fb807d337aa", "Starsoft", "11003", "Mr. T (AKA Fast Eddie) (Starsoft) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "a2aae759e4e76f85c8afec3b86529317", "Cooper Black", "", "Boom Bang (AKA Crackpots) (Cooper Black) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a3b9d2be822eab07e7f4b10593fb5eaa", "", "", "GREGXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a422194290c64ef9d444da9d6a207807", "Mattel", "MT5667", "Dark Cavern (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4aa7630e4c0ad7ebb9837d2d81de801", "", "", "Atari 2600 Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4c08c4994eb9d24fb78be1793e82e26", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "", "", "", "" }, - { "a5e9ed3033fb2836e80aa7a420376788", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "208", "", "", "" }, + { "a537879d8e82e1061d3ad800479d3b84", "", "", "Brooni (PAL) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a5e9ed3033fb2836e80aa7a420376788", "Atari", "CX2637", "Dodge 'em (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a641d14c516d00da81cd12c2dbaa06db", "", "", "Image - Baboon2 (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "a74689a08746a667a299b0507e1e6dd9", "Starpath", "AR-4105", "Frogger (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a7cf2b9afdbb3a161bf418dbcf0321dc", "", "", "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "a8435ec570141de5d833c4abec499e55", "", "", "Happy Birthday Demo (2001) (Dennis Debro) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a8d4a9500b18b0a067a1f272f869e094", "", "", "Red And White Checkerboard Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, + { "a8d4a9500b18b0a067a1f272f869e094", "", "", "Red And White Checkerboard Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a9784c24cddb33bd0d14442b97784f3d", "", "", "Omega Race DC (2003) (TJ) (Omega Race Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "aa7bb54d2c189a31bb1fa20099e42859", "CBS Electronics", "2656", "Mr. Do! (1983) (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "ab10f2974dee73dab4579f0cab35fca6", "Starsoft", "", "Lilly Adventure (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ab56f1b2542a05bebc4fbccfc4803a38", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, - { "acb962473185d7a652f90ed6591ae13b", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, + { "ac9adbd6de786a242e19d4bec527982b", "Activision", "AX-012", "Ice Hockey (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "acb962473185d7a652f90ed6591ae13b", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "adb770ff70e9adf08bbb907a7eccd240", "", "", "Inv Demo 3 (2001) (Erik Mooney) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae047e9468bda961d8e9e9d8ff52980f", "", "", "Tunnel Demo (Red Spiral) (30-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ae4be3a36b285c1a1dff202157e2155d", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "208", "", "", "" }, + { "ae4be3a36b285c1a1dff202157e2155d", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aea308e30cd92cc73dc0c7f53f69ec56", "", "", "Death Derby (2LK_12) (24-02-2003) (Glenn Saunders)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "aed82052f7589df05a3f417bb4e45f0c", "Atari", "CX2606 / 99825 /75112", "Maze (AKA Slot Racers) (1978) (Sears) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "afe88aae81d99e0947c0cfb687b16251", "Apollo", "AP 2006", "Infiltrate (1982) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, - { "b00e8217633e870bf39d948662a52aac", "Konami", "011", "Marine Wars (1983) (Konami) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "48", "172", "", "", "" }, + { "afe88aae81d99e0947c0cfb687b16251", "Apollo", "AP 2006", "Infiltrate (1982) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b00e8217633e870bf39d948662a52aac", "Konami", "011", "Marine Wars (1983) (Konami) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, + { "b1a6c96e9093352106bc335e96caa154", "Joe Grand", "", "SCSIcide Pre-release 1 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "b1e2d5dc1353af6d56cd2fe7cfe75254", "Atari", "CX26171", "Motorodeo (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" }, - { "b438a6aa9d4b9b8f0b2ddb51323b21e4", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "46", "226", "", "", "" }, + { "b2d1e63f7f22864096b7b6c154151d55", "", "", "Bounce! (17-03-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "b311ab95e85bc0162308390728a7361d", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b438a6aa9d4b9b8f0b2ddb51323b21e4", "Telegames", "5861 A030", "Bogey Blaster (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b4a4c87840613f102acb5b3a647d0a67", "", "", "Mobile 48 Sprite Kernel (04-01-2003) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b59417d083b0be2d49a7d93769880a4b", "", "", "Donkey Kong (1983) (Pet Boat) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, + { "b59417d083b0be2d49a7d93769880a4b", "", "", "Donkey Kong (1983) (Pet Boat) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b83df1f32b4539c324bdf94851b4db55", "Angelino", "", "One On One by Angelino (Basketball Hack)", "Hack of Basketball (1978) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "", "" }, - { "b9232c1de494875efe1858fc8390616d", "Panda", "110", "Harbor Escape (1983) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "35", "201", "", "", "" }, - { "b9d1e3be30b131324482345959aed5e5", "Activision", "", "Kabobber (Activision) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "b83df1f32b4539c324bdf94851b4db55", "Angelino", "", "One On One by Angelino (Basketball Hack)", "Hack of Basketball (1978) (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9232c1de494875efe1858fc8390616d", "Panda", "110", "Harbor Escape (1983) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b9d1e3be30b131324482345959aed5e5", "Activision", "", "Kabobber (Activision) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ba257438f8a78862a9e014d831143690", "US Games", "VC 2002", "Squeeze Box (1982) (US Games) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bae66907c3200bc63592efe5a9a69dbb", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "205", "", "", "" }, + { "bae66907c3200bc63592efe5a9a69dbb", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "194", "", "", "" }, + { "bc24440b59092559a1ec26055fd1270e", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bc703ea6afb20bc089f04d8c9d79a2bd", "", "", "Gunfight 2600 - Not mergeable with Colbert wizardry... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bd39598f067a1193ae81bd6182e756d1", "Telegames", "", "Night Stalker (Telegames) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bdecc81f740200780db04a107c3a1eba", "Starsoft", "", "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be41463cd918daef107d249f8cde3409", "Dan Hitchens and Mike Mika", "", "Berzerk (Voice Enhanced) (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bedfbde71fb606601f936b5b057f26f7", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, + { "c00734a2233ef683d9b6e622ac97a5c8", "Atari", "CX26133", "A-Team, The (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c08d0cee43077d3055febb00e5745c1d", "", "", "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "c21450c21efb7715746e9fa87ad6f145", "Hozer Video Games", "", "Gunfight 2600 - It could've been soooo cool, but... (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "c31a17942d162b80962cb1f7571cd1d5", "Rainbow Vision", "", "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "66", "191", "", "", "" }, + { "c54b4207ce1d4bf72fadbb1a805d4a39", "Billy Eno", "", "Sniper (Feb 30) (2001) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c5c7cc66febf2d4e743b4459de7ed868", "Atari", "CX2696", "Asterix (1988) (Atari) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "c6d48c6ae6461e0e82753540a985ac9e", "Ed Federmeyer", "", "Edtris (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c77c35a6fc3c0f12bf9e8bae48cba54b", "Xonox", "99004", "Artillery Duel (1983) (Xonox) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "20", "", "", "", "" }, { "c7e43ad79c5e5c029d9f5ffde23e32cf", "", "", "PAL-NTSC Detector (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c830f6ae7ee58bcc2a6712fb33e92d55", "Atari", "", "Tempest (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "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", "", "" }, + { "c92cfa54b5d022637fdcbdc1ef640d82", "Retroactive", "", "Qb (V2.05) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "ca09fa7406b7d2aea10d969b6fc90195", "Activision", "AX-024", "Dolphin (1983) (Activision) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ca53fc8fd8b3c4a7df89ac86b222eba0", "CCE", "", "Pac-Man (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb0b5b8458a13a074e1fe82d3c4e8f3c", "Activision", "AZ-028", "Robot Tank (1983) (Activision) (PAL) [b1]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb9626517b440f099c0b6b27ca65142c", "Atari", "CX2664 / 6699818", "Brain Games (1982) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, + { "cbced209dd0575a27212d3eee6aee3bc", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, - { "cfd6a8b23d12b0462baf6a05ef347cd8", "Activision", "AX-006", "Bridge (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "36", "200", "", "", "" }, + { "ccb5fa954fb76f09caae9a8c66462190", "", "ASC1001", "Malagai (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "ccd6ce508eee4b3fca67212833edcd85", "", "", "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cd568d6acb2f14477ebf7e59fb382292", "Ariola", "MT5687", "Football (AKA Fussball) (Ariola) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cdb81bf33d830ee4ee0606ee99e84dba", "Starpath", "AR-4300", "Fireball (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "ce4bbe11d682c15a490ae15a4a8716cf", "", "", "Okie Dokie (Older) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cedbd67d1ff321c996051eec843f8716", "Froggo", "", "Karate (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cf63ffac9da89ef09c6c973083061a47", "CCE", "", "M.A.S.H. (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cfd6a8b23d12b0462baf6a05ef347cd8", "Activision", "AX-006", "Bridge (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cfef1a2d1f6a5ee7a5e1f43f3056f112", "", "", "Skeleton+ (05-05-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto by Paul Slocum (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "Yes", "", "" }, - { "d09935802d6760ae58253685ff649268", "Telesys", "1006", "Demolition Herby (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "187", "Yes", "", "" }, + { "cff9950d4e650094f65f40d179a9882d", "Paul Slocum", "", "Mr. Roboto by Paul Slocum (Berzerk Hack)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "d09935802d6760ae58253685ff649268", "Telesys", "1006", "Demolition Herby (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "d0b9f705aa5f61f47a748a66009ae2d2", "", "", "Synthcart (14-01-2002) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "Yes", "", "" }, { "d100b11be34a1e5b7832b1b53f711497", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d1fc4cf675c9b49fb7deb792f2f3a7a5", "Atari", "CX26120", "Defender II (1984) (Atari) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, - { "d2c4f8a4a98a905a9deef3ba7380ed64", "Mythicon", "MA-1001", "Sorcerer (1983) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "190", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "44", "229", "", "", "" }, + { "d1fc4cf675c9b49fb7deb792f2f3a7a5", "Atari", "CX26120", "Defender II (1984) (Atari) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d2c4f8a4a98a905a9deef3ba7380ed64", "Mythicon", "MA-1001", "Sorcerer (1983) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d3171407c3a8bb401a3a62eb578f48fb", "", "", "Fire Spinner (Emag) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "d3456b4cf1bd1a7b8fb907af1a80ee15", "Avalon Hill", "50030", "Wall Ball (1983) (Avalon Hill)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "d3bb42228a6cd452c111c1932503cc03", "UA Limited", "", "Funky Fish (UA Limited)", "", "Prototype", "", "UA", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "d4942f4b55313ff269488527d84ce35c", "", "", "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d536a84d4e1f170305e17f7078296a50", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d5aa7472e7f2cc17e893a1a36f8dadf0", "", "", "Overhead Adventure Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d62283aed0f4199adb2333de4c263e9c", "Atari", "CX2615", "Demons to Diamonds (1982) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "d763e3a9cdcdd56c715ec826106fab6a", "Activision", "AG-001", "Dragster (1980) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d7f5bf138cfc7feab7b8ef1534c8b477", "", "", "Eric Bergstrom's KC-135 (Radar Map) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d84cda16d9303a7e2a658b168966c973", "", "", "Image - Clown (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d8acaa980cda94b65066568dd04d9eb0", "CCE", "", "Sea Hunt (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "197", "", "", "" }, + { "d8acaa980cda94b65066568dd04d9eb0", "CCE", "", "Sea Hunt (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "da6465a34d2e44d26aa9a2a0cd1bce4d", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "" }, + { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "db1753cc702c18d3917ec7f3b0e8659f", "", "", "Frame Counter 2 (2001) (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, + { "db76f7a0819659d9e585f2cdde9175c7", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dbabb80e92ff18d8eecf615c0539151e", "", "", "Sprite Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dbdaf82f4f0c415a94d1030271a9ef44", "CCE", "", "Kaboom! (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "192", "", "", "" }, + { "dbdaf82f4f0c415a94d1030271a9ef44", "CCE", "", "Kaboom! (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "dca941dab5c6f859b71883b13ade9744", "", "", "Hangman Pac-Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dd0cbe5351551a538414fb9e37fc56e8", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "55", "250", "", "", "" }, - { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, + { "dd0cbe5351551a538414fb9e37fc56e8", "Xonox", "99006", "Sir Lancelot (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd7598b8bcb81590428900f71b720efb", "Xonox", "99005", "Robin Hood (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "212", "", "", "" }, - { "de78b3a064d374390ac0710f95edde92", "Bomb", "CA281", "Assault (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "203", "", "", "" }, + { "de29e46dbea003c3c09c892d668b9413", "CBS Electronics", "", "Carnival (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de78b3a064d374390ac0710f95edde92", "Bomb", "CA281", "Assault (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, + { "df753cb87d3af4d03f694ab848638108", "", "", "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dfafa3fa58f5cc3f0342cca475df6095", "", "", "Space Treat (V1.1 Beta) (24-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e02156294393818ff872d4314fc2f38e", "Panda", "", "Dice Puzzle (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "244", "Yes", "", "" }, + { "e02156294393818ff872d4314fc2f38e", "Panda", "", "Dice Puzzle (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "e0cf2dcc4c1348c468f5bb1e421c9164", "", "", "Invader Sprites in a Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e10d2c785aadb42c06390fae0d92f282", "Parker Bros", "PB5910", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "8", "249", "", "", "" }, + { "e10d2c785aadb42c06390fae0d92f282", "Parker Bros", "PB5910", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "230", "", "", "" }, + { "e3600be9eb98146adafdc12d91323d0f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "" }, + { "e40a818dac4dd851f3b4aafbe2f1e0c1", "", "CX26137", "Peek-A-Boo (Atari) (Prototype)", "Uses Keypad Controllers", "Prototype", "", "", "", "", "", "", "KEYBOARD", "", "", "", "", "", "", "", "", "", "" }, + { "e4b12deaafd1dbf5ac31afe4b8e9c233", "", "", "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "", "", "" }, - { "e61210293b14c9c4ecc91705072c6a7e", "", "", "Bugs (1983) (Gameworld) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, - { "e6508b878145187b87b9cded097293e7", "", "", "Oystron (V2.8) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "197", "", "", "" }, + { "e556e07cc06c803f2955986f53ef63ed", "Coleco", "2665", "Front Line (1982) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e5d72ff8bab4450be57785cc9e83f3c0", "", "", "Kung Fu Superkicks (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e61210293b14c9c4ecc91705072c6a7e", "", "", "Bugs (1983) (Gameworld) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e6508b878145187b87b9cded097293e7", "", "", "Oystron (V2.8) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e73838c43040bcbc83e4204a3e72eef4", "CCE", "", "Apples and Dolls (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "e7dd8c2e6c100044002c1086d02b366e", "", "", "Barnstorming (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, + { "e7dd8c2e6c100044002c1086d02b366e", "", "", "Barnstorming (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "193", "", "", "" }, - { "ed1a784875538c7871d035b7a98c2433", "", "", "Save Our Ship (Technovision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "214", "", "", "" }, - { "eddef10fdc0029301064115ae0cd41d4", "CCE", "AG-009", "Freeway (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, + { "eb46e99ec15858f8cd8c91cef384ce09", "Rainbow Vision", "", "Ground Zero (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ebcbc8a181a738e13df6216e5c329230", "Activision", "AX-022", "Seaquest (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ecf51385384b468834611d44a8429c03", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ed1a784875538c7871d035b7a98c2433", "", "", "Save Our Ship (Technovision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eddef10fdc0029301064115ae0cd41d4", "CCE", "AG-009", "Freeway (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee659ae50e9df886ac4f8d7ad10d046a", "Exus", "", "Video Reflex (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ee6cbedf6c0aac90faa0a8dbc093ffbe", "CCE", "", "My Golf (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, + { "ee6cbedf6c0aac90faa0a8dbc093ffbe", "CCE", "", "My Golf (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "8", "152", "", "250", "Yes", "", "" }, - { "f2d40c70cf3e1d03bc112796315888d9", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "246", "", "", "" }, + { "ef71e9fb0d8d477226d8d42261fbf0a7", "Piero Cavina", "", "Multi-Sprite Demo V2.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efffafc17b7cb01b9ca35324aa767364", "Cooper Black", "", "See Saw (Cooper Black) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f066bea7ab0a37b83c83c924a87c5b67", "", "", "Air Raiders (1982) (Mattel) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f0e0addc07971561ab80d9abe1b8d333", "Imagic", "IA3200", "Demon Attack (1982) (Imagic w-Picture Label) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f14d5e96ec3380aef57a4b70132c6677", "Goliath", "", "Pac Kong (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f1a0a23e6464d954e3a9579c4ccd01c8", "20th Century Fox", "11006", "Alien (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "f1eeeccc4bba6999345a2575ae96508e", "Video Gems", "", "Steeple Chase (Video Gems) (PAL)", "Uses the Paddle Controllers", "", "", "", "A", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "Yes", "", "" }, + { "f2d40c70cf3e1d03bc112796315888d9", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "f34f08e5eb96e500e851a80be3277a56", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "f3dfae774f3bd005a026e29894db40d3", "Starsoft", "", "See Saw (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "196", "", "", "" }, + { "f3dfae774f3bd005a026e29894db40d3", "Starsoft", "", "See Saw (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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" }, + { "f69d4fcf76942fcd9bdf3fd8fde790fb", "CCE", "", "Aquaventure (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "f73d2d0eff548e8fc66996f27acf2b4b", "CCE", "AX-018", "Pitfall! (CCE) (PAL-M) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f7a138eed69665b5cd1bfa796a550b01", "Tigervision", "7-012", "Espial (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8240e62d8c0a64a61e19388414e3104", "Activision", "AX-013", "Barnstorming (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8bfd99163d2c4ec688357786e6fba28", "", "", "Eckhard Stolberg's Scrolling Text Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f93d7fee92717e161e6763a88a293ffa", "20th Century Fox", "11013", "Porky's (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f96a763ced577e383d1102c4d0949525", "", "", "Death Derby (v0005) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f9cef637ea8e905a10e324e582dd39c2", "CCE", "", "Private Eye (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "193", "", "", "" }, - { "fa0570561aa80896f0ead05c46351389", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "30", "216", "", "", "" }, + { "f9cef637ea8e905a10e324e582dd39c2", "CCE", "", "Private Eye (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa0570561aa80896f0ead05c46351389", "Tigervision", "7-008", "Miner 2049er (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "31", "", "", "", "" }, { "fa529ec88eca679f6d5fd0ccb2120e46", "", "", "20 Sprites at Once Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, - { "faffd84f3a8eceee2fa5ea5b0a3e6678", "Emag", "", "Immies & Aggies (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "", "", "", "" }, + { "fae0b86934a7c5a362281dffebdb43a0", "Retroactive", "", "Qb (2.07) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "faffd84f3a8eceee2fa5ea5b0a3e6678", "Emag", "", "Immies & Aggies (Emag) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "fbb4f3debf48dc961b559384467f2057", "", "", "River Raid III (1985) (Digitel-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fbfebee9c14694719e3eda4854dc42ee", "", "", "Baubles 3 (Jake Patterson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fc6052438f339aea373bbc999433388a", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "256", "", "", "" }, - { "fca4a5be1251927027f2c24774a02160", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, + { "fc6052438f339aea373bbc999433388a", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fca4a5be1251927027f2c24774a02160", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fd10915633aea4f9cd8b518a25d62b55", "Atari", "", "Superman (1978) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fd8b4ee0d57605b35e236e814f706ff1", "", "", "Phoenix (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "fd8b4ee0d57605b35e236e814f706ff1", "", "", "Phoenix (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fdf6680b2b1e8054293a39700a765692", "", "", "Alpha Demo - The Beta Demo 2 (2000) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe67087f9c22655ce519616fc6c6ef4d", "", "", "Cracked (1988) (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, - { "00ce76ad69cdc2fa36ada01ae092d5a6", "", "", "Cosmic Avenger (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "00e19ebf9d0817ccfb057e262be1e5af", "Atari", "CX2639", "Othello (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "57", "230", "", "", "" }, + { "fec0c2e2ab0588ed20c750b58cf3baa3", "Activision", "AZ-037-04", "Beamrider (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ff4ed162386c795b4fb434903295b571", "", "", "Death Derby (v0002) (2001) (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ffc0ff4305dd46b4b459885bd1818e2e", "Barry Laws Jr.", "", "Star Wars - The Battle of Alderaan (Star Strike Hack)", "Hack of Star Strike (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "000509d1ed2b8d30a9d94be1b3b5febb", "", "", "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "008543ae43497af015e9428a5e3e874e", "Retroactive", "", "Qb (V2.09) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "00ce76ad69cdc2fa36ada01ae092d5a6", "", "", "Cosmic Avenger (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "00e19ebf9d0817ccfb057e262be1e5af", "Atari", "CX2639", "Othello (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "01293bd90a4579abb7aed2f7d440681f", "", "", "Snoopy (1983) (Century) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "012b8e6ef3b5fd5aabc94075c527709d", "Starpath", "AR-4302", "Party Mix (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "01acf9881a2f8bfa2d49982b1b10fb64", "", "", "Image - Woody (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "01e5c81258860dd82f77339d58bc5f5c", "CCE", "", "Corrida da Matematica (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, + { "01e5c81258860dd82f77339d58bc5f5c", "CCE", "", "Corrida da Matematica (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0277c449fae63f6f1c8f94dedfcf0058", "", "", "Laser Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02811151906e477d47c135db5b1699c6", "", "", "FlickerSort Demo (Updated) (20-04-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "02ced7ea2b7cb509748db6bfa227ebec", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "43", "229", "", "", "" }, + { "02ced7ea2b7cb509748db6bfa227ebec", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "043f165f384fbea3ea89393597951512", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "047ac3b9faea64522b7a23c4465a7aa8", "Atari", "", "Defender (1981) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "04b488d4eef622d022a0021375e7e339", "Starsoft", "", "Tennis (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "04fccc7735155a6c1373d453b110c640", "HES", "", "My Golf (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "056f5d886a4e7e6fdd83650554997d0d", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "A", "A", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, + { "05aedf04803c43eb5e09dfd098d3fd01", "Activision", "AX-025", "Keystone Kapers (1983) (Activision) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05ccf96247af12eef59698f1a060a54f", "Starsoft", "", "King Arthur (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05eb4347f0ec8f4783983ca35ffd8d1b", "", "", "Qb (2.06) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "0614ed51acd027d531e7c85c4f435292", "", "", "Narnia (Glenn Saunders) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "069c17beb1e8e0557adb8539fdcf6cba", "", "", "Phantom II / Pirate (PAL60)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "PAL60", "", "", "", "", "", "", "" }, - { "06db908011065e5ebb37f4e253c2a0b0", "US Games", "", "Gopher (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, + { "06db908011065e5ebb37f4e253c2a0b0", "US Games", "", "Gopher (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "072a6ea2181ca0df88ac0dedc67b239d", "", "", "Multiple Missiles Demo (19-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "074ec425ec20579e64a7ded592155d48", "Atari", "CX26162", "Fatal Run (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "152", "70", "178", "", "", "" }, + { "074ec425ec20579e64a7ded592155d48", "Atari", "CX26162", "Fatal Run (1990) (Atari) (PAL) [!]", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "079fe9103515d15bc108577e234a484d", "", "", "Multi-Color Demo 0 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "07f42847a79e4f5ae55cc03304b18c25", "Froggo", "FG 1008", "Sea Hawk (1987) (Froggo-Zellers)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, + { "07f42847a79e4f5ae55cc03304b18c25", "Froggo", "FG 1008", "Sea Hawk (1987) (Froggo-Zellers)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "081e2c114c9c20b61acf25fc95c71bf4", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros)", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "", "191", "", "", "" }, - { "083e7cae41a874b2f9b61736c37d2ffe", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "50", "218", "", "", "" }, + { "081e2c114c9c20b61acf25fc95c71bf4", "Parker Bros", "PB5300", "Frogger (1982) (Parker Bros)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "083e7cae41a874b2f9b61736c37d2ffe", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0890a5b089191f45d0f08dd1e3235687", "", "", "Star Fire - 4K Version (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "08d60a58a691c7f690162850302dc0e1", "", "", "Poker Squares (V0.27) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, + { "08d60a58a691c7f690162850302dc0e1", "", "", "Poker Squares (V0.27) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0906c6e0e4bda9c10cfa4c5fc64d2f4b", "Retroactive", "", "Qb (V0.12) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "0945081a6bd00345ff3d58eb7a07330a", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "096649575e451508006b17e0353259a5", "", "", "Yar Vs. Yar (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "09abfe9a312ce7c9f661582fdf12eab6", "Atari", "CX26154", "Super Football (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0a1b98937911d621b004b1617446d124", "", "", "Hangman Pac-Man Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0abf64ca504a116adca80f77f85e00fb", "", "", "Cube Conquest (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "0aceb7c3bd13fe048b77a1928ed4267d", "Imagic", "IA3201", "Star Voyager (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0af51ceb4aecc7a8fc89781ac44a1973", "Barry Laws Jr.", "", "Face Invaders Deluxe by Barry Laws Jr. (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "0b33252b680b65001e91a411e56e72e9", "CCE", "", "Atlantis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b577e63b0c64f9779f315dca8967587", "Ariola", "", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0bfabf1e98bdb180643f35f2165995d0", "", "CX2623 / 99819 / 75125", "Home Run (1978) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0c48e820301251fbb6bcdc89bd3555d9", "Atari", "CX26120", "Stargate (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0cb3211ec39a66e225e8faa9fbdb0757", "Activision", "AK-049", "Rampage! (1989) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0cc8224ff1edfe458e8629e9e5fe3f5b", "", "", "Trick 12 (2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0d07d2c1be1a5eaaea235a533bcda781", "", "", "Scrolling Playfield 1 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0d27c7f5db349b592f70f68daf5e8f3b", "", "", "Space Instigators (21-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0d786a41695e5fc8cffd05a6dbb3f659", "", "", "Scrolling Playfield With Score (10-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0db4f4150fecf77e4ce72ca4d04c052f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, + { "0db4f4150fecf77e4ce72ca4d04c052f", "Atari", "CX2618 / 4975123", "3-D Tic-Tac-Toe (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "50", "", "", "", "" }, + { "0e86470791b26292abe1c64545c47985", "Starpath", "AR-4302", "Party Mix (3 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, + { "0fba7d8c3520bdb681f75494e498ec36", "", "", "Gunfight 2600 - Final Run (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0fd72a13b3b6103fc825a692c71963b4", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "107cc025334211e6d29da0b6be46aec7", "Atari", "CX2648 / 4975161", "Video Pinball (1980) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "10f62443f1ae087dc588a77f9e8f43e9", "", "", "Dodge 'em (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "11330eaa5dd2629052fac37cfe1a0b7d", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "119305fe8e3c6cb878e8b610af8f0663", "", "", "Greeting Cart Ali Landry Closeup (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, - { "136f75c4dd02c29283752b7e5799f978", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "4", "152", "38", "188", "", "", "" }, - { "13895ef15610af0d0f89d588f376b3fe", "Tigervision", "7-005", "Marauder (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "", "" }, + { "1228c01cd3c4b9c477540c5adb306d2a", "Atari", "", "Basketball (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1278f74ca1dfaa9122df3eca3c5bcaad", "Starsoft", "SS-013", "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, + { "12cd04d3298633413a756795c49dc0c6", "Starpath", "AR-4400", "Dragonstomper Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "133a4234512e8c4e9e8c5651469d4a09", "", "", "Obelix (1983) (Atari) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1351c67b42770c1bd758c3e42f553fea", "Digivision", "", "Keystone Kapers (Digivision) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "136f75c4dd02c29283752b7e5799f978", "Atari", "CX2650 / 4975168", "Berzerk (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "13895ef15610af0d0f89d588f376b3fe", "Tigervision", "7-005", "Marauder (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13abc32f803165c458bb086fa57195fb", "Christian Samuel", "", "E.T. The Extra-Testical by Christian Samuel (E.T. Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "190", "", "", "" }, + { "13abc32f803165c458bb086fa57195fb", "Christian Samuel", "", "E.T. The Extra-Testical by Christian Samuel (E.T. Hack)", "Hack of E.T. The Extra-Terrestrial (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "140909d204abd6841c64cdad4d7765b4", "", "", "Moving Blue Ladder Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "143918368f4f4dfff90999188c0197c9", "", "", "Unknown Title (bin00016 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "14a56b493a8d9d10e94a3e100362e3a2", "Hozer Video Games", "", "Gunfight 2600 - Early Play-kernel (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "213", "", "", "" }, + { "14a56b493a8d9d10e94a3e100362e3a2", "Hozer Video Games", "", "Gunfight 2600 - Early Play-kernel (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "152e55f88af3ff647e75a3070b7b6842", "Activision", "", "Turmoil (198x) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "155fa7f479dcba3b10b1494e236d6010", "", "", "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "15b498199ed0ed28057bf0dbdce9b8d8", "Hozer Video Games", "", "Jammed (V0.2) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, + { "15dd21c2608e0d7d9f54c0d3f08cca1f", "Data Age", "112-008", "Frankenstein's Monster (1983) (Data Age) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1623da579aa30b957bb8fa6ccd89b30a", "", "", "Image - USA Flag (15-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "16e04823887c547dc24bc70dff693df4", "Atari", "", "Tennis (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "170e7589a48739cfb9cc782cbb0fe25a", "Mattel", "MT5666", "Astroblast (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1733772165d7b886a94e2b4ed0f74ccd", "", "", "Boring Journey Escape (Journey - Escape Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "230", "", "", "" }, + { "17515a4d0b7ea5029ffff7dfa8456671", "Piero Cavina", "", "Multi-Sprite Demo V1.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "177504abd4260c4265e1338955e9fa47", "HCC Software", "", "Pitfall! (Steroids Hack)", "Hack of Pitfall! (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "17ba72433dd41383065d4aa6dedb3d91", "", "", "SCSIcide (09-06-2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "17ee158d15e4a34f57a837bc1ce2b0ce", "", "", "Joust (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "17ee158d15e4a34f57a837bc1ce2b0ce", "", "", "Joust (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "180c234496f31a8671226277e0afbf2f", "", "", "Greeting Cart Mario And Luigi(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18760f1f9ca5e18610115cf7b815b824", "", "", "Star Fire (23-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18bebbbd41c234f82b1717b1905e6027", "", "", "Space Instigators (Public Release) (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "18ed63e3ce5bc3dd2d8bd188b807f1a2", "", "", "Stell-A-Sketch (Bob Colbert) (PD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "191449e40b0c56411c70772706f79224", "", "", "Multi-Color Demo 2 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "199eb0b8dce1408f3f7d46411b715ca9", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "24", "215", "", "", "" }, + { "199eb0b8dce1408f3f7d46411b715ca9", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "19e761e53e5ec8e9f2fceea62715ca06", "Panda", "104", "Scuba Diver (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1aa7344b563c597eecfbfcf8e7093c27", "David Marli", "", "Slot Invaders by David Marli (Slot Machine Hack)", "Hack of Slot Machine (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1b8c3c0bfb815b2a1010bba95998b66e", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1bf503c724001b09be79c515ecfcbd03", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1c6eb740d3c485766cade566abab8208", "Atari", "CX26110", "Crystal Castles (1984) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1cafa9f3f9a2fce4af6e4b85a2bbd254", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari) (PAL) [!]", "Console ports are swapped", "Common", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, + { "1cf59fc7b11cdbcefe931e41641772f6", "Sega", "005-01", "Buck Rogers - Planet of Zoom (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "26", "", "YES", "", "" }, + { "1d2a28eb8c95da0d6d6b18294211839f", "Activision", "", "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1da2da7974d2ca73a823523f82f517b3", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1e060a8025512ad2127e3da11e212ccc", "Starpath", "", "Sweat! - The Decathalon Game (2 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, + { "1e587ca91518a47753a28217cd4fd586", "Telesys", "1001", "Coconuts (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1ec5bef77b91e59313cba205f15b06d7", "", "", "Overhead Adventure Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1ee2cfc7d0333b96bd11f7f3ec8ce8bc", "Starpath", "AR-4200", "Escape from the Mindmaster (4 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f2ae0c70a04c980c838c2cdc412cf45", "", "", "Rubik's Cube (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, + { "1f5a2927a0b2faf87540b01d9d7d7fd1", "Pet Boat", "", "Tennis (Pet Boat) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "200a9d2a7cb4441ce4f002df6aa47e38", "Eduardo", "", "Doomzerk (PD)", "Hack of Berzerk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "203abb713c00b0884206dcc656caa48f", "Imagic", "O3207", "Moonsweeper (1983) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "41", "188", "", "", "" }, + { "205f4e080db97d3641a780c8c40261ef", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "211774f4c5739042618be8ff67351177", "Atari", "CX2684", "Galaxian (1983) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, - { "2124cf92978c46684b6c39ccc2e33713", "Bitcorp", "", "Sea Monster (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, - { "213e5e82ecb42af237cfed8612c128ac", "Sancho", "", "Forest (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "251", "Yes", "", "" }, + { "211774f4c5739042618be8ff67351177", "Atari", "CX2684", "Galaxian (1983) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2124cf92978c46684b6c39ccc2e33713", "Bitcorp", "", "Sea Monster (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "213e5e82ecb42af237cfed8612c128ac", "Sancho", "", "Forest (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "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", "", "", "", "" }, + { "225522777dc7155627808bde0c1d0ef0", "", "", "This Planet Sucks Demo 1 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "22b22c4ce240303012e8a9596ae8d189", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2351d26d0bfdee3095bec9c05cbcf7b0", "", "", "Warring Worms (19-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, - { "24ad538291eb5f5cac4b9998f3b851c3", "", "", "Gunfight 2600 - This time it's your decission! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "23d445ea19a18fb78d5035878d9fb649", "CBS Electronics", "2459", "Mouse Trap (1982) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "240bfbac5163af4df5ae713985386f92", "Activision", "AX-022", "Seaquest (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2447e17a4e18e6b609de498fe4ab52ba", "", "", "Super Futebol (Pussy Style) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "245f07c8603077a0caf5f83ee6cf8b43", "HomeVision / Thomas Jentzsch", "", "Parachute (HomeVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24ad538291eb5f5cac4b9998f3b851c3", "", "", "Gunfight 2600 - This time it's your decission! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "195", "", "", "" }, + { "24fbf8250a71611e40ef18552e61b009", "", "", "Movable Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25472dfdeef6a42581a231d631d6b04d", "", "", "Gunfight 2600 - Design thoughts (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25a21c47afe925a3ca0806876a2b4f3f", "Starsoft", "", "Der kleine Baer (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, + { "25d4be3309b89583c6b39d9f93bf654f", "Activision", "AX-015", "Chopper Command (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25f2e760cd7f56b88aac88d63757d41b", "Activision", "AG-002", "Boxing (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "262ccb882ff617d9b4b51f24aee02cbe", "Atari", "CX26154", "Super Football (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "268f46038e29301568fa9e443e16e960", "", "", "Pitfall Unlimited (Atarius Maximus)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "26f4f8b098609164effef7809e0121e1", "", "", "Oystron (V2.7) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2723e442d55d741a8e2d9293108cd5ed", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "277c7281ac945b8331e2e6fcad560c11", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "206", "", "", "" }, + { "2783006ee6519f15cbc96adae031c9a9", "Telegames", "", "Night Stalker (Telegames) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "27c8a76cf59a9fc6b667468ef1e3f9e9", "", "", "Greeting Cart Atari-Troll(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2808dc745ff4321dc5c8122abef6711f", "Retroactive", "", "Qb (2.11) (Retroactive) (Stella)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "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", "", "" }, + { "2823364702595feea24a3fbee138a243", "Bitcorp", "PG206", "Bobby is Going Home (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, + { "283dee88f295834c4c077d788f151125", "Retroactive", "", "Qb (2.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "28d5df3ed036ed63d33a31d0d8b85c47", "Bitcorp", "PG204", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "", "No" }, + { "297c405afd01f3ac48cdb67b00d273fe", "Atari", "CX26123", "Jr. Pac-Man (1984) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "56", "220", "", "", "" }, + { "2a0ba55e56e7a596146fa729acf0e109", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2a2f46b3f4000495239cbdad70f17c59", "CommaVid", "", "Cosmic Swarm (1982) (CommaVid) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "2a9f9001540c55a302befd8e9d54b47b", "", "", "Mario Bros (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2ae700c9dba843a68dfdca40d7d86bd6", "TechnoVision / Thomas Jentzsch", "", "Pharaoh's Curse (TechnoVision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "2b71a59a53be5883399917bf582b7772", "Greg Troutman", "", "Dark Mage (final beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "2bd00beefdb424fa39931a75e890695d", "Atari", "CX2663", "Road Runner (1989) (Atari) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c0dc885d5ede94aa664bf3081add34e", "20th Century Fox", "11020", "Earth Dies Screaming (1983) (20th Century Fox) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, - { "2cccc079c15e9af94246f867ffc7e9bf", "Mystique", "1011", "Jungle Fever (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "220", "", "", "" }, + { "2c8835aed7f52a0da9ade5226ee5aa75", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2cccc079c15e9af94246f867ffc7e9bf", "Mystique", "1011", "Jungle Fever (1982) (Playaround)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "2dfec1615c49501fefc02165c81955e6", "", "", "Song (05-11-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2d9e65959808a6098c16c82a59c9d9dc", "Starpath", "AR-4400", "Dragonstomper (1 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2dfec1615c49501fefc02165c81955e6", "", "", "Song (05-11-2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "2e3728f3086dc3e71047ffd6b2d9f015", "Atari", "", "Outlaw (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2e82a1628ef6c735c0ab8fa92927e9b0", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "235", "", "", "" }, + { "2f11ba54609777e2c6a5da9b302c98e8", "Atari", "", "Centipede (1982) (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2f66ebf037321ed0442ac4b89ce22633", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 2) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2facd460a6828e0e476d3ac4b8c5f4f7", "", "", "Sancho - Words (198x) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "30512e0e83903fc05541d2f6a6a62654", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, - { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, - { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (1978) (Atari) [h3]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "", "" }, + { "30512e0e83903fc05541d2f6a6a62654", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30997031b668e37168d4d0e299ccc46f", "", "", "John K Harvey's Equalizer (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "30e012e8d50330c8972f126b8e913bc4", "", "", "Indy 500 (1978) (Atari) [h3]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "310ba30e25ea8957e58180b663503c0c", "Ed Federmeyer", "", "Sound X6 (1994) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3177cc5c04c1a4080a927dfa4099482b", "Atari", "CX26135", "RealSports Boxing (1987) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, + { "31df1c50c4351e144c9a378adb8c10ba", "Starsoft", "", "Die Ratte und die Karotten (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "3225676f5c0c577aeccfaa7e6bedd765", "CCE", "", "Pole Position (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3276c777cbe97cdd2b4a63ffc16b7151", "", "CX2691", "Joust (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "32ecb5a652eb73d287e883eea751d99c", "Dactar", "", "Bowling (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3316ee2f887e9cb9b54dd23c5b98c3e2", "", "", "Texas Golf (miniature Gold Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "332f01fd18e99c6584f61aa45ee7791e", "Zellers / CCE", "C-845", "Raumpatrouille (CCE) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "28", "229", "Yes", "", "" }, + { "332f01fd18e99c6584f61aa45ee7791e", "Zellers / CCE", "C-845", "Raumpatrouille (CCE) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "335793736cbf6fc99c9359ed2a32a49d", "", "", "Analog Clock (V0.0) (20-01-2003) (AD) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "340f546d59e72fb358c49ac2ca8482bb", "Sancho", "", "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "43", "244", "", "", "" }, + { "340f546d59e72fb358c49ac2ca8482bb", "Sancho", "", "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "" }, + { "345758747b893e4c9bdde8877de47788", "CBS Electronics", "", "Venture (1982) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "348615ffa30fab3cec1441b5a76e9460", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34f4b1d809aa705ace6e46b13253fd3b", "", "", "Nothern Alliance (Aaron Bergstrom) (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3576037c9281656655fa114a835be553", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, + { "3576037c9281656655fa114a835be553", "Starpath", "AR-4200", "Escape from the Mindmaster (1 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "35b10a248a7e67493ec43aeb9743538c", "", "", "Defender (Dor-x) (Defender Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "35fa32256982774a4f134c3347882dff", "Retroactive", "", "Qb (V0.05) (Macintosh) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3624e5568368929fabb55d7f9df1022e", "Activision", "", "Double Dragon (1989) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "68", "190", "", "", "" }, - { "367411b78119299234772c08df10e134", "Atari", "", "Skiing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "194", "", "", "" }, + { "3624e5568368929fabb55d7f9df1022e", "Activision", "", "Double Dragon (1989) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "367411b78119299234772c08df10e134", "Atari", "", "Skiing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "36b20c427975760cb9cf4a47e41369e4", "Coleco", "2451", "Donkey Kong (198x)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "36e47ed74968c365121eab60f48c6517", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "216", "", "", "" }, + { "36e47ed74968c365121eab60f48c6517", "Spectravideo", "SA-210", "Master Builder (1983) (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "372bddf113d088bc572f94e98d8249f5", "Dynamics-Goliath", "", "Breakdown (AKA Capture) (Dynamics-Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "37527966823ee9243d34c7da8302774f", "US Games", "", "Word Zapper (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "37527966823ee9243d34c7da8302774f", "US Games", "", "Word Zapper (1982) (US Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, - { "392f00fd1a074a3c15bc96b0a57d52a1", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari)", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "200", "Yes", "", "" }, + { "3889351c6c2100b9f3aef817a7e17a7a", "CCE", "", "Dolphin (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "38de7b68379770b9bd3f7bf000136eb0", "Imagic", "O3213", "Subterrenea (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "392f00fd1a074a3c15bc96b0a57d52a1", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari)", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "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", "", "", "" }, + { "39da69ff9833f8c143f03b6e0e7a996b", "Activision / Charles Morgan", "", "Ventrra Invaders 2002 by Charles Morgan (Space Invaders Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3a35d7f1dc2a33565c8dca52baa86bc4", "", "", "Rubik's Cube Demo 2 (23-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3a526e6a1f9fe918af0f2ce997dfea73", "CBS Electronics", "", "Donkey Kong (1983) (CBS Electronics) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "56", "212", "", "", "" }, + { "3a526e6a1f9fe918af0f2ce997dfea73", "CBS Electronics", "", "Donkey Kong (1983) (CBS Electronics) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3ab5d138e26d88c8190e7cc629a89493", "", "", "Phased Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "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", "", "", "A", "", "", "", "", "", "", "", "", "", "38", "185", "Yes", "", "" }, - { "3b91c347d8e6427edbe942a7a405290d", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "200", "", "", "" }, + { "3b2c32fcd331664d037952bcaa62df94", "", "", "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b5751a8d20f7de41eb069f76fecd5d7", "", "", "Eckhard Stolberg's Scrolling Text Demo 4 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3b76242691730b2dd22ec0ceab351bc6", "Mattel", "MT4318", "Masters of the Universe - The Power of He-Man (1983) (Mattel)", "", "Rare", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "3b91c347d8e6427edbe942a7a405290d", "Parker Bros", "PB5350", "Sky Skipper (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c3a2bb776dec245c7d6678b5a56ac10", "", "", "Unknown Title (bin00003) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3c57748c8286cf9e821ecd064f21aaa9", "Atari", "CX26118", "Millipede (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "192", "", "", "" }, - { "3c8e57a246742fa5d59e517134c0b4e6", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "41", "188", "", "", "" }, - { "3d1e83afdb4265fa2fb84819c9cfd39c", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "47", "200", "", "", "" }, + { "3c57748c8286cf9e821ecd064f21aaa9", "Atari", "CX26118", "Millipede (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3c8e57a246742fa5d59e517134c0b4e6", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3d1e83afdb4265fa2fb84819c9cfd39c", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1982) (Coleco)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3d2652cbea462a886a41791dd7c8d073", "", "", "Ritorno dei frattelli di Mario (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d7aad37c55692814211c8b590a0334c", "Atari", "", "Telepathy (Prototype) (Atari) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, + { "3d7aad37c55692814211c8b590a0334c", "Atari", "", "Telepathy (Prototype) (Atari) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, - { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "16", "128", "63", "194", "", "", "" }, + { "3da7cc7049d73d34920bb73817bd05a9", "Activision", "AX-023", "Oink! (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3e33ac10dcf2dff014bc1decf8a9aea4", "Spectravideo", "", "Chase the Chuckwagon (1983) (Spectravideo)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "YES", "", "" }, + { "3e6dab92009d6034618cb6b7844c5216", "", "", "Ed Invaders (Pepsi Invaders Hack)", "Hack of Pepsi Invaders (Coca-Cola)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3eccf9f363f5c5de0c8b174a535dc83b", "Activision", "AX-027", "Plaque Attack (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3ef9573536730dcd6d9c20b6822dbdc4", "Atari", "CX2645 / 6699817 / 4975181", "Video Chess (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f3ad2765c874ca13c015ca6a44a40a1", "CCE", "", "Crackpots (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "191", "", "", "" }, - { "3f5a43602f960ede330cd2f43a25139e", "Activision", "AG-003", "Checkers (1980) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "20", "140", "27", "", "", "", "" }, + { "3f3ad2765c874ca13c015ca6a44a40a1", "CCE", "", "Crackpots (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f5a43602f960ede330cd2f43a25139e", "Activision", "AG-003", "Checkers (1980) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f96eb711928a6fac667c04ecd41f59f", "", "", "Rodeo Champ (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "190", "", "", "" }, - { "3fd53bfeee39064c945a769f17815a7f", "CCE", "", "Sea Hawk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, - { "3ff5165378213dab531ffa4f1a41ae45", "Starsoft", "", "Pygmy (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "194", "", "", "" }, - { "405f8591b6941cff56c9b392c2d5e4e5", "Telegames", "", "Star Strike (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "56", "192", "", "", "" }, + { "3f96eb711928a6fac667c04ecd41f59f", "", "", "Rodeo Champ (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3fd53bfeee39064c945a769f17815a7f", "CCE", "", "Sea Hawk (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3ff5165378213dab531ffa4f1a41ae45", "Starsoft", "", "Pygmy (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "405f8591b6941cff56c9b392c2d5e4e5", "Telegames", "", "Star Strike (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, + { "40d9f5709877ecf3dd1184f9791dd35e", "Dactar", "", "Skiing (1980) (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "415c11fcac66bbd2ace2096687774b5a", "", "", "Fu Kung! (V0.00) (07-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "41f252a66c6301f1e8ab3612c19bc5d4", "Atari", "CX2681", "Battlezone (1983) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "4251b4557ea6953e88afb22a3a868724", "", "", "Robot City (V1.1) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42ae81ae8ac51e5c238639f9f77d91ae", "", "", "Multi-Sprite Demo 2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42e0ec5ab8f5deba53e4169ff2a5efbe", "", "", "Atari Logo Demo 5 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4326edb70ff20d0ee5ba58fa5cb09d60", "Atari", "CX2689", "Kangaroo (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "36", "200", "", "", "" }, + { "4326edb70ff20d0ee5ba58fa5cb09d60", "Atari", "CX2689", "Kangaroo (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "43f33c6dfdeaf5138ce6e6968ad7c5ce", "Jeffry Johnston", "", "Radial Pong - Version 11 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "44560e324ffb30741a483218ba5b4342", "", "", "Star Fire - Faster Skipping 2 (24-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "" }, + { "44f71e70b89dcc7cf39dfd622cfb9a27", "Tigervision", "", "Polaris (1983) (Tigervision) (maybe beta)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4543b7691914dfd69c3755a5287a95e1", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "457e7d4fcd56ebc47f5925dbea3ee427", "Carrere Video", "", "Space Jockey (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "45beef9da1a7e45f37f3f445f769a0b3", "Atari", "CX2658 / 4975128", "Math Gran Prix (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "463dd4770506e6c0ef993a40c52c47be", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "468f2dec984f3d4114ea84f05edf82b6", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "", "" }, + { "468f2dec984f3d4114ea84f05edf82b6", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "4702d8d9b48a332724af198aeac9e469", "Atari", "CX2699", "Taz (1983) (Atari) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47464694e9cce07fdbfd096605bf39d4", "Activision", "AK-050-04", "Double Dragon (1989) (Activision) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "47911752bf113a2496dbb66c70c9e70c", "Atari", "CX26101", "Oscar's Trash Race (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "", "" }, + { "47aad247cce2534fd70c412cb483c7e0", "Spectravideo", "SA-201", "Gangster Alley (1983) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "46", "219", "", "", "" }, - { "4901c05068512828367fde3fb22199fe", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "46", "235", "", "", "" }, + { "484b0076816a104875e00467d431c2d2", "Atari", "CX26150", "Q-bert (1988) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "48e5c4ae4f2d3b62b35a87bca18dc9f5", "Starsoft", "", "Bobby geht nach Hause (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "", "", "", "" }, + { "4901c05068512828367fde3fb22199fe", "Imagic", "IA3200", "Demon Attack (1982) (Imagic) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "493daaf9fb1ba450eba6b8ed53ffb37d", "", "", "3-D Corridor Demo (27-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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" }, + { "4a9009620038f7f30aaeb2a00ae58fde", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "Yes", "", "" }, - { "4b143d7dcf6c96796c37090cba045f4f", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "39", "", "", "", "" }, + { "4af4103759d603c82b1c9c5acd2d8faf", "Imagic", "O3207", "Moonsweeper (1983) (Imagic) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "4b143d7dcf6c96796c37090cba045f4f", "Atari", "CX2644 / 99824 / 99824", "Flag Capture (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4b753a97aee91e4b3e4e02f5e9758c72", "", "", "Asymmetric Reflected Playfield (Glenn Saunders And Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4bcc7f6ba501a26ee785b7efbfb0fdc8", "", "CX2690", "Pengo (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, + { "4bcc7f6ba501a26ee785b7efbfb0fdc8", "", "CX2690", "Pengo (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4c205f166157154df2f1ef60d87e552f", "", "", "Single-Scanline Positioning Demo 2 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4c462b2b6fb0a19a1437eb2c3dc20783", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "No" }, - { "4c8832ed387bbafc055320c05205bc08", "Atari", "CX2601 / 6699801 / 4975124", "Combat (1977) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "206", "", "", "" }, - { "4c9307de724c36fd487af6c99ca078f2", "Imagic", "IA3409", "Sky Patrol (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, - { "4ca73eb959299471788f0b685c3ba0b5", "Activision", "AX-031", "Frostbite (1983) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" }, - { "4cd796b5911ed3f1062e805a3df33d98", "Tigervision", "7-006", "Springer (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "", "" }, - { "4d502d6fb5b992ee0591569144128f99", "", "", "Save Mary (1990) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "4c462b2b6fb0a19a1437eb2c3dc20783", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "4c8832ed387bbafc055320c05205bc08", "Atari", "CX2601 / 6699801 / 4975124", "Combat (1977) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4c9307de724c36fd487af6c99ca078f2", "Imagic", "IA3409", "Sky Patrol (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4ca73eb959299471788f0b685c3ba0b5", "Activision", "AX-031", "Frostbite (1983) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4cd796b5911ed3f1062e805a3df33d98", "Tigervision", "7-006", "Springer (1982) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4d502d6fb5b992ee0591569144128f99", "", "", "Save Mary (1990) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4d77f291dca1518d7d8e47838695f54b", "Data Age", "DA 1004", "Airlock (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4dcc7e7c2ec0738e26c817b9383091af", "", "", "Unknown Title (bin00026 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4df9d7352a56a458abb7961bf10aba4e", "", "", "Traffic (RJPG) (PAL)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "", "35", "208", "", "", "" }, + { "4df9d7352a56a458abb7961bf10aba4e", "", "", "Traffic (RJPG) (PAL)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, { "4e2c884d04b57b43f23a5a2f4e9d9750", "", "", "Baby Center Animation (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4e66c8e7c670532569c70d205f615dad", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, - { "4f2d47792a06da224ba996c489a87939", "", "", "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "4e66c8e7c670532569c70d205f615dad", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4f2d47792a06da224ba996c489a87939", "", "", "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4f64d6d0694d9b7a1ed7b0cb0b83e759", "20th Century Fox", "11016", "Revenge of the Beefsteak Tomatoes (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4f89b897444e7c3b36aed469b8836839", "", "", "BMX Air Master (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "202", "", "", "" }, - { "4fbe0f10a6327a76f83f83958c3cbeff", "", "", "Keystone Kapers (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "200", "", "", "" }, + { "4f89b897444e7c3b36aed469b8836839", "", "", "BMX Air Master (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4fbe0f10a6327a76f83f83958c3cbeff", "", "", "Keystone Kapers (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "502044b1ac111b394e6fbb0d821fca41", "", "", "Hangman Invader 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "50a410a5ded0fc9aa6576be45a04f215", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "512e874a240731d7378586a05f28aec6", "Tigervision", "7-005", "Marauder (1982) (Tigervision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "516ffd008057a1d78d007c851e6eff37", "ParkerB", "", "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "51f15b39d9f502c2361b6ba6a73464d4", "", "", "Amanda Invaders (PD) [o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "525ea747d746f3e80e3027720e1fa7ac", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "534e23210dd1993c828d944c6ac4d9fb", "Mattel", "MT4648", "Kool Aid Man (1982) (Mattel)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5360693f1eb90856176bd1c0a7b17432", "", "", "Oystron (V2.85) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "539d26b6e9df0da8e7465f0f5ad863b7", "Atari", "CX2636 / 4975156", "Video Checkers (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, - { "540075f657d4b244a1f74da1b9e4bf92", "", "", "Festival (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "62", "201", "", "", "" }, - { "543b4b8ff1d616fa250c648be428a75c", "", "", "Adventure (1978) (Atari) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "54a1c1255ed45eb8f71414dadb1cf669", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "207", "", "", "" }, + { "539d26b6e9df0da8e7465f0f5ad863b7", "Atari", "CX2636 / 4975156", "Video Checkers (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "540075f657d4b244a1f74da1b9e4bf92", "", "", "Festival (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "543b4b8ff1d616fa250c648be428a75c", "", "", "Adventure (1978) (Atari) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "54a1c1255ed45eb8f71414dadb1cf669", "Spectravideo", "SA-212", "Mangia' (1983) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "551ef75593ec18d078e8f5cc0229e1c4", "", "", "Star Fire - New Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "559317712f989f097ea464517f1a8318", "Panda", "100", "Space Canyon (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "184", "", "", "" }, + { "559317712f989f097ea464517f1a8318", "Panda", "100", "Space Canyon (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, - { "57939b326df86b74ca6404f64f89fce9", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, + { "571c6d9bc71cb97617422851f787f8fe", "Activision", "AG-004", "Fishing Derby (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "57939b326df86b74ca6404f64f89fce9", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "57a66b6db7efc5df17b0b0f2f2c2f078", "Retroactive", "", "Qb (V2.08) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "5835a78a88f97acea38c964980b7dbc6", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "56", "206", "Yes", "", "" }, + { "5835a78a88f97acea38c964980b7dbc6", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "250", "Yes", "", "" }, + { "59f596285d174233c84597dee6f34f1f", "CCE", "", "River Raid (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5a5390f91437af9951a5f8455b61cd43", "Retroactive", "", "Qb (0.11) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5a8afe5422abbfb0a342fb15afd7415f", "Atari", "CX26155", "Sprint Master (1988) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "27", "192", "", "", "" }, + { "5a8afe5422abbfb0a342fb15afd7415f", "Atari", "CX26155", "Sprint Master (1988) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "67", "183", "", "", "" }, + { "5aea9974b975a6a844e6df10d2b861c4", "Atari", "CX2656", "SwordQuest - Earthworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5af9cd346266a1f2515e1fbc86f5186a", "Sega", "002-01", "Sub Scan (1983) (Sega) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b574faa56836da0866ba32ae32547f2", "", "", "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b7ea6aa6b35dc947c65ce665fde624b", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5bba254e18257e578c245ed96f6b003b", "", "", "Music Effects Demo (21-01-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "5bd79139a0c03b63f6f2cf00a7d385d2", "", "", "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5c0520c00163915a4336e481ca4e7ef4", "Rainbow Vision", "", "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, - { "5ec73ac7d2ac95ac9530c6d33e713d14", "Starpath", "", "Sweat! - The Decathalon Game (1 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "39", "198", "", "", "" }, + { "5d799bfa9e1e7b6224877162accada0d", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5db9e5bf663cad6bf159bc395f6ead53", "Goliath", "", "Time Race (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5de8803a59c36725888346fdc6e7429d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5df559a36347d8572f9a6e8075a31322", "Digivision", "", "Enduro (Digivision) (Brazil) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5e1cd11a6d41fc15cf4792257400a31e", "Philip R. Frey", "", "Return of Mario Bros by Philip R. Frey (Mario Bros Hack)", "Hack of Mario Bros. (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5ec73ac7d2ac95ac9530c6d33e713d14", "Starpath", "", "Sweat! - The Decathalon Game (1 of 2) (1982) (Starpath) (Prototype)", "Uses the Paddle Controllers (left only)", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5f2b4c155949f01c06507fb32369d42a", "Apollo", "AP 1001", "Skeet Shoot (1981) (Apollo) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f39353f7c6925779b0169a87ff86f1e", "Atari", "CX2694", "Pole Position (1983) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, - { "5f681403b1051a0822344f467b05a94d", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "", "" }, + { "5f39353f7c6925779b0169a87ff86f1e", "Atari", "CX2694", "Pole Position (1983) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5f681403b1051a0822344f467b05a94d", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "5f708ca39627697e859d1c53f8d8d7d2", "Atari", "CX2606 / 99825 /75112", "Maze (AKA Slot Racers) (1978) (Sears) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f7ae9a7f8d79a3b37e8fc841f65643a", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "192", "", "", "" }, - { "6015a9cef783e97e98a2aa2cf070ae06", "Thomas Jentzsch", "", "Battlezone TC by Thomas Jentzsch (2 joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "4", "152", "32", "200", "", "", "No" }, + { "5f7ae9a7f8d79a3b37e8fc841f65643a", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6015a9cef783e97e98a2aa2cf070ae06", "Thomas Jentzsch", "", "Battlezone TC by Thomas Jentzsch (2 joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6041f400b45511aa3a69fab4b8fc8f41", "Apollo", "AP 2010", "Wabbit (1982) (Apollo) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "194", "", "", "" }, + { "6041f400b45511aa3a69fab4b8fc8f41", "Apollo", "AP 2010", "Wabbit (1982) (Apollo) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6058e40ce79d7434c7f7477b29abd4a5", "", "", "Rubik's Cube Demo (23-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "60a61da9b2f43dd7e13a5093ec41a53d", "Venture Vision", "VV2001", "Rescue Terra I (1982) (Venture Vision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "60e0ea3cbe0913d39803477945e9e5ec", "Atari", "CX2621", "Video Olympics (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "30", "205", "", "", "" }, + { "60e0ea3cbe0913d39803477945e9e5ec", "Atari", "CX2621", "Video Olympics (1978) (Atari)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "615a3bf251a38eb6638cdc7ffbde5480", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "190", "", "", "" }, + { "615a3bf251a38eb6638cdc7ffbde5480", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61728c6cfb052e62a9ed088c5bf407ba", "", "", "Sprite Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6205855cc848d1f6c4551391b9bfa279", "", "", "Euchre (Release Candidate 2) (NTSC) (01-10-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "62992392ea651a16aa724a92e4596ed6", "Eric Mooney", "", "Invaders by Erik Mooney (Beta) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (1978) (Atari) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "", "" }, + { "63166867f75869a3592b7a94ea62d147", "", "", "Indy 500 (1978) (Atari) [h2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6337927ad909aa739d6d0044699a916d", "Jeffry Johnston", "", "Radial Pong - Version 2 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "635cc7a0db33773959d739d04eff96c2", "", "", "Minesweeper (V.90) (Soren Gust) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "638cc82ea96f67674595ba9ae05da6c6", "Rainbow Vision", "SS-011", "Super Ferrari (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "58", "", "", "", "" }, + { "638cc82ea96f67674595ba9ae05da6c6", "Rainbow Vision", "SS-011", "Super Ferrari (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "195", "", "", "" }, + { "645bf7f9146f0e4811ff9c7898f5cd93", "Xonox", "", "Super Kung-Fu (1983) (Xonox) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "189", "", "", "" }, - { "656dc247db2871766dffd978c71da80c", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "36", "198", "", "", "" }, + { "64ca518905311d2d9aeb56273f6caa04", "CCE", "", "Cubo Magico (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "651d2b6743a3a18b426bce2c881af212", "CCE", "", "Pac-Man (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "65490d61922f3e3883ee1d583ce10855", "Atari", "CX2692", "Moon Patrol (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "656dc247db2871766dffd978c71da80c", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "659a20019de4a23c748ec2292ea5f221", "Retroactive", "", "Qb (V2.05) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "65ba1a4c643d1ab44481bdddeb403827", "Starsoft", "", "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "62", "198", "", "", "" }, + { "65ba1a4c643d1ab44481bdddeb403827", "Starsoft", "", "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "64", "", "", "", "" }, + { "663ef22eb399504d5204c543b8a86bcd", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics) (PAL) [!]", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "" }, + { "669840b0411bfbab5c05b786947d55d4", "Atari", "CX26117", "Obelix (1983) (Atari) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66b92ede655b73b402ecd1f4d8cd9c50", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [a2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "66c4e0298d4120df333bc2f3e163657e", "Starpath", "AR-4400", "Dragonstomper (2 of 3) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "67631ea5cfe44066a1e76ddcb6bcb512", "", "", "Termool (AKA Fast Eddie) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "679e910b27406c6a2072f9569ae35fc8", "Data Age", "DA 1002", "Warplock (1982) (Data Age)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "195", "Yes", "", "" }, + { "679e910b27406c6a2072f9569ae35fc8", "Data Age", "DA 1002", "Warplock (1982) (Data Age)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "Yes", "", "" }, { "67ce6cdf788d324935fd317d064ed842", "Retroactive", "", "Qb (V2.09) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "6805734a0b7bcc8925d9305b071bf147", "", "99003", "Kung Fu (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "68489e60268a5e6e052bad9c62681635", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "685e9668dc270b6deeb9cfbfd4d633c3", "CommaVid", "CM-004", "Room of Doom (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "68878250e106eb6c7754bc2519d780a0", "CCE", "", "Snail Against Squirrel (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6913c90002636c1487538d4004f7cac2", "", "CX26131", "Monstercise (Atari) (Prototype)", "Uses Kids/Keypad Controllers", "Prototype", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "693137592a7f5ccc9baae2d1041b7a85", "", "", "Qb (V2.02) (Stella) (2001) (Retroactive) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "69e79b1352b9ee1754bbe63b4a7062c3", "", "", "Pink Floyd - The Wall (2003) (Barry Laws Jr.) (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "4", "152", "37", "193", "", "", "" }, + { "69e79b1352b9ee1754bbe63b4a7062c3", "", "", "Pink Floyd - The Wall (2003) (Barry Laws Jr.) (Berzerk Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "6a3b0c33cf74b1e213a629e3c142b73c", "", "", "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "6a9b30ca46b0dba9e719f4cbd340e01c", "Activision", "AX-031", "Frostbite (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ac3fd31a51730358708c7fdc62487f8", "Matthias Jaap", "", "PC Invaders by Matthias Jaap (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "6b75f8fa4fd011a6698c58315f83d2ac", "Thomas Jentzsch", "", "Sprintmaster DC (TJ)", "Uses the Driving Controllers, Hack of Sprintmaster (Atari)", "New Release (Hack)", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, { "6b7e1c11448c4d3f28160d2de884ebc8", "Zirok", "", "Fast Food (Zirok) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6bde3f6ac31aceef447ce57d4d2c2ec0", "Piero Cavina", "", "Mondo Pong V1 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "44", "174", "", "", "" }, + { "6bde3f6ac31aceef447ce57d4d2c2ec0", "Piero Cavina", "", "Mondo Pong V1 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "6c658b52d03e01828b9d2d4718a998ac", "", "", "Hangman Invader Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6cbe945e16d9f827d0d295546ac11b22", "", "", "Gunfight 2600 - AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "6ce2110ac5dd89ab398d9452891752ab", "Polyvox", "", "River Raid (Polyvox)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, + { "6cbe945e16d9f827d0d295546ac11b22", "", "", "Gunfight 2600 - AI (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6ce2110ac5dd89ab398d9452891752ab", "Polyvox", "", "River Raid (Polyvox)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "25", "256", "", "", "" }, + { "6dda84fb8e442ecf34241ac0d1d91d69", "Atari", "CX2677", "Dig Dug (1983) (Atari)", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6dfad2dd2c7c16ac0fa257b6ce0be2f0", "Parker Bros", "", "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "58", "194", "Yes", "", "" }, + { "6efe876168e2d45d4719b6a61355e5fe", "Bitcorp", "PG207", "Mission 3000 A.D. (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "6f5b3021a88930a9bba3770094c95f3d", "", "", "Image - Clown (09-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fa0ac6943e33637d8e77df14962fbfc", "Rob Fulop", "", "Cubicolor (Rob Fulop)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "6fa0ac6943e33637d8e77df14962fbfc", "Rob Fulop", "", "Cubicolor (Rob Fulop)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "6fe67f525c39200a798985e419431805", "Atari", "CX2689", "Kangaroo (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, - { "718ae62c70af4e5fd8e932fee216948a", "", "112-006", "Journey - Escape (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "7197b6cbde6ecd10376155e6b848e80d", "Piero Cavina", "", "Multi-Sprite Game V2.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "", "" }, + { "703f0f7af350b0fa29dfe5fbf45d0d75", "", "", "4 Pak (Dark Green) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7096a198531d3f16a99d518ac0d7519a", "Telegames", "1004", "Ram It (1982) (Telegames) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "70d14c66c319683b4c19abbe0e3db57c", "", "", "Oystron (V2.82) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7146dd477e019f81eac654a79be96cb5", "Atari", "CX2685", "Gravitar (1988) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "718ae62c70af4e5fd8e932fee216948a", "", "112-006", "Journey - Escape (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "230", "YES", "", "" }, + { "7197b6cbde6ecd10376155e6b848e80d", "Piero Cavina", "", "Multi-Sprite Game V2.1 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72097e9dc366900ba2da73a47e3e80f5", "", "", "Euchre (15-06-2001) (Eric Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "728152f5ae6fdd0d3a9b88709bee6c7a", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, + { "728152f5ae6fdd0d3a9b88709bee6c7a", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "72a5b5052272ac785fa076709d16cef4", "", "", "KC Munckin (29-01-2003) (J. Parlee)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72d0acb5de0db662de0360a6fc59334d", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, + { "72d0acb5de0db662de0360a6fc59334d", "Imagic", "IA3204", "Cosmic Ark (1982) (Imagic) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "205", "", "", "" }, + { "72ffbef6504b75e69ee1045af9075f66", "Atari", "CX2632 / 4975153", "Space Invaders (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73a710e621d44e97039d640071908aef", "", "", "Barber Pole Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "73c545db2afd5783d37c46004e4024c2", "CBS Electronics", "", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "742de93b8d849220f266b627fbabba82", "", "", "SCSIcide (25-02-2001) (Chris Wilkson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "747d3031eb37e32abc7f6e5ee928cd8f", "", "", "Greeting Cart Goth (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "74d072e8a34560c36cacbc57b2462360", "Sancho", "", "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "243", "", "", "" }, + { "74d072e8a34560c36cacbc57b2462360", "Sancho", "", "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7550b821ee56fb5833dca2be88622d5a", "", "", "Multiple Moving Objects Demo (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7574480ae2ab0d282c887e9015fdb54c", "Atari", "CX2699", "Taz (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "39", "191", "", "", "" }, + { "7574480ae2ab0d282c887e9015fdb54c", "Atari", "CX2699", "Taz (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "75b557be7f08db84ec5b242207b9f241", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "56", "205", "", "", "" }, + { "75ea128ba96ac6db8edf54b071027c4e", "Atari", "", "Slot Machine (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7628d3cadeee0fd2e41e68b3b8fbe229", "Atari", "", "Fishing Derby (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76c88341017eae660efc6e49c4b6ab40", "", "", "Indiana Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "76f66ce3b83d7a104a899b4b3354a2f2", "UA", "", "Cat Trax (1983) (UA)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "7778ac65d775a079f537e97cbdad541c", "Activision", "AX-021", "Spider Fighter (1983) (Activision) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "77887e4192a6b0a781530e6cf9be7199", "Atari", "CX2604", "Space War (1978) (Atari) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "77d0a577636e1c9212aeccde9d0baa4b", "Atari", "CX2621", "Video Olympics (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, { "7836794b79e8060c2b8326a2db74eef0", "", "", "RIOT RAM Test (26-11-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "78821ef76ebc3934850d1bc1b9e4f4b0", "", "", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "214", "", "", "" }, + { "78821ef76ebc3934850d1bc1b9e4f4b0", "", "", "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78c2de58e42cd1faac2ea7df783eaeb3", "", "", "Fu Kung! (V0.07) (25-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "79c27f90591e3fdc7d2ed020ecbedeb3", "CCE", "AX-022", "Seaquest (CCE) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "79d6f61da3c64688ac8e075667f8a39f", "", "", "Tie-Fighters (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7a2af383014f5d810ad26d322823549d", "", "", "FlickerSort Demo (20-04-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7a7f6ab9215a3a6b5940b8737f116359", "Starpath", "AR-4103", "Killer Satellites Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "", "" }, + { "7a7f6ab9215a3a6b5940b8737f116359", "Starpath", "AR-4103", "Killer Satellites Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ab210f448de518fa61a5924120ba872", "", "", "Fortress (20-04-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ad782952e5147b88b65a25cadcdf9e0", "", "", "Kwibble (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7b24bfe1b61864e758ada1fe9adaa098", "", "", "Wizard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "39", "190", "", "", "" }, - { "7b43c32e3d4ff5932f39afcb4c551627", "", "", "Kamikaze Saucers (198x) (Syncro)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "38", "220", "", "", "" }, - { "7b938c7ddf18e8362949b62c7eaa660a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "219", "", "", "" }, - { "7c00e7a205d3fda98eb20da7c9c50a55", "", "AP 2004", "Lost Luggage (1981) (Apollo) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "194", "", "", "" }, + { "7b24bfe1b61864e758ada1fe9adaa098", "", "", "Wizard (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b43c32e3d4ff5932f39afcb4c551627", "", "", "Kamikaze Saucers (198x) (Syncro)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b938c7ddf18e8362949b62c7eaa660a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7c00e7a205d3fda98eb20da7c9c50a55", "", "AP 2004", "Lost Luggage (1981) (Apollo) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ca7a471d70305c673fedd08174a81e8", "Tim Snider", "", "Venture II (2001) (Tim Snider)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "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", "", "", "", "", "50", "", "", "", "" }, + { "7ced6709f091e79a2ab9575d3516a4ac", "Activision", "AX-027", "Plaque Attack (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d903411807704e725cf3fafbeb97255", "", "", "Cosmic Ark (no stars) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7d940d749e55b96b7b746519fa06f2de", "Starpath", "AR-4302", "Party Mix Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, + { "7dcbfd2acc013e817f011309c7504daa", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "7e464186ba384069582d9f0c141f7491", "Playaround", "", "General Retreat (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e52a95074a66640fcfde124fffd491a", "Atari", "CX2673", "Phoenix (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7e9da5cb84d5bc869854938fe3e85ffa", "Atari", "CX2604", "Space War (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7eafc9827e8d5b1336905939e097aae7", "", "", "Elk Attack (1987) (Atari)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7edc8fcb319b3fb61cac87614afd4ffa", "Activision", "AG-003", "Checkers (1980) (Activision) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7f430c33044e0354815392b53a9a772d", "HES", "", "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "251", "", "", "" }, + { "7f790939f7eaa8c47a246c4283981f84", "", "", "This Planet Sucks Demo 3 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7fd52208fb6391bae0cd7e68c27bde6f", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "801ba40f3290fc413e8c816c467c765c", "Hozer Video Games", "", "Gunfight 2600 - Westward Ho! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8068e07b484dfd661158b3771d6621ca", "Epyx", "8056100286", "California Games (1988) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "80cec82239913cb8c4016eb13749de44", "David Marli", "", "Invaders from Space by David Marli (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8108162bc88b5a14adc3e031cf4175ad", "Rainbow Vision", "", "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "81414174f1816d5c1e583af427ac89fc", "Video Gems / Thomas Jentzsch", "", "Treasure Below (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "8", "152", "26", "225", "", "", "" }, + { "81414174f1816d5c1e583af427ac89fc", "Video Gems / Thomas Jentzsch", "", "Treasure Below (Video Gems) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "8190b403d67bf9792fe22fa5d22f3556", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "81a010abdba1a640f7adf7f84e13d307", "Telegames", "7062 A305", "Universal Chaos (Telegames)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "822a950f27ff0122870558a89a49cad3", "", "", "Space Jockey (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "82bf0dff20cee6a1ed4bb834b00074e6", "Starsoft", "", "Der hungrige Panda (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "835759ff95c2cdc2324d7c1e7c5fa237", "20th Century Fox", "11011", "M.A.S.H. (1982) (20th Century Fox)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "83d15fb9843d9f84aa3710538403f434", "", "", "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "195", "", "", "" }, + { "83d15fb9843d9f84aa3710538403f434", "", "", "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "46", "230", "", "", "" }, + { "85b1bca93e69f13905107cc802a02470", "Atari", "CX2617 / 6699848 / 4975183", "Backgammon (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "85e48d68c8d802e3ba9d494a47d6e016", "", "", "Ship Demo (V 15) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "86128001e69ab049937f265911ce7e8a", "Apollo", "", "Lochjaw (1982) (Apollo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8654d7f0fb351960016e06646f639b02", "", "", "Ski Hunt (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "235", "", "", "" }, + { "8654d7f0fb351960016e06646f639b02", "", "", "Ski Hunt (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8712cceec5644aacc2c21203d9ebe2ec", "Retroactive", "", "Qb (V0.10) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "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" }, + { "8786c1e56ef221d946c64f6b65b697e9", "20th Century Fox / Zellers", "11015", "Flash Gordon (1983) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "87e79cd41ce136fd4f72cc6e2c161bee", "", "CX2675", "Ms. Pac-Man (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "52", "215", "", "", "" }, - { "88f74ec75ef696e7294b7b6ac5ca465f", "Activision", "AG-002", "Boxing (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, + { "8885d0ce11c5b40c3a8a8d9ed28cefef", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [a1]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "88d300a38bdd7cab9edad271c18cd02b", "Funvision", "", "Pac Kong (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "88f74ec75ef696e7294b7b6ac5ca465f", "Activision", "AG-002", "Boxing (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8933976f2029c0d8492ebd8f4eb21492", "", "", "Synthcart Plus (09-02-2003) (Paul Slocum)", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "898b5467551d32af48a604802407b6e8", "Bitcorp", "PG208", "Schnecke und Eichhoernchen (1983) (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8a183b6357987db5170c5cf9f4a113e5", "Atari", "", "RealSports Basketball (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8a8e401369e2b63a13e18a4d685387c6", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8ac18076d01a6b63acf6e2cab4968940", "", "CX2685", "Gravitar (1988) (Atari) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "51", "239", "Yes", "", "" }, + { "8bd8f65377023bdb7c5fcf46ddda5d31", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8c103a79b007a2fd5af602334937b4e1", "ITT Family Games / Thomas Jentzsch", "", "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8c2fa33048f055f38358d51eefe417db", "HomeVision", "", "Teddy Apple (HomeVision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "8ccaa442d26b09139685f5b22bf189c4", "Retroactive", "", "Qb (V1.01) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "44", "220", "Yes", "", "No" }, + { "8cf0d333bbe85b9549b1e6b1e2390b8d", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "", "", "", "" }, - { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, - { "8f33bce5ba1053dcf4cea9c1c69981e4", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, + { "8e0ab801b1705a740b476b7f588c6d16", "Activision", "AG-009", "Freeway (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e737a88a566cc94bd50174c2d019593", "Starsoft", "", "Feuerwehr im Einsatz (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e887d1ba5f3a71ae8a0ea16a4af9fc9", "", "", "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8f33bce5ba1053dcf4cea9c1c69981e4", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8f613ea7c32a587d6741790e32872ddd", "", "", "Troll Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8fbabaa87941cdf3a377c15e95bdb0f3", "", "", "Meteor Smasher (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "8febdd9142960d084ab6eeb1d3e88969", "Atari", "CX2674", "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9057694dce8449521e6164d263702185", "Activision", "AG-011", "Stampede (1981) (Activision) [o2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "90b1799dddb8bf748ee286d22e609480", "", "", "Ship Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "60", "201", "", "", "" }, - { "92a1a605b7ad56d863a56373a866761b", "US Games", "VC 2006", "Raft Rider (1982) (US Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, + { "90d77e966793754ab4312c47b42900b1", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "911d385ee0805ff5b8f96c5a63da7de5", "Hozer Video Games", "", "Jammed (V0.1) (Demo) (2001) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, + { "9193b6fff6897d43274741d4f9855b6d", "", "", "Sub Rescue (Real Title Unknown)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "91f0a708eeb93c133e9672ad2c8e0429", "", "", "Oystron (V2.9) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "927d422d6335018da469a9a07cd80390", "Activision", "AX-020", "River Raid (1982) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "92a1a605b7ad56d863a56373a866761b", "US Games", "VC 2006", "Raft Rider (1982) (US Games)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, - { "93c52141d3c4e1b5574d072f1afde6cd", "Imagic", "O3213", "Subterrenea (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "205", "", "", "" }, + { "93420cc4cb1af1f2175c63e52ec18332", "Tim Snider", "", "Blair Witch Project by Tim Snider (Haunted House Hack)", "Hack of Haunted House (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "936ef1d6f8a57b9ff575dc195ee36b80", "", "", "Pac Kong (Starsoft) (NTSC Conversion)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "939ce554f5c0e74cc6e4e62810ec2111", "Zimag", "", "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "93c52141d3c4e1b5574d072f1afde6cd", "Imagic", "O3213", "Subterrenea (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "94b92a882f6dbaa6993a46e2dcc58402", "Activision", "AX-026", "Enduro (1983) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "94e4c9b924286038527f49cdc20fda69", "Retroactive", "", "Qb (V2.12) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "95351b46fa9c45471d852d28b9b4e00b", "Atari", "", "Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "191", "", "", "" }, + { "95351b46fa9c45471d852d28b9b4e00b", "Atari", "", "Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "95a69cf8c08ef1522b050529464f0bca", "", "", "Grid Pattern Demo 1 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "95c4576d6a14e2debfa0fd6f6ec254ab", "Activision", "AX-020", "River Raid (1982) (Activision) [a2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "", "" }, + { "95c4576d6a14e2debfa0fd6f6ec254ab", "Activision", "AX-020", "River Raid (1982) (Activision) [a2]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "95fd6097dc27c20666f039cfe34f7c69", "", "", "Oh No! (Version 1) (17-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "", "" }, + { "96670d0bf3610da2afcabd8e21d8eabf", "", "", "Boring Pitfall (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9671b658286e276cc4a3d02aa25931d2", "", "", "Hangman Ghost Wordlist (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "969b968383d9f0e9d8ffd1056bcaef49", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "230", "", "", "" }, + { "969b968383d9f0e9d8ffd1056bcaef49", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "196", "", "", "" }, - { "9853089672116117258097dbbdb939b7", "Hozer Video Games", "", "Gunfight 2600 - Cowboy Hair (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "97842fe847e8eb71263d6f92f7e122bd", "Imagic", "O3206", "Solar Storm (1983) (Imagic)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "97cd63c483fe3c68b7ce939ab8f7a318", "Thomas Jentzsch", "", "Robot City (V0.21) (15-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9813b9e4b8a6fd919c86a40c6bda8c93", "Atari", "CX26177", "Ikari Warriors (1990) (Atari) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9853089672116117258097dbbdb939b7", "Hozer Video Games", "", "Gunfight 2600 - Cowboy Hair (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ccd15345b1aee6caf51e05955f0261", "Retroactive", "", "Qb (V2.03) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "98e7caaab8ec237558378d2776c66616", "", "", "HMOVE Test (Bradford W. Mott) (1998) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "98f63949e656ff309cefa672146dc1b8", "Atari", "CX26168", "Off the Wall (1989) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "98f63949e656ff309cefa672146dc1b8", "Atari", "CX26168", "Off the Wall (1989) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "99112a46486b52b1110bae607bfa8cd6", "", "", "Greeting Cart Ali Landry Bikini (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9947f1ebabb56fd075a96c6d37351efa", "CBS Electronics", "4L-2737", "Omega Race (1983) (CBS Electronics)", "Set right difficulty to 'A' for Booster-Grip in both ports", "Uncommon", "", "", "", "A", "", "", "Booster-Grip", "Booster-Grip", "", "", "", "", "", "", "", "", "" }, { "99f7c6c26046bbe95f1c604b25da8360", "", "", "Comitoid beta 2 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "235", "", "", "" }, + { "9ab72d3fd2cc1a0c9adb504502579037", "Epyx", "8056100286", "California Games (1988) (Epyx) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ad36e699ef6f45d9eb6c4cf90475c9f", "Imagic", "IA3203", "Atlantis (1982) (Imagic) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9b21d8fc78cc4308990d99a4d906ec52", "", "C-838", "Immies & Aggies (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9bb136b62521c67ac893213e01dd338f", "", "", "Spike's Peak (1983) (Xonox) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9c27ef3bd01c611cdb80182a59463a82", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "192", "", "", "" }, + { "9c27ef3bd01c611cdb80182a59463a82", "Starpath", "AR-4103", "Killer Satellites (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "" }, + { "9c6faa4ff7f2ae549bbcb14f582b70e4", "CCE", "VC 1002", "Sneek 'n Peek (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9c7fa3cfcaaafb4e6daf1e2517d43d88", "", "", "PIEROXM Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d2938eb2b17bb73e9a79bbc06053506", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d4bc7c6fe9a7c8c4aa24a237c340adb", "", "", "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "NO" }, + { "9e01f7f95cb8596765e03b9a36e8e33c", "Atari", "CX26103", "Alpha Beam with Ernie (1983) (Atari)", "Uses Kids/Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, + { "9e5007131695621d06902ab3c960622a", "", "", "Tac Scan (1983) (Sega) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, + { "9ec1b259a1bcffa63042a3c2b3b90f0a", "Activision", "AG-008", "Laser Blast (1981) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ed0f2aa226c34d4f55f661442e8f22a", "Starsoft", "", "Fox & Goat (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "230", "", "", "" }, + { "9f48eeb47836cf145a15771775f0767a", "Atari", "CX262", "Basic Programming (1978) (Atari)", "Uses Keypad Controllers", "Rare", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "Yes", "", "" }, + { "9f901509f0474bf9760e6ebd80e629cd", "", "CX2623 / 99819 / 75125", "Home Run (1978) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9fc2d1627dcdd8925f4c042e38eb0bc9", "Atari", "CX2688", "Jungle Hunt (1982) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0185c06297b2818f786d11a3f9e42c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0675883f9b09a3595ddd66a6f5d3498", "Sunrise", "6057 A227", "Quest for Quintana Roo (Telegames) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a0e2d310e3e98646268200c8f0f08f46", "", "", "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a14d8a388083c60283e00592b18d4c6c", "", "", "Tunnel Demo (28-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a174cece06b3abc0aec3516913cdf9cc", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "36", "198", "", "", "" }, - { "a189f280521f4e5224d345efb4e75506", "Atari / Thomas Jentzsch", "", "Obelix (1983) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "44", "194", "", "", "" }, + { "a174cece06b3abc0aec3516913cdf9cc", "Sears", "CX2614 / 4975126", "Steeplechase (1980) (Sears) [o1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "a189f280521f4e5224d345efb4e75506", "Atari / Thomas Jentzsch", "", "Obelix (1983) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a1ead9c181d67859aa93c44e40f1709c", "American Videogame", "", "Tax Avoiders (1982) (American Videogame)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a204cd4fb1944c86e800120706512a64", "Coleco", "2511", "Smurfs Save the Day (1983) (Coleco)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "199", "", "", "" }, - { "a20d931a8fddcd6f6116ed21ff5c4832", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) (PAL)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "187", "Yes", "", "" }, + { "a204cd4fb1944c86e800120706512a64", "Coleco", "2511", "Smurfs Save the Day (1983) (Coleco)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a20d931a8fddcd6f6116ed21ff5c4832", "Apollo", "AP 2003", "Racquetball (1981) (Apollo) (PAL)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "a23ffc86804240ce77134a1c91926685", "", "", "Star Fire - Paulstar WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "8", "136", "52", "", "", "", "" }, - { "a412c8577b2d57b09185ae51739ac54f", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "Yes", "", "" }, + { "a29df35557f31dfea2e2ae4609c6ebb7", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Joystick)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a2eb84cfeed55acd7fece7fefdc83fbb", "", "", "Kool Aid Man (Fixed) (15-11-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a35d47898b2b16ec641d1dfa8a45c2b7", "Activision", "AX-017", "Megamania (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a3d7c299fbcd7b637898ee0fdcfc47fc", "Starpath", "AR-4300", "Fireball Preview (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "a412c8577b2d57b09185ae51739ac54f", "Starpath", "AR-4000", "Phaser Patrol (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "a499d720e7ee35c62424de882a3351b6", "Sega", "009-01", "Up 'n Down (1983) (Sega)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a4b99aa5ed85cfdb7d101923147de035", "Jim Goebel", "", "Pac-Law by Jim Goebel (Pac-Man Hack)", "Hack of Outlaw (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "225", "", "", "" }, - { "a4e885726af9d97b12bb5a36792eab63", "Xonox", "99001", "Spike's Peak (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "", "", "", "" }, - { "a5262fe6d01d6a1253692682a47f79dd", "", "", "JKH Text Scrolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "194", "", "", "" }, + { "a4b99aa5ed85cfdb7d101923147de035", "Jim Goebel", "", "Pac-Law by Jim Goebel (Pac-Man Hack)", "Hack of Outlaw (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a4e885726af9d97b12bb5a36792eab63", "Xonox", "99001", "Spike's Peak (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a5262fe6d01d6a1253692682a47f79dd", "", "", "JKH Text Scrolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a591b5e8587aae0d984a0f6fe2cc7d1c", "", "", "Globe Trotter Demo (24-03-2003) (Weston)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision", "AG-007", "Tennis (1981) (Activision) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, - { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari", "", "Surround (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "237", "", "", "" }, + { "a5c96b046d5f8b7c96daaa12f925bef8", "Activision", "AG-007", "Tennis (1981) (Activision) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a60598ad7ee9c5ccad42d5b0df1570a1", "Atari", "", "Surround (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a62e3e19280ff958407e05ca0a2d5ec7", "", "", "Hangman Ghost Biglist3 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a6637741b3e1111ebb0d4c9712a871b6", "", "", "Greeting Cart Cindy Margolis (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "63", "", "", "", "" }, + { "a69f5b1761a8a11c98e706ec7204937f", "TechnoVision", "", "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "a7673809068062106db8e9d10b56a5b3", "Atari", "CX26118", "Millipede (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a7b96a8150600b3e800a4689c3ec60a2", "Atari", "CX2630 / 4975122", "Circus Atari (1978) (Atari) (Paddles)", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "a7ed7dc5cbc901388afa59030fb11d26", "Atari", "CX2606", "Slot Racers (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "209", "", "", "" }, - { "aaea37b65db9e492798f0105a6915e96", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "192", "", "", "" }, + { "a8a703e073183a89c94d4d99b9661b7f", "Philip R. Frey", "", "Spice Invaders by Franklin Cruz (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a93e8ea1f565c3c1e86b708cf0dc2fa9", "Jess Ragan", "", "Kabul! by Jess Ragan (Kaboom! Hack)", "Hack of Kaboom! (Activision); Uses the Paddle Controllers (left only)", "New Release (Hack)", "", "", "", "", "", "", "Paddles", "None", "", "", "", "", "", "", "", "", "" }, + { "a957dbe7d85ea89133346ad56fbda03f", "", "", "Asteroids (1979) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "a995b6cbdb1f0433abc74050808590e6", "Imagic", "IA3600", "Riddle of the Sphinx (1982) (Imagic)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aa1c41f86ec44c0a44eb64c332ce08af", "Spectravideo", "", "Bumper Bash (1983) (Spectravideo)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aab840db22075aa0f6a6b83a597f8890", "ITT Family Games", "", "Hell Driver (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aaea37b65db9e492798f0105a6915e96", "Starpath", "AR-4302", "Party Mix (2 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "ab2ea35dcc1098c87455bb8210b018cf", "", "", "Fu Kung! (V0.04 Single Line Resolution) (10-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ab4ac994865fb16ebb85738316309457", "Atari", "CX2624", "Basketball (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "", "" }, + { "ab4ac994865fb16ebb85738316309457", "Atari", "CX2624", "Basketball (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "abb740bea0a6842831b4f53112fb8145", "", "", "Qb (V1.01) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "abe40542e4ff2d1c51aa2bb033f09984", "Activision", "AZ-042", "Skate Boardin' (1987) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ac26d7d37248d1d8eac5eccacdbef8db", "", "", "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ac7c2260378975614192ca2bc3d20e0b", "Activision", "AZ-030", "Decathlon (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "38", "193", "", "", "" }, + { "ac7c2260378975614192ca2bc3d20e0b", "Activision", "AZ-030", "Decathlon (1983) (Activision) [!]", "", "Rare", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, - { "adb79f9ac1a633cdd44954e2eac14774", "Digivision", "", "Frostbite (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "197", "", "", "" }, + { "acb7750b4d0c4bd34969802a7deb2990", "Parker Bros", "PB5310", "Amidar (1983) (Parker Bros)", "", "Uncommon", "", "", "A", "A", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, + { "ace319dc4f76548659876741a6690d57", "", "CX2616", "Championship Soccer (AKA Pele's Soccer)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ad42e3ca3144e2159e26be123471bffc", "Atari", "", "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "adb79f9ac1a633cdd44954e2eac14774", "Digivision", "", "Frostbite (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "adfbd2e8a38f96e03751717f7422851d", "Champ Games", "", "Lady Bug (NTSC)", "", "Homebrew", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "ae0d4f3396cb49de0fabdff03cb2756f", "Retroactive", "", "Qb (V2.02) (PAL) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "ae0d4f3396cb49de0fabdff03cb2756f", "Retroactive", "", "Qb (V2.02) (PAL) (2001) (Retroactive)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aed0b7bd64cc384f85fdea33e28daf3b", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "af6ab88d3d7c7417db2b3b3c70b0da0a", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o1]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "192", "", "", "" }, - { "afe776db50e3378cd6f29c7cdd79104a", "CCE / Thomas Jentzsch", "", "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "16", "254", "", "", "" }, + { "aed0b7bd64cc384f85fdea33e28daf3b", "Atari", "CX2666", "RealSports Volleyball (1982) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "af6ab88d3d7c7417db2b3b3c70b0da0a", "Activision", "AG-010", "Kaboom! (1981) (Activision) [o1]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "afe776db50e3378cd6f29c7cdd79104a", "CCE / Thomas Jentzsch", "", "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b00088418fc891f3faa3d4ddde6ace94", "", "", "Unknown Title (bin00007 (200102)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b06050f686c6b857d0df1b79fea47bb4", "", "", "Moonsweeper (1983) (Activision-PS2) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "b0ba51723b9330797985808db598fc31", "", "", "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "246", "", "", "" }, + { "b0ba51723b9330797985808db598fc31", "", "", "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "b1d1e083dc9e7d9a5dc1627869d2ade7", "CCE", "", "Mario Bros (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "52", "225", "", "", "" }, + { "b2737034f974535f5c0c6431ab8caf73", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b29359f7de62fed6e6ad4c948f699df8", "", "", "Labyrinth (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "b2d5d200f0af8485413fad957828582a", "Atari", "CX26155", "Sprint Master (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b3017e397f74efd53caf8fae0a38e3fe", "Retroactive", "", "Qb (2.12) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b37f0fe822b92ca8f5e330bf62d56ea9", "Xonox", "99001", "Spike's Peak (1983) (Xonox) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "208", "", "", "" }, + { "b442887aec0b4a725996d53f34787b14", "Imagic", "O3205", "Fathom (1983) (Imagic) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b49331b237c8f11d5f36fe2054a7b92b", "Funvision", "", "Galactic (G) (Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "b56264f738b2eb2c8f7cf5a2a75e5fdc", "Atari", "CX2694", "Pole Position (1983) (Atari) (PAL) [!]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b5cb9cf6e668ea3f4cc2be00ea70ec3c", "CommaVid", "CM-005", "Mines of Minos (1982) (CommaVid) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b6812eaf87127f043e78f91f2028f9f4", "Simage", "", "Eli's Ladder (Simage)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b6d52a0cf53ad4216feb04147301f87d", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b719ada17771a8d206c7976553825139", "Ron Corcoran", "", "DUP Space Invaders (Ron Corcoran)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b7345220a0c587f3b0c47af33ebe533c", "Starsoft", "", "Landungskommando (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b79fe32320388a197ac3a0b932cc2189", "", "", "Moonsweeper (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "b7f184013991823fc02a6557341d2a7a", "", "", "Blue Rod Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b816296311019ab69a21cb9e9e235d12", "Sears", "CX2652", "Poker Plus (AKA Casino) (1978) (Sears) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "b8865f05676e64f3bec72b9defdacfa7", "Activision", "AG-004", "Fishing Derby (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b9040a7af6d0d13e7d8fea72b2fb7432", "", "", "Image - Samantha Fox (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b958d5fd9574c5cf9ece4b9421c28ecd", "Piero Cavina", "", "Multi-Sprite Game V1.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "194", "", "", "" }, + { "b958d5fd9574c5cf9ece4b9421c28ecd", "Piero Cavina", "", "Multi-Sprite Game V1.0 (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b9c3bc1d77f8e9d814735188bf324e40", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b9f9c0fed0db08c34346317f3957a945", "Supervision", "", "Chopper Command (1982) (Supervision) (PAL) [p1] [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "194", "", "", "" }, + { "b9f9c0fed0db08c34346317f3957a945", "Supervision", "", "Chopper Command (1982) (Supervision) (PAL) [p1] [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "ba657d940a11e807ff314bba2c8b389b", "Activision", "AG-038", "Cosmic Commuter (1984) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "baf4ce885aa281fd31711da9b9795485", "Atari", "CX26176", "Radar Lock (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "195", "", "", "" }, + { "bc4cf38a4bee45752dc466c98ed7ad09", "Atari", "CX26136", "Solaris (1986) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "bcb2967b6a9254bcccaf906468a22241", "Activision", "", "Demon Attack (1983) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "193", "", "", "" }, - { "be060a704803446c02e6f039ab12eb91", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "41", "220", "", "", "" }, + { "bdbaeff1f7132358ea64c7be9e46c1ac", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox) (PAL) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be060a704803446c02e6f039ab12eb91", "Parker Bros", "PB5050", "Star Wars - The Empire Strikes Back (1982) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "becd908f9d7bb361982c3dc02d6475c6", "Kyle Pittman", "", "THX-1138 by Kyle Pittman (Berzerk Hack)", "Hack of Berserk (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "befce0de2012b24fd6cb8b53c17c8271", "", "", "Push (V0.03) (No Illegal Opcodes) (1998) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bf976cf80bcf52c5f164c1d45f2b316b", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, + { "bf976cf80bcf52c5f164c1d45f2b316b", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "bff8f8f53a8aeb1ee804004ccbb08313", "", "", "Droid Demo 22 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c00b65d1bae0aef6a1b5652c9c2156a1", "Atari", "CX2621", "Video Olympics (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, { "c033dc1d7b6fde41b9cadce9638909bb", "", "", "Skeleton (V1.1) (06-09-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, - { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, - { "c2410d03820e0ff0a449fa6170f51211", "Atari", "CX2646 / 4975185", "Pac-Man (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "54", "206", "", "", "" }, + { "c17bdc7d14a36e10837d039f43ee5fa3", "Spectravision", "SA-203", "Cross Force (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1cb228470a87beb5f36e90ac745da26", "Activision", "AX-015", "Chopper Command (1982) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c20f15282a1aa8724d70c117e5c9709e", "Video Gems", "", "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c221607529cabc93450ef25dbac6e8d2", "", "", "Color Test (26-09-2002) (Eckhard Stolberg)", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c2410d03820e0ff0a449fa6170f51211", "Atari", "CX2646 / 4975185", "Pac-Man (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c28b29764c2338b0cf95537cc9aad8c9", "", "", "Multi-Color Demo 4 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c2b5c50ccb59816867036d7cf730bf75", "Salu", "", "Ghostbusters II (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "242", "Yes", "", "" }, + { "c2b5c50ccb59816867036d7cf730bf75", "Salu", "", "Ghostbusters II (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "c3205e3707f646e1a106e09c5c49c1bf", "", "", "Unknown Title (bin00003 (200206)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c3a9550f6345f4c25b372c42dc865703", "Atari", "CX2663", "Road Runner (1989) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "44", "225", "", "", "" }, + { "c3a9550f6345f4c25b372c42dc865703", "Atari", "CX2663", "Road Runner (1989) (Atari) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "c4060a31d61ba857e756430a0a15ed2e", "", "", "Pick 'n Pile (PAL Conversion) (2003) (TJ)", "", "", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "c450a285daa7a3b65188c2c3cf04fb3e", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [a1][!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c47244f5557ae12c61e8e01c140e2173", "", "", "Jungle Hunt (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c49fe437800ad7fd9302f3a90a38fb7d", "Atari", "CX2697", "Mario Bros (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4bbbb0c8fe203cbd3be2e318e55bcc0", "Imagic", "", "Atlantis (1982) (Imagic) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c4d888bcf532e7c9c5fdeafbb145266a", "", "", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "c5301f549d0722049bb0add6b10d1e09", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [!]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "c5a76bafc4676edb76e0126fb9f0fb2d", "Charles Morgan", "", "Zero Patrol by Charles Morgan (Moon Patrol Hack)", "Hack of Moon Patrol (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "c67ff409f28f44883bd5251cea79727d", "", "", "Gunfight 2600 - Music & Bugfixes 1 (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c6c63da3bc2e47291f63280e057061d0", "128-in-1 Junior Console", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "" }, + { "c74bfd02c7f1877bbe712c1da5c4c194", "Activision / Thomas Jentzsch", "", "River Raid (Tanks Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c7900a7fe95a47eef3b325072ad2c232", "", "", "Super Congo Bongo (2003) (Larry Petit) (Congo Bongo Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "c7eab66576696e11e3c11ffff92e13cc", "Atari", "CX2680", "RealSports Tennis (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c82ec00335cbb4b74494aecf31608fa1", "CCE", "", "E.T. The Extra-Terrestrial (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c866c995c0d2ca7d017fef0fc0c2e268", "Retroactive", "", "Qb (2.00) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "c8fa5d69d9e555eb16068ef87b1c9c45", "CBS Electronics", "2653", "Donkey Kong Junior (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c9b7afad3bfd922e006a6bfc1d4f3fe7", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c9f6e521a49a2d15dac56b6ddb3fb4c7", "Parker Bros", "PB5000", "Star Wars - Jedi Arena (1983) (Parker Bros)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, - { "cb8afcbc4a779b588b0428ea7af211d5", "Activision", "", "Atlantis (1982) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, - { "cb9b2e9806a7fbab3d819cfe15f0f05a", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "55", "200", "", "", "" }, + { "ca50cc4b21b0155255e066fcd6396331", "Starsoft", "", "Raumpatrouille (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "ca7aaebd861a9ef47967d31c5a6c4555", "Atari", "", "Home Run (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cad982c9b45bc5eff34e4ea982d5f1ca", "", "", "Song (17-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "cb24210dc86d92df97b38cf2a51782da", "Ariola", "VG-01", "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb8afcbc4a779b588b0428ea7af211d5", "Activision", "", "Atlantis (1982) (Activision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cb9b2e9806a7fbab3d819cfe15f0f05a", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "240", "", "", "" }, + { "cbeafd37f15e0dddb0540dbe15c545a4", "", "", "Black and White Fast Scolling Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cc3d942c6958bd16b1c602623f59e6e1", "", "", "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ccb807eb79b0ed0f5fdc460445ef703a", "", "", "Superman (Stunt_Cycle_Rules!) (Superman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, + { "cccfe9e9a11b1dad04beba46eefb7351", "", "", "Poker Squares (V0.25) (PAL) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "cd6b3dff86a55a4a6d23007ee360ea0e", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) [b1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "44", "247", "", "", "" }, + { "cddabfd68363a76cd30bee4e8094c646", "CommaVid", "", "Magicard (CommaVid)", "Uses Keypad Controllers", "", "", "CV", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "", "" }, + { "ce243747bf34a2de366f846b3f4ca772", "Goliath", "", "Felix Return (Goliath) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "256", "", "", "" }, { "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", "", "", "", "", "", "", "", "8", "148", "60", "", "Yes", "", "" }, - { "cfc226d04d7490b69e155abd7741e98c", "Atari", "CX26159", "Double Dunk (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "190", "", "", "" }, - { "cfdb4d0427a1ea8085c6bc6eb90259d8", "", "", "Gunfight 2600 - Release Candidate (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "cef2287d5fd80216b2200fb2ef1adfa8", "Milton Bradley", "4363", "Spitfire Attack (1983) (Milton Bradley) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cf507910d6e74568a68ac949537bccf9", "Sega", "003-01", "Thunderground (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "cf9069f92a43f719974ee712c50cd932", "Video Gems", "", "Mission Survive (1983) (Video Gems) (PAL)", "", "", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "cfc226d04d7490b69e155abd7741e98c", "Atari", "CX26159", "Double Dunk (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "cfdb4d0427a1ea8085c6bc6eb90259d8", "", "", "Gunfight 2600 - Release Candidate (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cfee10bd7119f10b136921ced2ee8972", "", "", "Space Instigators (V1.8) (19-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cff578e5c60de8caecbee7f2c9bbb57b", "George Veeder", "", "Suicide Adventure by George Veeder (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "None", "", "", "", "", "35", "195", "", "", "" }, + { "cff578e5c60de8caecbee7f2c9bbb57b", "George Veeder", "", "Suicide Adventure by George Veeder (Adventure Hack)", "Hack of Adventure (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, { "d026716b3c5be2c951cc4c064317c524", "", "", "Fu Kung! (V0.06) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d090836f0a4ea8db9ac7abb7d6adf61e", "Hozer Video Games", "", "Yahtzee (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "d09f1830fb316515b90694c45728d702", "Imagic", "IA3400", "Fire Fighter (1982) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d0b9df57bfea66378c0418ec68cfe37f", "20th Century Fox", "11002", "Beany Bopper (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, + { "d0b9df57bfea66378c0418ec68cfe37f", "20th Century Fox", "11002", "Beany Bopper (1982) (20th Century Fox) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d0e9beb2347595c6c7d158e9d83d2da8", "Retroactive", "", "Qb (2.00) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "d17a671029b1532b197defca5f3649a7", "Hozer Video Games", "", "Gunfight 2600 - Limit broken again! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, + { "d17a671029b1532b197defca5f3649a7", "Hozer Video Games", "", "Gunfight 2600 - Limit broken again! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d1b4075925e8d3031a7616d2f02fdd1f", "", "", "Demo Image Series #7 - Two Marios (27-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d245e2f27c84016041e9496b66b722fe", "", "", "Gunfight 2600 - The Final Kernel (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, + { "d245e2f27c84016041e9496b66b722fe", "", "", "Gunfight 2600 - The Final Kernel (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "55", "", "", "", "" }, + { "d2f713c78a9ebba9da6d10aeefc6f20f", "Digivision", "", "Enduro (Digivision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d339b95f273f8c3550dc4daa67a4aa94", "Activision", "", "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "" }, + { "d39e29b03af3c28641084dd1528aae05", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d45ebf130ed9070ea8ebd56176e48a38", "Sega", "001-01", "Tac Scan (1983) (Sega) [!]", "Uses the Paddle Controllers (right only)", "Uncommon", "", "", "", "", "", "Yes", "Paddles", "Paddles", "Yes", "", "", "", "", "", "Yes", "", "" }, { "d483f65468d9a265661917bae1a54f3e", "Joe Grand", "", "SCSIcide Pre-release 3 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "d49aff83f77a1b9041ad7185df3c2277", "", "", "Space Treat (60% complete) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d4aa89e96d2902692f5c45f36903d336", "", "", "Euchre (NTSC) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, + { "d541b20eae221a8ee321375e5971e766", "Starpath", "AR-4101", "Communist Mutants From Space Preview (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d57eb282d7540051bc9b5427cf966f03", "", "", "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "d5e27051512c1e7445a9bf91501bda09", "Activision", "AG-008", "Laser Blast (1981) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d61629bbbe035f45552e31cef7d591b2", "", "", "Atari Logo Demo (PD) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d62d7d1a974c31c5803f96a8c1552510", "Activision", "AX-016", "Starmaster (1982) (Activision) (PAL) [p1][!]", "Use Color/BW switch to change between galactic chart and front views", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d65900fefa7dc18ac3ad99c213e2fa4e", "", "", "Grid and Purple Dot Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d6acff6aed0f04690fe4024d58ff4ce3", "Spectravideo", "SA-202", "Planet Patrol (Spectravideo) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "d81bb6965e6c99b3be99ffd8978740e4", "", "", "Gunfight 2600 - The Final Kernel Part 3 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d82c8a58098a6b46c5b81c16180354d1", "", "", "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "NO" }, + { "d85f1e35c5445ac898746719a3d93f09", "Starsoft", "", "Tom's Eierjagd (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d89fedded0436fdeda7c3c37e2fb7cf1", "Atari", "", "Surround (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d8df256c0d89e494a9fb3e9abb8e44ac", "Imagic", "IA3312", "No Escape! (1983) (Imagic) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d912312349d90e9d41a9db0d5cd3db70", "CCE", "", "Star Voyager (CCE) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d9ab6b67a17da51e5ad13717e93fa2e2", "", "", "Turbo (Coleco) Prototype Fake v0.1 (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "da4e3396aa2db3bd667f83a1cb9e4a36", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, + { "da4e3396aa2db3bd667f83a1cb9e4a36", "Activision", "AX-027", "Plaque Attack (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "da64f33d0521d5c9958e5d2d4434ff95", "", "", "Star Fire - Return of the Starfield (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "da79aad11572c80a96e261e4ac6392d0", "Salu", "", "Pick 'n Pile (1990) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "58", "219", "Yes", "", "" }, - { "dac762e4d01d445bdef20b7771f6570e", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [h1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "30", "205", "", "", "" }, - { "daeb54957875c50198a7e616f9cc8144", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "", "" }, + { "da79aad11572c80a96e261e4ac6392d0", "Salu", "", "Pick 'n Pile (1990) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "dac762e4d01d445bdef20b7771f6570e", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [h1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, + { "daeb54957875c50198a7e616f9cc8144", "20th Century Fox", "11005", "Mega Force (1982) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "db4eb44bc5d652d9192451383d3249fc", "", "", "Mountain King (1983) (CBS Electronics) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "47", "186", "Yes", "", "" }, + { "db4eb44bc5d652d9192451383d3249fc", "", "", "Mountain King (1983) (CBS Electronics) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "dba2692a216cb6c262c78f8b111a813e", "", "", "Star Fire (08-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dbb10b904242fcfb8428f372e00c01af", "Atari", "CX2631", "Superman (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "", "", "", "" }, + { "dbb10b904242fcfb8428f372e00c01af", "Atari", "CX2631", "Superman (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, - { "dd17711a30ad60109c8beace0d4a76e8", "", "", "Karate (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "27", "217", "", "", "" }, + { "dbdd21e1ee3d72119e8cd14d943c585b", "Atari", "", "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dc81c4805bf23959fcf2c649700b82bf", "", "", "No Escape! (1983) (Imagic) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dcc2956c7a39fdbf1e861fc5c595da0d", "Mattel", "MT5664", "Frogs and Flies (1982) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd08e18cfee87a0e7fc19a684b36e124", "", "", "Kangaroo (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dd17711a30ad60109c8beace0d4a76e8", "", "", "Karate (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dd4f4e0fbd81762533e39e6f5b55bb3a", "", "", "Turbo WIP (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dd8a2124d4eda200df715c698a6ea887", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, - { "ddd1efc1862cd3eb3baf4cba81ff5050", "", "", "Max3 (2001) (Maxime Beauvais) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "191", "", "", "" }, + { "dd8a2124d4eda200df715c698a6ea887", "Starpath", "AR-4400", "Dragonstomper (3 of 3) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ddd1efc1862cd3eb3baf4cba81ff5050", "", "", "Max3 (2001) (Maxime Beauvais) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "de1a636d098349be11bbc2d090f4e9cf", "", "", "Pressure Gauge (Hozer Video Games)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "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]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "233", "", "", "" }, + { "de24f700fd28d5b8381de13abd091db9", "CCE", "", "Plaque Attack (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de4436eaa41e5d7b7609512632b90078", "Activision", "AX-014", "Grand Prix (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de62f8a30298e2325249fe112ecb5c10", "CCE", "", "Enduro (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "de7a64108074098ba333cc0c70eef18a", "Technovision", "", "Nuts (Technovision) (PAL) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "deb39482e77f984d4ce73be9fd8adabd", "Activision", "AK-048-04", "River Raid II (1988) (Activision) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "df2745d585238780101df812d00b49f4", "Cooper Black", "", "Space Tunnel (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "df4aea767cdf6a3f138255092e84d713", "", "", "Image - Samantha Fox (Colour) (09-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "df6a28a89600affe36d94394ef597214", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "183", "", "", "" }, + { "df6a28a89600affe36d94394ef597214", "Apollo", "AP 2002", "Space Cavern (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dfad86dd85a11c80259f3ddb6151f48f", "", "", "My Golf (1990)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, + { "dfad86dd85a11c80259f3ddb6151f48f", "", "", "My Golf (1990)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dfe034297200dff672df9533ed1449a9", "", "", "Sprite Movement Demo 1 (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "e020f612255e266a8a6a9795a4df0c0f", "", "", "Universal Chaos (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e03b0b091bea5bc9d3f14ee0221e714d", "CBS Electronics", "4L-2487", "Solar Fox (1983) (CBS Electronics) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e0b24c3f40a46cda52e29835ab7ad660", "Starsoft", "", "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "204", "", "", "" }, - { "e314b42761cd13c03def744b4afc7b1b", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "187", "", "", "" }, + { "e10bf1af6bf3b4a253c5bef6577fe923", "Rob Kudla", "", "Space Invaders (1978) (Atari) [h1]", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e13818a5c0cb2f84dd84368070e9f099", "CCE", "C-839", "Misterious Thief, A (CCE)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "e150f0d14f013a104b032305c0ce23ef", "", "", "China Syndrome (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "e17699a54c90f3a56ae4820f779f72c4", "Starsoft", "SS-020", "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e1d5c8213e82820128fa9c4775f1e166", "", "", "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e24d7d879281ffec0641e9c3f52e505a", "Parker Bros", "PB5590", "Lord of The Rings (1983) (Parker Bros) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e28113d10c0c14cc3b5f430b0d142fcb", "CCE", "", "Keystone Kapers (CCE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e2c89f270f72cd256ed667507fa038a2", "Starpath", "AR-4101", "Communist Mutants From Space (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e314b42761cd13c03def744b4afc7b1b", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, - { "e4c2077a18e3c27f4819aa7757903aa0", "", "", "Many Blue Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, - { "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", "", "", "" }, + { "e3ed4ba3361756970f076e46e9cad1d2", "Activision", "", "Tennis (1981) (Activision) (PAL) [p1][o1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e42b937c30c617241ca9e01e4510c3f6", "", "", "Pitfall! (No Walls Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4a0b28befaaa2915df1fa01238b1e29", "", "", "Gunfight 2600 - Red River (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4bff1d5df70163c0428a1ead309c22d", "Atari", "CX2609 / 4975186", "Defender (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e4c2077a18e3c27f4819aa7757903aa0", "", "", "Many Blue Bars Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e505bd8e59e31aaed20718d47b15c61b", "High-Score Games", "", "Condor Attack (High-Score Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e549f1178e038fa88dc6d657dc441146", "Atari", "CX2625 / 6699827 / 4975114", "Football (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e558be88eef569f33716e8e330d2f5bc", "", "", "Keystone Kapers (Shock Vision) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e5d5085123a98c1e61818caa2971e999", "", "", "Euchre (PAL) (Erik Eid) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e5ecd78edd24326a968809decbc7b916", "", "", "Cheese 98 (Dragonfire Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "8", "144", "64", "194", "", "", "" }, - { "e72eb8d4410152bdcb69e7fba327b420", "Atari", "CX26136", "Solaris (1986) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "196", "", "", "" }, + { "e600f5e98a20fafa47676198efe6834d", "", "", "Gyruss (1984) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "e63a87c231ee9a506f9599aa4ef7dfb9", "Tigervision", "7-003", "Threshold (1982) (Tigervision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e64a8008812327853877a37befeb6465", "", "ASC1002", "Gauntlet (1983) (Answer Software)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e6de4ef9ab62e2196962aa6b0dedac59", "Imagic", "O3206", "Solar Storm (1983) (Imagic) (PAL) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "e72eb8d4410152bdcb69e7fba327b420", "Atari", "CX26136", "Solaris (1986) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e74022cfe31ec8908844718dfbdedf7a", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli) [a2]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e79c4432c518ca3e497f673a167ee526", "", "", "Ocean City (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e7f005ddb6902c648de098511f6ae2e5", "Spectravideo & Universum", "", "CompuMate (Spectravideo & Universum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "Yes", "", "" }, + { "e7f005ddb6902c648de098511f6ae2e5", "Spectravideo & Universum", "", "CompuMate (Spectravideo & Universum) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, - { "e908611d99890733be31733a979c62d8", "", "CX2697", "Mario Bros (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, + { "e8aa36e3d49e9bfa654c25dcc19c74e6", "Atari", "CX2601", "Combat (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "36", "260", "", "", "" }, + { "e908611d99890733be31733a979c62d8", "", "CX2697", "Mario Bros (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e932f44fad2a66b6d5faec9addec208e", "", "", "Atari Logo Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "218", "", "", "" }, - { "ea38fcfc06ad87a0aed1a3d1588744e4", "Atari", "CX26122", "Sinistar (Atari)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "", "" }, + { "e9be3e8e4a7e73dd63ed4235a3a1a25f", "", "", "MMetall (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ea38fcfc06ad87a0aed1a3d1588744e4", "Atari", "CX26122", "Sinistar (Atari)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ea86176b27ab0da8cce8f0179884bfaa", "", "", "Demo Image Series #10 - It's Art (28-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "eae0c06ee61c63b81cd016096fc901b0", "Joe Grand", "", "SCSIcide (v1.0) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "eb634650c3912132092b7aee540bbce3", "Atari", "CX2640", "RealSports Baseball (1982) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "eb9712e423b57f0b07ccd315bb9abf61", "Retroactive", "", "Qb (V2.04) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "ec26fdc87b1d35f1d60ea89cda4f4dd4", "", "", "Star Fire - Crash Scene (04-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "ec5d04b7e6cc6641d74d3ba7bb41ebc9", "Absolute-Activision", "", "Pro Wrestling (Absolute-Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ed014beeeb77dbb2bbcf9b5f6850b2f4", "", "", "Green Bar Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ed1492d4cafd7ebf064f0c933249f5b0", "CCE", "", "Video Cube (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "8", "136", "35", "234", "", "", "" }, + { "ed5ccfc93ad4561075436ee42a15438a", "Atari", "CX2626", "Miniature Golf (1979) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "edf69b123e06eaf8663cc78d8aeba06e", "SpkSoft 98", "", "River Raid (SpkSoft 98) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ee4c186123d31a279ed7a84d3578df23", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ee67dc0b01746372d2b983d88f48e24f", "", "", "Scroller Demo (02-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ee8e2aa00e3a9cf1238157cbcff7de74", "Tigervision", "7-007", "Polaris (1983) (Tigervision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "", "", "", "" }, + { "ee8e2aa00e3a9cf1238157cbcff7de74", "Tigervision", "7-007", "Polaris (1983) (Tigervision) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "ef5c02c95a1e7ed24f24193935755cd3", "Thomas Jentzsch", "", "Jammed Demo (1999) (Hozer Video Games)", "Won't work with Stella < V1.2", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "24", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "efd387430a35a659ff569a9a0ec22209", "Atari", "", "Milpede (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f032b2f2d8323404a6b4541f92dd1825", "", "", "Many Blue Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f060826626aac9e0d8cda0282f4b7fc3", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f0a6e99f5875891246c3dbecbf2d2cea", "Atari", "CX2654 / 4975141", "Haunted House (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "184", "", "", "" }, + { "f0a6e99f5875891246c3dbecbf2d2cea", "Atari", "CX2654 / 4975141", "Haunted House (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0cacae1d1b79ee92f0dc035f42e0560", "", "", "Boring Donkey Kong (Donkey Kong Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f0ee2b055fed6c1df4f3cbb2e12b2c15", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "189", "", "", "" }, + { "f0ee2b055fed6c1df4f3cbb2e12b2c15", "Starpath", "AR-4400", "Dragonstomper (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f137211537438b1fce3d811baef25457", "", "", "Incoming (02-10-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f1554569321dc933c87981cf5c239c43", "Atari", "CX26129", "Midnight Magic (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "200", "Yes", "", "" }, + { "f1554569321dc933c87981cf5c239c43", "Atari", "CX26129", "Midnight Magic (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "f1929bb9b5db22d98dd992aa3fe72920", "", "", "Cube Conquest (Improved Interlace) (Billy Eno) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f1b7edff81ceef5af7ae1fa76c8590fc", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "47", "230", "", "", "" }, + { "f1b7edff81ceef5af7ae1fa76c8590fc", "Atari", "CX2632", "Space Invaders (1978) (Atari) (PAL) [p1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f1e375d921858467166e53bcec05803f", "Jeffry Johnston", "", "Radial Pong - Version 3 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "f21813aa050437f0dbc8479864acec6d", "", "", "Sneek 'n Peek (1982) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f283cc294ece520c2badf9da20cfc025", "Atari", "CX26104", "Big Bird's Egg Catch (1983) (Atari) (PAL) [!]", "Uses Kids/Keypad Controllers (left only)", "Rare", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "f367e58667a30e7482175809e3cec4d4", "Zimag", "GN-040 / 708-111", "Cosmic Corridor (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f3c431930e035a457fe370ed4d230659", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "f5d103a9ae36d1d4ee7eef657b75d2b3", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, - { "f69bb58b815a6bdca548fa4d5e0d5a75", "Atari", "", "Bowling (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "63", "218", "", "", "" }, + { "f48022230bb774a7f22184b48a3385af", "Atari", "CX2633 / 4975119", "Night Driver (1978) (Atari) [o1]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "Yes", "", "" }, + { "f49a34f1fdd7dc147cbf96ce2ce71b76", "", "", "Qb (Special Edition) (PAL) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "f526d0c519f5001adb1fc7948bfbb3ce", "Mythicon", "MA-1003", "Star Fox (1982) (Mythicon) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f5445b52999e229e3789c39e7ee99947", "Atari", "", "Flag Capture (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f5d103a9ae36d1d4ee7eef657b75d2b3", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "31", "", "", "", "" }, + { "f69bb58b815a6bdca548fa4d5e0d5a75", "Atari", "", "Bowling (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "195", "", "", "" }, + { "f6f1b27efc247a0e8d473ddb4269ff9e", "Starsoft", "", "Schnapp die Apfeldiebe (AKA Catch Time) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f736864442164b29235e8872013180cd", "Telegames", "", "Quest for Quintana Roo (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f74ad642552385c3daa203a2a6fc2291", "Eckhard Stolberg", "", "Cubis (1997) (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f7856e324bc56f45b9c8e6ff062ec033", "", "", "RealSports Soccer (1983) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f7d6592dcb773c81c278140ed4d01669", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "197", "", "", "" }, + { "f7d6592dcb773c81c278140ed4d01669", "Activision", "AZ-108-04", "Ghostbusters (1985) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "", "", "47", "218", "", "", "" }, - { "f9677b2ec8728a703eb710274474613d", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "60", "202", "", "", "" }, + { "f825c538481f9a7a46d1e9bc06200aaf", "Atari", "CX2635 / 4975157", "Maze Craze (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8648d0c6ad1266434f6c485ff69ec40", "CCE", "", "Oink! (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8c1c4a41303bd40b0d6c81bfaf8573b", "", "", "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f91fb8da3223b79f1c9a07b77ebfa0b2", "", "CX2615 / 4975140", "Demons to Diamonds (1982)", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "", "", "", "", "" }, + { "f9655ed51462ecfc690c7b97cec649f9", "Andrew Wallace", "", "Laseresal 2002 (PAL) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9677b2ec8728a703eb710274474613d", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "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", "", "", "" }, + { "f9e99596345a84358bc5d1fbe877134b", "Activision", "AG-010", "Kaboom! (1981) (Activision) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "fa1b060fd8e0bca0c2a097dcffce93d3", "", "CX26101", "Oscar's Trash Race (1983) (Atari) (Prototype) (PAL)", "Uses Kids/Keypad Controllers (left only)", "Prototype", "", "", "", "", "", "", "Keyboard", "None", "", "", "", "", "", "", "", "", "" }, + { "fa4404fabc094e3a31fcd7b559cdd029", "Atari", "", "Bugs Bunny (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa7e11a3dbea4365975cd2f094e61d25", "Tim Snider", "", "Mystery Science Theater 2600 by Tim Snider (Megamania Hack)", "Hack of Megamania (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "faed2ef6b44894f8c83f2b50891c35c6", "CCE", "", "Super Baseball (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "32", "199", "", "", "" }, + { "faed2ef6b44894f8c83f2b50891c35c6", "CCE", "", "Super Baseball (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fb09ee4ccd47ae74a3c314f0d8a40344", "", "", "Titans (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fb27afe896e7c928089307b32e5642ee", "Mattel", "MT5662", "TRON - Deadly Discs (1983) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "181", "", "", "" }, + { "fb27afe896e7c928089307b32e5642ee", "Mattel", "MT5662", "TRON - Deadly Discs (1983) (Mattel) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fb833ed50c865a9a505a125fc9d79a7e", "HomeVision", "", "Zoo Fun (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "249", "", "", "" }, - { "fb91da78455d9b1606913fbf8c859772", "", "", "Split Screen (Ballblazer) Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, + { "fb833ed50c865a9a505a125fc9d79a7e", "HomeVision", "", "Zoo Fun (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "" }, + { "fb91da78455d9b1606913fbf8c859772", "", "", "Split Screen (Ballblazer) Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fbb0151ea2108e33b2dbaae14a1831dd", "Activision / Thomas Jentzsch", "", "Robot Tank TV by Thomas Jentzsch (2 Joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Robot Tank (Activision)", "New Release (Hack)", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "41", "200", "", "", "" }, + { "fbb0151ea2108e33b2dbaae14a1831dd", "Activision / Thomas Jentzsch", "", "Robot Tank TV by Thomas Jentzsch (2 Joystick Hack)", "Uses two simultaneous Joystick Controllers, Hack of Robot Tank (Activision)", "New Release (Hack)", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fbd6102e17a5c02c6e1911381b7203f9", "", "", "Star Fire - Warping!! (10-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fc2104dd2dadf9a6176c1c1c8f87ced9", "Coleco", "2663", "Time Pilot (1983) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "193", "", "", "" }, - { "fc24a94d4371c69bc58f5245ada43c44", "Atari", "CX26170", "Secret Quest (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "136", "42", "194", "", "", "" }, - { "fc668a2251dd79cbd903d4fa0e558f96", "", "", "Thrust (V1.1) (2000) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "fc2104dd2dadf9a6176c1c1c8f87ced9", "Coleco", "2663", "Time Pilot (1983) (Coleco)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fc24a94d4371c69bc58f5245ada43c44", "Atari", "CX26170", "Secret Quest (1989) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fc668a2251dd79cbd903d4fa0e558f96", "", "", "Thrust (V1.1) (2000) (TJ) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fc9c1652fe3a2cade6188f4d3692481f", "", "", "Andrew Davies early notBoulderDash demo (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, - { "fcea12625c071ddc49f4e409f4038c60", "", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "236", "", "", "" }, + { "fcea12625c071ddc49f4e409f4038c60", "", "", "Balls! (16-09-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "fd0e5148162e8ec6719445d559f018a9", "Activision", "AX-022", "Seaquest (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd4f5536fd80f35c64d365df85873418", "Atari", "CX26140", "Desert Falcon (1987) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fd7464edaa8cc264b97ba0d13e7f0678", "HES", "", "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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" }, + { "fdf0de38517e0cf7f0885f98ccc95836", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe0bc4bb92c1c4de7d5706aaa8d8c10d", "", "", "Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fe870018332a0221eb59fb18b0c6bccc", "", "", "Incoming (08-11-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "63", "192", "", "", "" }, + { "feba8686fd0376015258d1152923958a", "", "", "Super Circus (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "64", "", "", "", "" }, + { "feedcc20bc3ca34851cd5d9e38aa2ca6", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, + { "ff7627207e8aa03730c35c735a82c26c", "Atari", "", "Blackjack (32-in-1) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "" }, + { "ffe51989ba6da2c6ae5a12d277862e16", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "00ce0bdd43aed84a983bef38fe7f5ee3", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "44", "178", "", "", "" }, - { "00dc28b881989c39a6cf87a892bd3c6b", "CCE", "", "Krull (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, + { "00ce0bdd43aed84a983bef38fe7f5ee3", "20th Century Fox", "11012", "Bank Heist (1983) (20th Century Fox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "00dc28b881989c39a6cf87a892bd3c6b", "CCE", "", "Krull (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "00eaee22034aff602f899b684c107d77", "", "", "Time Race (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "222", "", "", "" }, + { "00eaee22034aff602f899b684c107d77", "", "", "Time Race (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0173675d40a8d975763ee493377ca87d", "CBS Electronics", "2667", "Roc n' Rope (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "56", "250", "", "", "" }, + { "0173675d40a8d975763ee493377ca87d", "CBS Electronics", "2667", "Roc n' Rope (CBS Electronics) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "67", "", "", "", "" }, + { "01cb3e8dfab7203a9c62ba3b94b4e59f", "Atari", "CX26127", "Gremlins (1984) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "01e60a109a6a67c70d3c0528381d0187", "ITT Family Games", "554-33383", "Fire Birds (AKA Scorpion) (ITT Family Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "027a59a575b78860aed780b2ae7d001d", "CCE", "", "Pressure Cooker (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, + { "027a59a575b78860aed780b2ae7d001d", "CCE", "", "Pressure Cooker (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "02ab2c47bc21e7feafa015f90d7df776", "", "", "Diagnostic Cartridge (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "02dcba28c614fec7ca25955327128abb", "Andrew Wallace", "", "Laseresal 2002 (PAL-49) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "47", "241", "", "", "" }, + { "02dcba28c614fec7ca25955327128abb", "Andrew Wallace", "", "Laseresal 2002 (PAL-49) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "039cf18b459d33b8a8fca31d06c4c244", "", "", "Demo Image Series #0 (12-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "03c3f7ba4585e349dd12bfa7b34b7729", "Sega", "004-01", "Star Trek - Strategic Operations Simulator (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "219", "Yes", "", "" }, - { "041b5e56bbc650db574bd8db3fae2696", "", "", "Thrust (V1.0) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "03c3f7ba4585e349dd12bfa7b34b7729", "Sega", "004-01", "Star Trek - Strategic Operations Simulator (1983) (Sega)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "041b5e56bbc650db574bd8db3fae2696", "", "", "Thrust (V1.0) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "045035f995272eb2deb8820111745a07", "Starpath", "AR-4401", "Survival Island (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "", "", "", "No" }, - { "04856e3006a4f5f7b4638da71dad3d88", "Atari", "CX26176", "Radar Lock (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "211", "", "", "" }, + { "045035f995272eb2deb8820111745a07", "Starpath", "AR-4401", "Survival Island (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "04856e3006a4f5f7b4638da71dad3d88", "Atari", "CX26176", "Radar Lock (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2096,81 +2096,81 @@ 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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "194", "", "", "" }, + { "05aff8f626ef870432ae3b3d9d5aa301", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [o2]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "05c60458ec69e7fe8b1be973852d84f1", "", "", "Test (1996) (J.V. Matthews) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "05f11fb2e45c4e47424d3cb25414d278", "", "", "Boring (NTSC) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06742cf522f23797157f215a1dc8a1a9", "", "", "Healthbars (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "06953ed762220dba63d63930d4ad0cc3", "", "", "Star Fire - Eckhard WIP (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "06b6c5031b8353f3a424a5b86b8fe409", "Activision", "AX-023", "Oink! (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "06b6c5031b8353f3a424a5b86b8fe409", "Activision", "AX-023", "Oink! (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "06e5dc181a8eda1c31cc7c581c68b6ef", "Sega", "", "Tac Scan (1982) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "06e5dc181a8eda1c31cc7c581c68b6ef", "Sega", "", "Tac Scan (1982) (Sega) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0751f342ee4cf28f2c9a6e8467c901be", "", "", "Super Baseball (1988) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "220", "", "", "" }, - { "07973be3ecfd55235bf59aa56bdef28c", "Starsoft", "", "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "57", "", "Yes", "", "" }, + { "0751f342ee4cf28f2c9a6e8467c901be", "", "", "Super Baseball (1988) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "07973be3ecfd55235bf59aa56bdef28c", "Starsoft", "", "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "07a3af1e18b63765b6807876366f5e8a", "Joe Grand", "", "SCSIcide Pre-release 2 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "" }, + { "08188785e2b8300983529946dbeff4d2", "Atari", "CX2611 / 6699821 / 4975149", "Indy 500 (1978) (Atari) [o1]", "Uses Driving Controllers", "Uncommon", "", "", "", "", "", "", "Driving", "Driving", "", "", "", "", "", "", "", "", "" }, + { "082fdc8bd47fef01482ce5883c4ffdb8", "Charles Morgan", "", "Tanks DX by Charles Morgan (Tanks but no Tanks Hack)", "Hack of Tanks But No Tanks (Zimag)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "085322bae40d904f53bdcc56df0593fc", "Parker Bros", "PB5340", "Tutankham (1983) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "08d1b6d75206edb999252caf542a2c7f", "", "", "Super Home Run (2003) (Larry Petit) (Home Run Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "218", "", "", "" }, + { "08d1b6d75206edb999252caf542a2c7f", "", "", "Super Home Run (2003) (Larry Petit) (Home Run Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "08f853e8e01e711919e734d85349220d", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video", "VC 1012", "M.A.D. (1982) (Carrere Video) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "57", "193", "", "", "" }, + { "08f853e8e01e711919e734d85349220d", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "090f0a7ef8a3f885048d213faa59b2f8", "Carrere Video", "VC 1012", "M.A.D. (1982) (Carrere Video) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "097936b07e0e0117b9026ae6835eb168", "", "", "Trick Shot (1982) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "250", "Yes", "", "" }, + { "097936b07e0e0117b9026ae6835eb168", "", "", "Trick Shot (1982) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0aa208060d7c140f20571e3341f5a3f8", "US Games", "VC 1009", "Towering Inferno (1982) (US Games) [!]", "Uses the Joystick Controllers (swapped)", "Uncommon", "", "", "", "", "", "Yes", "", "", "", "", "", "", "32", "219", "", "", "" }, + { "0aa208060d7c140f20571e3341f5a3f8", "US Games", "VC 1009", "Towering Inferno (1982) (US Games) [!]", "Uses the Joystick Controllers (swapped)", "Uncommon", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, { "0ac0d491763153fac75f5337ce32a9d6", "", "", "SPAM Image Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0ad9a358e361256b94f3fb4f2fa5a3b1", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "35", "180", "", "", "" }, + { "0ad9a358e361256b94f3fb4f2fa5a3b1", "Atari", "CX2608 / 4975165", "Super Breakout (1978) (Atari) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0b24658714f8dff110a693a2052cc207", "", "", "Seaquest (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, - { "0b4e793c9425175498f5a65a3e960086", "CCE", "AX-039", "Kung Fu Master (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "192", "", "", "" }, + { "0b24658714f8dff110a693a2052cc207", "", "", "Seaquest (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0b4e793c9425175498f5a65a3e960086", "CCE", "AX-039", "Kung Fu Master (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0b8d3002d8f744a753ba434a4d39249a", "Sears", "CX2619 / 4975159", "Stellar Track (1980) (Sears)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "136", "37", "", "Yes", "", "" }, + { "0b8d3002d8f744a753ba434a4d39249a", "Sears", "CX2619 / 4975159", "Stellar Track (1980) (Sears)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0c35806ff0019a270a7acae68de89d28", "Froggo", "FG 1003", "Task Force (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "", "", "", "" }, - { "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", "", "", "" }, + { "0c35806ff0019a270a7acae68de89d28", "Froggo", "FG 1003", "Task Force (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0c54811cf3b1f1573c9164d5f19eca65", "Activision", "AG-001", "Dragster (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0c80751f6f7a3b370cc9e9f39ad533a7", "Atari", "CX2610 / 4975127", "Warlords (1981) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0cdd9cc692e8b04ba8eb31fc31d72e5e", "Imagic / Thomas Jentzsch", "", "Wing War (Imagic) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "31", "200", "", "", "" }, + { "0cdd9cc692e8b04ba8eb31fc31d72e5e", "Imagic / Thomas Jentzsch", "", "Wing War (Imagic) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0cfdd2f3b243cac21f38a0f09f54bead", "", "", "Overhead Adventure Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0d35618b6d76ddd46d2626e9e3e40db5", "", "", "X-Doom V.26 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, - { "0d6b974fe58a1bdd453600401c407856", "", "", "128-in-1 Junior Console (Chip 3) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "50", "", "", "", "" }, + { "0d35618b6d76ddd46d2626e9e3e40db5", "", "", "X-Doom V.26 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0d6b974fe58a1bdd453600401c407856", "", "", "128-in-1 Junior Console (Chip 3) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0d7e630a14856f4d52c9666040961d4d", "", "", "Wavy Line Test (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision", "7-001", "King Kong (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "53", "211", "", "", "" }, + { "0dd4c69b5f9a7ae96a7a08329496779a", "Tigervision", "7-001", "King Kong (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2189,8 +2189,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "0f8043715d66a4bbed394ef801d99862", "Starsoft", "", "Robin Hood (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "206", "", "", "" }, - { "0fbf618be43d4396856d4244126fe7dc", "Starsoft", "", "Labyrinth (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "180", "", "", "" }, + { "0f8043715d66a4bbed394ef801d99862", "Starsoft", "", "Robin Hood (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "0fbf618be43d4396856d4244126fe7dc", "Starsoft", "", "Labyrinth (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "0fd518e9435f5ab0893d79ee0d63fc92", "", "", "Greeting Cart Jeri Ryan (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "103d4c890c2108cb536372c98d093e5f", "", "", "Star Fire - Star Background (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2199,31 +2199,31 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "220", "", "", "" }, + { "10a3cd14e5dcfdde6ff216a14ce7b7dd", "Atari", "", "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "111029770226b319524134193886a10e", "Hozer Video Games", "", "Gunfight 2600 - One Limit Reached! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, + { "111029770226b319524134193886a10e", "Hozer Video Games", "", "Gunfight 2600 - One Limit Reached! (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "113cd09c9771ac278544b7e90efe7df2", "", "CX2639 / 4975162", "Othello (1978) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "233", "", "", "" }, + { "12123b534bdee79ed7563b9ad74f1cbd", "Absolute", "AG-041", "Title Match Pro Wrestling (1987) (Absolute) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1266b3fd632c981f3ef9bdbf9f86ce9a", "Activision", "AG-034-04", "Private Eye (1983) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx", "8056100250", "Summer Games (1987) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "12bca8305d5ab8ea51fe1cfd95d7ab0e", "Epyx", "8056100250", "Summer Games (1987) (Epyx) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "12d7e0d6b187889f8d150bf7034d1db2", "", "", "Poker Squares (V0.0e) (2001) (B. Watson)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "131864e1d18d3406048700d3c0760417", "Atari", "CX26168", "Off the Wall (1989) (Atari) (PAL) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "193", "Yes", "", "" }, + { "1345e972dbe08ea3e70850902e20e1a5", "Greg Troutman", "", "Dark Mage (rough beta) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1367e41858be525710eb04d0dab53505", "", "", "Zelda (2003) (Kyle Pittman) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "1367e41858be525710eb04d0dab53505", "", "", "Zelda (2003) (Kyle Pittman) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "13aa1f9ac4249947e4af61319d9a08f2", "", "", "RealSports Tennis (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "", "", "", "" }, + { "13aa1f9ac4249947e4af61319d9a08f2", "", "", "RealSports Tennis (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "13dfb095e519a555a5b60b7d9d7169f9", "", "", "Red Line Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "14163eb2a3ddd35576bd8527eae3b45e", "", "", "Multi-Color Demo 6 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2231,24 +2231,24 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "149b543c917c180a1b02d33c12415206", "CCE", "CX2631", "Superman (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, - { "14b1e30982962c72f426e2e763eb4274", "Atari", "", "Polo (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, + { "149b543c917c180a1b02d33c12415206", "CCE", "CX2631", "Superman (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "14b1e30982962c72f426e2e763eb4274", "Atari", "", "Polo (Atari) (Prototype) [o1]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "14d365bbfaac3d20c6119591f57acca4", "", "", "Video Life (CommaVid) [h1]", "", "", "", "CV", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1542662f665d2ffaa77b4b897dd2e2af", "", "", "Starfield (V1.0) (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "157356f80c709ab675961d8b8b207e20", "", "", "Multi-Sprite Game V2.5 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "159e5cd6ccb968015f49aed5adbc91eb", "", "", "Yar's Defeat (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "", "" }, + { "159e5cd6ccb968015f49aed5adbc91eb", "", "", "Yar's Defeat (2002) (Justin J. Scott) (Yars' Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "15bcd74f2f1f2a63e1aa93e90d2c0555", "", "", "Incoming (22-08-2002) (Ben Larson) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "15c11ab6e4502b2010b18366133fc322", "Atari", "CX26169", "Shooting Arcade (1989) (Atari) (Prototype)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1619bc27632f9148d8480cd813aa74c3", "Video Gems / Thomas Jentzsch", "", "Steeple Chase (Video Gems) (NTSC by Thomas Jentzsch)", "Uses the Paddle Controllers", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "Paddles", "Paddles", "", "", "8", "152", "0", "243", "Yes", "", "" }, + { "1619bc27632f9148d8480cd813aa74c3", "Video Gems / Thomas Jentzsch", "", "Steeple Chase (Video Gems) (NTSC by Thomas Jentzsch)", "Uses the Paddle Controllers", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "16cc6d1b4ddce51c767a1ba8e5ff196c", "", "", "Big - Move This Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "Yes", "", "" }, - { "16f494f20af5dc803bc35939ef924020", "Mark De Smet", "", "Video Simon (Mark De Smet)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "190", "", "", "" }, + { "16cc6d1b4ddce51c767a1ba8e5ff196c", "", "", "Big - Move This Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "16f494f20af5dc803bc35939ef924020", "Mark De Smet", "", "Video Simon (Mark De Smet)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2258,11 +2258,11 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "17badbb3f54d1fc01ee68726882f26a6", "Mattel", "MT5659", "Space Attack (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "33", "201", "", "", "" }, - { "17d000a2882f9fdaa8b4a391ad367f00", "Atari", "CX2676", "Centipede (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "196", "", "", "" }, - { "17ee23e5da931be82f733917adcb6386", "Salu", "", "Acid Drop (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "52", "255", "", "", "" }, + { "17badbb3f54d1fc01ee68726882f26a6", "Mattel", "MT5659", "Space Attack (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17d000a2882f9fdaa8b4a391ad367f00", "Atari", "CX2676", "Centipede (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "17ee23e5da931be82f733917adcb6386", "Salu", "", "Acid Drop (1992) (Salu) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, + { "183020a80848e06a1238a1ab74079d52", "", "", "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "243", "", "", "" }, + { "193f060553ba0a2a2676f91d9ec0c555", "Atari", "CX2636", "Video Checkers (1978) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2283,20 +2283,20 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1a624e236526c4c8f31175e9c89b2a22", "", "", "Space Raid (Rainbow Vision) (PAL) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "193", "", "", "" }, + { "1a624e236526c4c8f31175e9c89b2a22", "", "", "Space Raid (Rainbow Vision) (PAL) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1b8d35d93697450ea26ebf7ff17bd4d1", "Starsoft", "", "Marineflieger (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "235", "", "", "" }, - { "1bef389e3dd2d4ca4f2f60d42c932509", "HomeVision", "1", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "235", "Yes", "", "" }, + { "1b8d35d93697450ea26ebf7ff17bd4d1", "Starsoft", "", "Marineflieger (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1bef389e3dd2d4ca4f2f60d42c932509", "HomeVision", "1", "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1c5796d277d9e4df3f6648f7012884c4", "Starsoft", "", "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "200", "", "", "" }, - { "1c85c0fc480bbd69dc301591b6ecb422", "CCE", "", "Super Box (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "185", "", "", "" }, + { "1c5796d277d9e4df3f6648f7012884c4", "Starsoft", "", "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1c85c0fc480bbd69dc301591b6ecb422", "CCE", "", "Super Box (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1cd90a0841ab9d62583e93f78fee8036", "", "", "Dark Mage Mod (AKA DM-FOOT) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1d284d6a3f850bafb25635a12b316f3d", "CCE", "", "H.E.R.O. (1984) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, - { "1d4e0a034ad1275bc4d75165ae236105", "", "", "Pickup (2002) (20th Century Fox) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "1d284d6a3f850bafb25635a12b316f3d", "CCE", "", "H.E.R.O. (1984) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1d4e0a034ad1275bc4d75165ae236105", "", "", "Pickup (2002) (20th Century Fox) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2305,8 +2305,8 @@ 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", "", "", "", "", "", "", "", "", "", "", "4", "152", "53", "205", "", "", "" }, + { "1ec57bbd27bdbd08b60c391c4895c1cf", "", "CX26119", "Saboteur (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "1ede4f365ce1386d58f121b15a775e24", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [b1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2314,83 +2314,83 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "1f562b89d081e36d58e6fc943512ec05", "", "", "Hangman Man Biglist2 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "1f60e48ad98b659a05ce0c1a8e999ad9", "", "", "Mondo Pong V2 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "44", "178", "", "", "" }, + { "1f60e48ad98b659a05ce0c1a8e999ad9", "", "", "Mondo Pong V2 (Piero Cavina) (PD)", "Uses the Paddle Controllers", "New Release", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "" }, + { "203049f4d8290bb4521cc4402415e737", "Tigervision", "7-007", "Polaris (1983) (Tigervision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "203b1efc6101d4b9d83bb6cc1c71f67f", "Starsoft", "", "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "20edcc3aa6c189259fa7e2f044a99c49", "Spectravision", "SA-201", "Gangster Alley (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "205", "", "", "" }, + { "20edcc3aa6c189259fa7e2f044a99c49", "Spectravision", "SA-201", "Gangster Alley (1982) (Spectravision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "211fbbdbbca1102dc5b43dc8157c09b3", "Apollo", "AP 2009", "Final Approach (1982) (Apollo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "21299c8c3ac1d54f8289d88702a738fd", "K-Tel Vision", "", "Spider Maze (K-Tel Vision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "28", "215", "", "", "" }, + { "21299c8c3ac1d54f8289d88702a738fd", "K-Tel Vision", "", "Spider Maze (K-Tel Vision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "21a96301bb0df27fde2e7eefa49e0397", "Data Age", "DA 1003", "Sssnake (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "", "" }, + { "21a96301bb0df27fde2e7eefa49e0397", "Data Age", "DA 1003", "Sssnake (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "21d7334e406c2407e69dbddd7cec3583", "Activision", "AG-011", "Stampede (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "", "" }, + { "21d7334e406c2407e69dbddd7cec3583", "Activision", "AG-011", "Stampede (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "22319be7a640af5314ec3c482cceb676", "", "", "Joustpong (05-07-2002) (Kirk Israel) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "22abbdcb094d014388d529352abe9b4b", "Apollo", "", "Squoosh (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, + { "22abbdcb094d014388d529352abe9b4b", "Apollo", "", "Squoosh (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "2319922df4d0c820b3e5f15faa870cc3", "", "", "Battlezone (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "235436ab0832370e73677c9c6f0c8b06", "Jeff 'Yak' Minter", "", "Beast Invaders (double shot Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "24385ba7f5109fbe76aadc0a375de573", "CCE", "", "Xevious (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "26", "", "Yes", "", "" }, + { "24385ba7f5109fbe76aadc0a375de573", "CCE", "", "Xevious (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2450dfa1df70d12b60683185775efed8", "Jeffry Johnston", "", "Radial Pong - Version 7 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "247fa1a29ad90e64069ee13d96fea6d6", "CCE", "", "Radar (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, - { "24aff972d58990f9b88a6d787c796f1e", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "60", "205", "", "", "" }, + { "247fa1a29ad90e64069ee13d96fea6d6", "CCE", "", "Radar (CCE) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "24aff972d58990f9b88a6d787c796f1e", "Coleco", "2465", "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "48", "215", "", "", "" }, - { "25265d0e7f88b3026003809f25ee025e", "", "", "Jr. Pac-Man (1986) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "", "", "" }, + { "24df052902aa9de21c2b2525eb84a255", "Imagic", "IA3000", "Trick Shot (1982) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "2516f4f4b811ede4ecf6fbeb5d54a299", "Starsoft", "", "Schiessbude (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25265d0e7f88b3026003809f25ee025e", "", "", "Jr. Pac-Man (1986) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "25b52bf8dd215bcbd59c9abdb55c44f8", "", "", "Pole Position (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "43", "190", "", "", "" }, - { "25bb080457351be724aac8a02021aa92", "CBS Electronics", "", "Zaxxon (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "57", "220", "", "", "" }, + { "25b52bf8dd215bcbd59c9abdb55c44f8", "", "", "Pole Position (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "25bb080457351be724aac8a02021aa92", "CBS Electronics", "", "Zaxxon (1983) (CBS Electronics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "260c787e8925bf3649c8aeae5b97dcc0", "ITT Family Games / Thomas Jentzsch", "", "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "37", "209", "", "", "" }, + { "260c787e8925bf3649c8aeae5b97dcc0", "ITT Family Games / Thomas Jentzsch", "", "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, { "265a85f66544eaf95fda06c3d9e48abf", "", "", "Tunnel Demo (Cycling Colours) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "56", "192", "", "", "" }, + { "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "273ce50db5a0d6da7ea827a54f44dee9", "", "", "Island Flyer Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "40", "194", "Yes", "", "" }, + { "278f14887d601b5e5b620f1870bc09f6", "", "", "Swoops! (v0.96) (Thomas Jentzsch)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "27c6a2ca16ad7d814626ceea62fa8fb4", "Parker Bros", "PB5590", "Frogger II - Threedeep! (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2825f4d068feba6973e61c84649489fe", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "220", "", "", "" }, + { "2825f4d068feba6973e61c84649489fe", "Activision", "AX-029", "Crackpots (1983) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "28a4cd87fb9de4ee91693a38611cb53c", "", "", "Skeleton (V1.1) (NTSC) (24-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2399,65 +2399,65 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "29396db58406084e416032c372734a3e", "", "", "Gunfight 2600 - Fixed Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "294762000e853b4319f9991c1ced5dfc", "", "", "T.F. Space Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, - { "29630a20d356fb58685b150bfa8f00c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "", "" }, + { "29396db58406084e416032c372734a3e", "", "", "Gunfight 2600 - Fixed Beta Release! (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "294762000e853b4319f9991c1ced5dfc", "", "", "T.F. Space Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "29630a20d356fb58685b150bfa8f00c3", "Mattel", "MT5687", "International Soccer (1982) (Mattel) [a1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2982e655dffc89d218a0a3072cfc6811", "", "", "Mini Golf 812631 (Miniature Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2a156728c0123034bd73e25bf8c70a88", "Tigervision", "7-005", "Marauder (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "", "", "" }, + { "2a156728c0123034bd73e25bf8c70a88", "Tigervision", "7-005", "Marauder (1982) (Tigervision) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2a360bc85bf22de438651cf92ffda1de", "", "", "Spy vs. Spy (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "193", "", "", "" }, + { "2a360bc85bf22de438651cf92ffda1de", "", "", "Spy vs. Spy (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "" }, + { "2ac3a08cfbf1942ba169c3e9e6c47e09", "Absolute", "AK-046", "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2b27eb194e13f3b38d23c879cc1e3abf", "Starsoft", "SS-011", "Super Ferrari (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2bb9f4686f7e08c5fcc69ec1a1c66fe7", "", "CX2688", "Jungle Hunt (1982) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "", "" }, - { "2bc6c53b19e0097a242f22375a6a60ff", "", "", "Droid Demo 2 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" }, - { "2bee7f226d506c217163bad4ab1768c0", "Xonox", "99002", "Ghost Manor (1983) (Xonox) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "2bb9f4686f7e08c5fcc69ec1a1c66fe7", "", "CX2688", "Jungle Hunt (1982) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2bc6c53b19e0097a242f22375a6a60ff", "", "", "Droid Demo 2 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2bee7f226d506c217163bad4ab1768c0", "Xonox", "99002", "Ghost Manor (1983) (Xonox) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2c1ed379ff4e9d3b933ed44c9fbe7ffa", "Spiceware", "SW-01", "Medieval Mayhem (NTSC)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "2c45c3eb819a797237820a1816c532eb", "Atari", "", "Boxing (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2c8c11295d8613f875b7bcf5253ab9bb", "", "", "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "2cb42cf62b2f25f59f909b5447821b14", "", "", "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2d2c5f0761e609e3c5228766f446f7f8", "Atari", "CX26170", "Secret Quest (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "136", "42", "194", "", "", "" }, + { "2d2c5f0761e609e3c5228766f446f7f8", "Atari", "CX26170", "Secret Quest (1989) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2d6da0eb85eabc93270e5bb8a466ca51", "", "", "Sprite Demo 7 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2d9e5d8d083b6367eda880e80dfdfaeb", "Selchow", "87", "Glib (1983) (Selchow & Righter)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "195", "", "", "" }, + { "2d9e5d8d083b6367eda880e80dfdfaeb", "Selchow", "87", "Glib (1983) (Selchow & Righter)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2dbc92688f9ba92a7e086d62be9df79d", "", "", "How to Draw a Playfield (1997) (Jim Crawford) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2e2885e68fa1045871ce1382b68f6efc", "", "", "Star Fire - Return of the Crosshair (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2e5b184da8a27c4d362b5a81f0b4a68f", "Atari", "", "Rabbit Transit (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "198", "", "", "" }, + { "2e5b184da8a27c4d362b5a81f0b4a68f", "Atari", "", "Rabbit Transit (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "2e7e9c6dcfcceaffc6fa73f0d08a402a", "", "", "Star Voyager (1982) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2f0a8bb4e18839f9b1dcaa2f5d02fd1d", "CCE", "CX2668", "Super Futebol (American Style) (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "", "" }, + { "2f0a8bb4e18839f9b1dcaa2f5d02fd1d", "CCE", "CX2668", "Super Futebol (American Style) (CCE)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "2f16663b01591539624d0ef52934a17d", "M Network", "", "Rocky and Bullwinkle", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "2f2f9061398a74c80420b99ddecf6448", "Rentacom", "", "Bobby is Going Home (Rentacom) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "28", "228", "", "", "" }, + { "2f2f9061398a74c80420b99ddecf6448", "Rentacom", "", "Bobby is Going Home (Rentacom) (Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "31", "", "", "", "" }, { "2f77f015fc880b05f28e84156f989a0c", "", "", "Plane Demo (Gonzalo) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "304512528a5530a9361e8a231ed9a6de", "Activision / Thomas Jentzsch", "", "River Raid Plus by Thomas Jentzsch (River Raid Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, - { "30516cfbaa1bc3b5335ee53ad811f17a", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, - { "30685b9b6ebd9ba71536dd7632a1e3b6", "Dactar", "", "Tennis (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "", "", "", "" }, + { "304512528a5530a9361e8a231ed9a6de", "Activision / Thomas Jentzsch", "", "River Raid Plus by Thomas Jentzsch (River Raid Hack)", "Hack of River Raid (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30516cfbaa1bc3b5335ee53ad811f17a", "Wizard Video", "007", "Halloween (AKA Sexta Fiera 13) (Wizard Video) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "30685b9b6ebd9ba71536dd7632a1e3b6", "Dactar", "", "Tennis (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2465,7 +2465,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "31512cdfadfd82bfb6f196e3b0fd83cd", "Tigervision", "7-004", "River Patrol (1984) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "192", "", "", "" }, + { "31512cdfadfd82bfb6f196e3b0fd83cd", "Tigervision", "7-004", "River Patrol (1984) (Tigervision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2481,7 +2481,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "327468d6c19697e65ab702f06502c7ed", "", "", "Aster-Hawk (2002) (Charles Morgan) (Asteroids Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "327fe8cf94f3a45c35a840a453df1235", "", "", "Spice Girls Rule Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "32e65d1e4dfcbcd9b57fee72cafe074c", "", "", "Eckhard Stolberg's Scrolling Text Demo 3 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "38", "191", "", "", "" }, + { "32e65d1e4dfcbcd9b57fee72cafe074c", "", "", "Eckhard Stolberg's Scrolling Text Demo 3 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2489,13 +2489,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3349fbd01dde378b31f72bd8dc793dc5", "", "", "Greeting Cart (RSIDDALL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3367eeba3269aa04720abe6169767502", "", "", "Space Treat (30-12-2002) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "33ed6dfac4b9ea2f81f778ceddbb4a75", "Activision", "", "River Raid (1982) (SpkSoft) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, + { "33ed6dfac4b9ea2f81f778ceddbb4a75", "Activision", "", "River Raid (1982) (SpkSoft) [t1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "346555779a2d51b48833463b5433472f", "", "", "Thrust (V0.1) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "346555779a2d51b48833463b5433472f", "", "", "Thrust (V0.1) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34b269387fa1aa5a396636f5ecdd63dd", "", "", "Marble Craze (mc7_23) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "34e37eaffc0d34e05e40ed883f848b40", "Retroactive", "", "Qb (2.15) (Retroactive) (Stella)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "35163b56f4a692a232ae96ad3e23310f", "Retroactive", "", "Qb (2.12) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -2513,8 +2513,8 @@ 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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "207", "", "", "" }, + { "36c31bb5daeb103f488c66de67ac5075", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "36edef446ab4c2395666efc672b92ed0", "Atari", "", "Off the Wall (1989) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2522,19 +2522,19 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "37fd7fa52d358f66984948999f1213c5", "Suntek", "4", "Pyramid War (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "67", "183", "", "", "" }, + { "37fd7fa52d358f66984948999f1213c5", "Suntek", "4", "Pyramid War (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3882224adbd0ca7c748b2a1c9b87263e", "", "", "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "3882224adbd0ca7c748b2a1c9b87263e", "", "", "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38bd172da8b2a3a176e517c213fcd5a6", "Atari", "MAO17600", "Test Tape - Standalone (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "38cf93eacfb2fa9a2c5e39059ff35a74", "", "", "WacMan (2003) (Greg Zumwalt) (Ms. Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "392d34c0498075dd58df0ce7cd491ea2", "Atari", "CX2686", "Quadrun (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "393948436d1f4cc3192410bb918f9724", "Activision", "AX-020", "River Raid (1982) (Activision) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, - { "396f7bc90ab4fa4975f8c74abe4e81f0", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "33", "211", "", "", "" }, - { "39a6a5a2e1f6297cceaa48bb03af02e9", "", "", "Pitfall 2 Plus (Pitfall 2 Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "", "" }, + { "393948436d1f4cc3192410bb918f9724", "Activision", "AX-020", "River Raid (1982) (Activision) [a1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "396f7bc90ab4fa4975f8c74abe4e81f0", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari)", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, + { "39a6a5a2e1f6297cceaa48bb03af02e9", "", "", "Pitfall 2 Plus (Pitfall 2 Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2550,17 +2550,17 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3b64a00ce147c3c29f7f8f8e531d08d8", "", "", "This Planet Sucks (16K) (Greg Troutman)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "", "" }, + { "3b64a00ce147c3c29f7f8f8e531d08d8", "", "", "This Planet Sucks (16K) (Greg Troutman)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3b6dba1a24bb2893bd3bd0593f92016b", "CBS Electronics / Thomas Jentzsch", "", "Omega Race JS (TJ)", "Hack of Omega Race (CBS Electronics)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3b80b8f52a0939e16b5059f93a3fc19a", "V007", "", "Virtual Pet (V007) (after Demo 2) (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "195", "", "", "" }, + { "3b80b8f52a0939e16b5059f93a3fc19a", "V007", "", "Virtual Pet (V007) (after Demo 2) (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3b9480bb6fb1e358c9c0a64e86945aee", "", "", "Title Match Pro Wrestling (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "", "" }, + { "3b9480bb6fb1e358c9c0a64e86945aee", "", "", "Title Match Pro Wrestling (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c7a96978f52b2b15426cdd50f2c4048", "", "", "Overhead Adventure Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3c853d864a1d5534ed0d4b325347f131", "Telesys", "1002", "Cosmic Creeps (1982) (Telesys)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3caa902ac0ce4509308990645876426a", "Atari", "CX2669", "Vanguard (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "3caa902ac0ce4509308990645876426a", "Atari", "CX2669", "Vanguard (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3cdd91e1c28d28e856c0063d602da166", "", "", "Stell-A-Sketch (03-11-1997) (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2571,9 +2571,9 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3d9c2fccf8b11630762ff00811c19277", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "63", "195", "", "", "" }, + { "3d9c2fccf8b11630762ff00811c19277", "Spectravideo", "SA-206", "Challenge of...NEXAR (1982) (Spectravideo) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3dfb7c1803f937fadc652a3e95ff7dc6", "Dimax", "SM8001", "Space Robot (AKA Robot Fight) (Dimax)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "3e1682ddaec486d8b6b90b527aaa0fc4", "Thomas Jentzsch", "", "Robot City (V0.12) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, + { "3e1682ddaec486d8b6b90b527aaa0fc4", "Thomas Jentzsch", "", "Robot City (V0.12) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3e5ca1afaa27c5da3c54c9942fec528b", "", "", "2600 Digital Clock (Demo 2) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "3e899eba0ca8cd2972da1ae5479b4f0d", "Coleco", "2457", "Venture (1982) (Coleco) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -2583,10 +2583,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f251c50aa7237e61a38ab42315ebed4", "Atari / Thomas Jentzsch", "", "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "197", "", "", "" }, + { "3f251c50aa7237e61a38ab42315ebed4", "Atari / Thomas Jentzsch", "", "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "3f58f972276d1e4e0e09582521ed7a5b", "Xonox", "99003", "Chuck Norris Superkicks (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "195", "", "", "" }, - { "3f6dbf448f25e2bd06dea44248eb122d", "", "MT5687", "Championship Soccer (AKA Pele's Soccer) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "195", "", "", "" }, + { "3f58f972276d1e4e0e09582521ed7a5b", "Xonox", "99003", "Chuck Norris Superkicks (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "3f6dbf448f25e2bd06dea44248eb122d", "", "MT5687", "Championship Soccer (AKA Pele's Soccer) [p1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2597,7 +2597,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4066d7d88ec4a2c656127a67fa52dcf1", "", "", "Overhead Adventure Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "213", "", "", "" }, + { "4066d7d88ec4a2c656127a67fa52dcf1", "", "", "Overhead Adventure Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2606,9 +2606,9 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4181087389a79c7f59611fb51c263137", "", "", "Miss Piggy's Wedding (Prototype 2) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "25", "208", "", "", "" }, + { "4181087389a79c7f59611fb51c263137", "", "", "Miss Piggy's Wedding (Prototype 2) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "41818738ab1745e879024a17784d71f5", "", "", "Atlantis (1982) (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4191b671bcd8237fc8e297b4947f2990", "Exus", "", "Video Jogger (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "200", "", "", "" }, + { "4191b671bcd8237fc8e297b4947f2990", "Exus", "", "Video Jogger (Exus) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42249ec8043a9a0203dde0b5bb46d8c4", "CCE", "", "Resgate Espacial (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2617,31 +2617,31 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "428b2d36f5d716765460701f7016ac91", "", "", "Brooni (NTSC) (2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "42cdd6a9e42a3639e190722b8ea3fc51", "Activision", "AG-007", "Tennis (1981) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "", "" }, + { "42cdd6a9e42a3639e190722b8ea3fc51", "Activision", "AG-007", "Tennis (1981) (Activision) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "42e8d67213227dee01e72c788712c002", "", "", "Greeting Cart Amy in thong (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "43e6c5159c3a093fca88656628c6ef34", "", "", "Star Fire (17-02-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "43f8459d39fb4eddf9186d62722ff795", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, - { "442b7863683e5f084716fda050474feb", "Eckhard Stolberg", "", "Frame Timed Sound Effects-EM (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, + { "43f8459d39fb4eddf9186d62722ff795", "", "", "Skeleton+ (17-04-2003) (Eric Ball) (PAL)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "442b7863683e5f084716fda050474feb", "Eckhard Stolberg", "", "Frame Timed Sound Effects-EM (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "45027dde2be5bdd0cab522b80632717d", "Epyx", "8056100250", "Summer Games (1987) (Epyx)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "42", "200", "", "", "" }, + { "45027dde2be5bdd0cab522b80632717d", "Epyx", "8056100250", "Summer Games (1987) (Epyx)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4565c1a7abce773e53c75b35414adefd", "Starpath", "", "SuperCharger Loader (1982) (Starpath) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "45cb0f41774b78def53331e4c3bf3362", "US Games", "VC 1007", "Name This Game (AKA Octopus) (1982) (US Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "250", "", "", "" }, + { "45cb0f41774b78def53331e4c3bf3362", "US Games", "VC 1007", "Name This Game (AKA Octopus) (1982) (US Games) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4689081b7363721858756fe781cc7713", "", "", "Oystron (V2.6) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "4689081b7363721858756fe781cc7713", "", "", "Oystron (V2.6) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "46c021a3e9e2fd00919ca3dd1a6b76d8", "Atari", "CX2629", "Sky Diver (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "38", "222", "", "", "" }, + { "46c021a3e9e2fd00919ca3dd1a6b76d8", "Atari", "CX2629", "Sky Diver (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2659,12 +2659,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "48bcf2c5a8c80f18b24c55db96845472", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "49", "190", "", "", "" }, + { "48bcf2c5a8c80f18b24c55db96845472", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "48eb1fcde4caf6a2dce059c98bd2e375", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4904a2550759b9b4570e886374f9d092", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "220", "", "", "" }, + { "4904a2550759b9b4570e886374f9d092", "Parker Bros", "PB5330", "Reactor (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "493de059b32f84ab29cde6213964aeee", "Atari", "CX26120", "Stargate (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "195", "", "", "" }, + { "493de059b32f84ab29cde6213964aeee", "Atari", "CX26120", "Stargate (1984) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4947c9de2e28b2f5f3b0c40ce7e56d93", "", "", "3-D Corridor Demo 2 (29-03-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "497f3d2970c43e5224be99f75e97cbbb", "CommaVid", "", "Video Life (CommaVid)", "", "Extremely Rare", "", "CV", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2679,10 +2679,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4b27f5397c442d25f0c418ccdacf1926", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "60", "194", "", "", "" }, + { "4b27f5397c442d25f0c418ccdacf1926", "Atari", "CX2613 / 4975154", "Adventure (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "None", "", "", "", "", "", "", "", "", "" }, { "4b8e76a294a04036168f5b13c64911d2", "", "", "Moon Patrol (1982) (Shock Vision-Brazil) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4baada22435320d185c95b7dd2bcdb24", "Atari", "CX2682", "Krull (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "35", "196", "", "", "" }, - { "4c030667d07d1438f0e5c458a90978d8", "Retroactive", "", "Qb (V2.03) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "4baada22435320d185c95b7dd2bcdb24", "Atari", "CX2682", "Krull (1983) (Atari) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "4c030667d07d1438f0e5c458a90978d8", "Retroactive", "", "Qb (V2.03) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "59", "", "", "", "" }, + { "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "4d8396deeabb40b5e8578276eb5a8b6d", "Starsoft", "", "Volleyball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "52", "200", "", "", "" }, + { "4e02880beeb8dbd4da724a3f33f0971f", "Imagic", "EIZ-002-04", "Wing War (Imagic) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4e37992a37ea36489283f7eb90913bbc", "", "", "Hangman Ghost Halloween (Kris) (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4f0071946e80ca68edfdccbac86dcce0", "", "", "Virtual Pet Demo 1 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "196", "", "", "" }, + { "4f0071946e80ca68edfdccbac86dcce0", "", "", "Virtual Pet Demo 1 (CRACKERS) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "4f634893d54e9cabe106e0ec0b7bdcdf", "Retroactive", "", "Qb (2.14) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "4f634893d54e9cabe106e0ec0b7bdcdf", "Retroactive", "", "Qb (2.14) (Retroactive) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "4f82d8d78099dd71e8e169646e799d05", "Atari", "", "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "4fae08027365d31c558e400b687adf21", "", "", "Qb (V2.17) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2723,30 +2723,30 @@ static const char* DefProps[][23] = { { "50dd164c77c4df579843baf838327469", "Champ Games", "", "Conquest Of Mars", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "515046e3061b7b18aa3a551c3ae12673", "Atari", "CX2692", "Moon Patrol (1983) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "517592e6e0c71731019c0cebc2ce044f", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "51e390424f20e468d2b480030ce95d7b", "Video Game Program", "", "Fire Bird (Video Game Program) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "522c9cf684ecd72db2f85053e6f6f720", "Rainbow Vision", "", "Year 1999, The (Rainbow Vision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, + { "528400fad9a77fd5ad7fc5fdc2b7d69d", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "52b448757081fd9fabf859f4e2f91f6b", "20th Century Fox", "", "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5336f86f6b982cc925532f2e80aa1e17", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "35", "200", "Yes", "", "" }, + { "5336f86f6b982cc925532f2e80aa1e17", "Parker Bros", "PB5060", "Star Wars - Death Star Battle (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "539b7038acec0ccedeae40f238998579", "", "", "Star Fire (25-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "53b66f11f67c3b53b2995e0e02017bd7", "CCE", "", "RealSports Tennis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "53b66f11f67c3b53b2995e0e02017bd7", "CCE", "", "RealSports Tennis (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5428cdfada281c569c74c7308c7f2c26", "Activision", "AG-010", "Kaboom! (1981) (Activision) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "8", "144", "41", "192", "", "", "" }, - { "545048ccb045f9efc6cf2b125cd0dfa8", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "35", "200", "", "", "" }, + { "5428cdfada281c569c74c7308c7f2c26", "Activision", "AG-010", "Kaboom! (1981) (Activision) [!]", "Uses the Paddle Controllers (left only)", "Uncommon", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "545048ccb045f9efc6cf2b125cd0dfa8", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5494b9ee403d9757f0fd1f749e80214a", "", "", "Xenophobe Arcade (2003) (Larry Petit) (Xenophobe Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "54f7efa6428f14b9f610ad0ca757e26c", "Apollo", "AP 2005", "Shark Attack (1982) (Apollo)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "22", "219", "", "", "" }, + { "54f7efa6428f14b9f610ad0ca757e26c", "Apollo", "AP 2005", "Shark Attack (1982) (Apollo)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2755,22 +2755,22 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "562bf02f5031d51c6b53b03972a56b22", "", "", "Star Fire - Framework Done (30-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "5635cd67fb680424254ec156c42deee0", "Starsoft", "", "Motocross (Starsoft) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "56606b4d9109e2db36dea47cf7c8cca6", "Atari", "CX2694", "Pole Position (1983) (Atari) [b1]", "Game crashes after car starts first turn (bad rom dump)", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "568371fbae6f5e5b936af80031cd8888", "", "", "Robotfindskitten2600 (26-04-2003) (Jeremy Penner)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "57fa2d09c9e361de7bd2aa3a9575a760", "Atari", "CX26120", "Stargate (1984) (Atari) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, - { "5846b1d34c296bf7afc2fa05bbc16e98", "", "CX2643 / 99815", "Code Breaker (1978) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "33", "", "", "", "" }, + { "57fa2d09c9e361de7bd2aa3a9575a760", "Atari", "CX26120", "Stargate (1984) (Atari) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5846b1d34c296bf7afc2fa05bbc16e98", "", "CX2643 / 99815", "Code Breaker (1978) (Atari)", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "585600522b1f22f617652c962e358a5d", "", "", "Multi-Sprite Game V2.2 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5894c9c0c1e7e29f3ab86c6d3f673361", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, - { "58a82e1da64a692fd727c25faef2ecc9", "CCE", "7-002", "Jawbreaker (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "5894c9c0c1e7e29f3ab86c6d3f673361", "Activision", "AZ-033", "Space Shuttle - Journey Into Space (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "58a82e1da64a692fd727c25faef2ecc9", "CCE", "7-002", "Jawbreaker (1982) (CCE)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "58d331c23297ed98663d11b869636f16", "", "", "Fu Kung! (V0.09) (26-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5961d259115e99c30b64fe7058256bcf", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "5961d259115e99c30b64fe7058256bcf", "CosmoVision-Universal Gamex", "GX-001", "X-Man (1983) (CosmoVision-Universal Gamex)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2781,7 +2781,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5a9d188245aff829efde816fcade0b16", "CCE", "", "Phantom Tank (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, + { "5a9d188245aff829efde816fcade0b16", "CCE", "", "Phantom Tank (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2790,32 +2790,32 @@ 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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "222", "", "", "" }, - { "5bbab3f3e4b47e3e23f9820765dbb45c", "", "", "Pitfall! (says 1985) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, + { "5b92a93b23523ff16e2789b820e2a4c5", "Activision", "AX-039", "Kung Fu Master (1984) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5b9c2e0012fbfd29efd3306359bbfc4a", "HES", "", "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5bbab3f3e4b47e3e23f9820765dbb45c", "", "", "Pitfall! (says 1985) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5bcc83677d68f7ef74c1b4a0697ba2a8", "Activision", "AX-012", "Ice Hockey (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5be03a1fe7b2c114725150be04b38704", "Atari", "", "Hunt & Score (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "", "", "", "" }, + { "5be03a1fe7b2c114725150be04b38704", "Atari", "", "Hunt & Score (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5c73693a89b06e5a09f1721a13176f95", "", "", "Wavy Line Test 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "21", "211", "", "", "" }, + { "5c73693a89b06e5a09f1721a13176f95", "", "", "Wavy Line Test 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5d1260152596d91adc8cf5741adb719a", "", "", "Death Derby (200204) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5d8f1ab95362acdf3426d572a6301bf2", "", "", "Swoops! (v0.96) (Thomas Jentzsch) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "40", "240", "", "", "" }, + { "5d8f1ab95362acdf3426d572a6301bf2", "", "", "Swoops! (v0.96) (Thomas Jentzsch) (PAL)", "Uses the Joystick (L) and Paddle (R) Controllers", "", "", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5e1b4629426f4992cf3b2905a696e1a7", "Activision", "AK-049", "Rampage! (1989) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "12", "136", "37", "200", "", "", "" }, + { "5e1b4629426f4992cf3b2905a696e1a7", "Activision", "AK-049", "Rampage! (1989) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "5e2928f089490017e88e9f9e5a881a25", "", "", "Star Fire - Faster Skipping 1 (24-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f1b7d5fa73aa071ba0a3c2819511505", "CCE", "", "Cosmic Commuter (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "192", "", "", "" }, + { "5f1b7d5fa73aa071ba0a3c2819511505", "CCE", "", "Cosmic Commuter (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2823,42 +2823,42 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "5f786b67e05fb9985b77d4beb35e06ee", "Atari", "", "Defender II (1984) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "5faffe1c4c57430978dec5ced32b9f4a", "Dactar", "", "Volleyball (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "200", "", "", "" }, + { "5f786b67e05fb9985b77d4beb35e06ee", "Atari", "", "Defender II (1984) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "5faffe1c4c57430978dec5ced32b9f4a", "Dactar", "", "Volleyball (Dactar) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "600d48eef5c0ec27db554b7328b3251c", "", "", "Bars and Text Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "60345ae60f7c7010346de7aff9bfe6ea", "Activision", "", "Atlantis (1982) (Activision) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "49", "185", "", "", "" }, + { "60345ae60f7c7010346de7aff9bfe6ea", "Activision", "", "Atlantis (1982) (Activision) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "605fd59bfef88901c8c4794193a4cbad", "Data Age", "", "Secret Agent (Data Age) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "220", "", "", "" }, + { "605fd59bfef88901c8c4794193a4cbad", "Data Age", "", "Secret Agent (Data Age) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "60bbd425cb7214ddb9f9a31948e91ecb", "Activision", "AG-005", "Skiing (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, + { "60bbd425cb7214ddb9f9a31948e91ecb", "Activision", "AG-005", "Skiing (1980) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "61426cee013306e7f7367534ab124747", "", "", "One Blue Bar Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, + { "61426cee013306e7f7367534ab124747", "", "", "One Blue Bar Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "61621a556ad3228f0234f5feb3ab135c", "", "", "Fu Kung! (V0.05 Cuttle Card Compattle Revision) (14-01-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "61719a8bdafbd8dab3ca9ce7b171b9e2", "Activision", "AX-026", "Enduro (1983) (Activision-Dactar) (PAL-M) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "12", "140", "64", "205", "", "", "" }, - { "619de46281eb2e0adbb98255732483b4", "", "", "UFO Patrol (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, + { "61719a8bdafbd8dab3ca9ce7b171b9e2", "Activision", "AX-026", "Enduro (1983) (Activision-Dactar) (PAL-M) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "619de46281eb2e0adbb98255732483b4", "", "", "UFO Patrol (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "624e0a77f9ec67d628211aaf24d8aea6", "Panda", "108", "Sea Hawk (1987) (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "202", "", "", "" }, + { "624e0a77f9ec67d628211aaf24d8aea6", "Panda", "108", "Sea Hawk (1987) (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "62921652f6634eb1a0940ed5489c7e18", "", "", "SCSIcide (V1.09) (2001) (Joe Grand)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "62f74a2736841191135514422b20382d", "TechnoVision", "", "Pharoah's Curse (TechnoVision) (PAL) [p2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "22", "225", "Yes", "", "" }, + { "62f74a2736841191135514422b20382d", "TechnoVision", "", "Pharoah's Curse (TechnoVision) (PAL) [p2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6339d28c9a7f92054e70029eb0375837", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "39", "187", "Yes", "", "" }, + { "6339d28c9a7f92054e70029eb0375837", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "6354f9c7588a27109c66905b0405825b", "", "", "Amidar DS (2003) (TJ) (Amidar Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6362396c8344eec3e86731a700b13abf", "Panda", "109", "Exocet (AKA Space Eagle) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "197", "", "", "" }, + { "6362396c8344eec3e86731a700b13abf", "Panda", "109", "Exocet (AKA Space Eagle) (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "639ded0c9e53bc3f91defb5dde930286", "Starpath", "", "SuperCharger - Escape from the Mindmaster (4 of 4) (1982) (Starpath) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) [!]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, + { "63a7445b1d3046d3cdcdbd488dca38d9", "Rob Kudla", "", "Better Space Invaders (1999) (Rob Kudla) [!]", "Hack of Space Invaders (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, + { "63e783994df824caf289b69a084cbf3e", "David Marli", "", "Fat Albert by David Marli (Fast Food Hack)", "Hack of Fast Food (Telesys)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "640a08e9ca019172d612df22a9190afb", "Atari", "CX2691", "Joust (1982) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2887,14 +2887,14 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "668dc528b7ea9345140f4fcfbecf7066", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "33", "256", "", "", "" }, + { "668dc528b7ea9345140f4fcfbecf7066", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "66c2380c71709efa7b166621e5bb4558", "Parker Bros", "", "Tutankham (1983) (Parker Bros) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "67684a1d18c85ffa5d82dab48fd1cb51", "Tigervision", "7-003", "Threshold (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "46", "215", "", "", "" }, + { "67684a1d18c85ffa5d82dab48fd1cb51", "Tigervision", "7-003", "Threshold (1982) (Tigervision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2904,13 +2904,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6803fa7c2c094b428b859a58dc1dd06a", "Retroactive", "", "Qb (0.11) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "683bb0d0f0c5df58557fba9dffc32c40", "Starpath", "AR-4300", "Fireball (1982) (Starpath) [a1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "8", "136", "32", "200", "", "", "" }, - { "68449e4aaba677abcd7cde4264e02168", "", "", "Horizonal Color Bars Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, + { "683bb0d0f0c5df58557fba9dffc32c40", "Starpath", "AR-4300", "Fireball (1982) (Starpath) [a1]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, + { "68449e4aaba677abcd7cde4264e02168", "", "", "Horizonal Color Bars Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "687c23224e26f81c56e431c24faea36d", "", "", "Qb (Simple Background Animation) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "68c80e7e1d30df98a0cf67ecbf39cc67", "Hozer Video Games", "", "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "229", "", "", "" }, + { "68c80e7e1d30df98a0cf67ecbf39cc67", "Hozer Video Games", "", "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "68feb6d6ff63e80df1302d8547979aec", "", "", "Starfield Demo 2 (20-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "692202772d8b38ccf85a90c8003a1324", "", "", "Zi - The Flie Buster (2002) (Fernando Mora) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2919,33 +2919,33 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "69fac82cd2312dd9ce5d90e22e2f070a", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, + { "69fac82cd2312dd9ce5d90e22e2f070a", "Spectravision", "SA-202", "Planet Patrol (1982) (Spectravision) (PAL) [p2][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6a091b8ffeacd0939850da2094b51564", "", "", "Vertically Scrolling Playfield (02-02-2003) (Aaron Bergstrom)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6a76d5f0ed721639474aa9bbde69ebf0", "", "", "Play Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6a76d5f0ed721639474aa9bbde69ebf0", "", "", "Play Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "41", "245", "", "", "" }, + { "6ae4dc6d7351dacd1012749ca82f9a56", "Atari", "CX26125 (label says CX26127 on some)", "Track and Field (1984) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6b1fc959e28bd71aed7b89014574bdc2", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "227", "", "", "" }, - { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "", "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "50", "240", "", "", "" }, + { "6bb09bc915a7411fe160d0b2e4d66047", "Atari", "", "Space Jockey (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6c1553ca90b413bf762dfc65f2b881c7", "ITT Family Games", "", "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6c449db9bbbd90972ad1932d6af87330", "", "", "20 Sprites at Once Demo 3 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "50", "235", "", "", "" }, + { "6c76fe09aa8b39ee52035e0da6d0808b", "Atari", "CX2622", "Breakout - Breakaway IV (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "59", "202", "Yes", "", "" }, + { "6ccd8ca17a0e4429b446cdcb66327bf1", "", "", "RPG Engine (12-05-2003) (Paul Slocum) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, + { "6cd506509e8fd5627f55603780e862a8", "Greg Troutman", "", "Dark Mage (SuperCharger) (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "6cf054cd23a02e09298d2c6f787eb21d", "Parker Bros", "PB5540", "Star Wars - The Arcade Game (1983) (Parker Bros) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "45", "", "", "", "" }, + { "6d842c96d5a01967be9680080dd5be54", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b3]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "6d9afd70e9369c2a6bff96c4964413b7", "Funvision", "", "Time Race 2 (Funvision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -2960,53 +2960,53 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f6c7f37926c574c6b76e5a665fd26e7", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) (PAL) [b1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "6f75d72e4cf996100ccdd163d57bdac2", "", "", "Star Fire (200203) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fac680fc9a72e0e54255567c72afe34", "Atari", "", "Superman (1978) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, + { "6fac680fc9a72e0e54255567c72afe34", "Atari", "", "Superman (1978) (Atari) (PAL) [p2][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "6fd7c7057eeab273b29c7aafc7429a96", "Activision", "AX-018", "Pitfall! (1982) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "148", "40", "195", "", "", "" }, + { "6fd7c7057eeab273b29c7aafc7429a96", "Activision", "AX-018", "Pitfall! (1982) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "705fe719179e65b0af328644f3a04900", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari) [h1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "", "" }, + { "705fe719179e65b0af328644f3a04900", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari) [h1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "707ecd80030e85751ef311ced66220bc", "", "", "Double-Height 6-Digit Score Display (Background Color Change) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "49", "220", "", "", "" }, - { "7187118674ff3c0bb932e049d9dbb379", "Zirok", "", "Keystone Keypers (Zirok) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "39", "196", "", "", "" }, + { "70ce036e59be92821c4c7fd735ec6f68", "", "AX-031", "Frostbite (1983) (Activision) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "712924a2c7b692f6e7b009285c2169a7", "Starpath", "AR-4102", "Suicide Mission (no title screen) (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "71464c54da46adae9447926fdbfc1abe", "Mattel", "MT5663", "Lock 'N' Chase (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "714e13c08508ee9a7785ceac908ae831", "HomeVision", "", "Parachute (HomeVision) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7187118674ff3c0bb932e049d9dbb379", "Zirok", "", "Keystone Keypers (Zirok) (Brazil) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "71f8bacfbdca019113f3f0801849057e", "Atari", "", "Elevator Action (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "721a5567f76856f6b50a6707aa8f8316", "", "", "Ghostbusters (1985) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "197", "", "", "" }, - { "724613effaf7743cbcd695fab469c2a8", "Quelle", "", "Super Ferrari (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "204", "", "", "" }, + { "721a5567f76856f6b50a6707aa8f8316", "", "", "Ghostbusters (1985) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "724613effaf7743cbcd695fab469c2a8", "Quelle", "", "Super Ferrari (Quelle)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "72a46e0c21f825518b7261c267ab886e", "Xonox", "99005", "Robin Hood (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "25", "225", "", "", "" }, - { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "32", "", "", "", "" }, + { "72a46e0c21f825518b7261c267ab886e", "Xonox", "99005", "Robin Hood (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "72b8dc752befbfb3ffda120eb98b2dd0", "Parker Bros", "PB5550", "Q-bert's Qubes (1983) (Parker Bros)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "73521c6b9fed6a243d9b7b161a0fb793", "Atari", "", "Miniature Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "256", "", "", "" }, + { "73521c6b9fed6a243d9b7b161a0fb793", "Atari", "", "Miniature Golf (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "73b4e8f8b04515d91937510e680214bc", "", "", "Rubik's Cube Demo 3 (24-12-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "73c839aff6a055643044d2ce16b3aaf7", "", "", "Starmaster (1982) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "73c839aff6a055643044d2ce16b3aaf7", "", "", "Starmaster (1982) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "7454786af7126ccc7a0c31fcf5af40f1", "Bitcorp", "PG203", "Phantom Tank (Bitcorp) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7481f0771bff13885b2ff2570cf90d7b", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "74f623833429d35341b7a84bc09793c0", "Froggo / Zellers", "FG 1007", "Cruise Missile (AKA Radar) (1982) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "753375d183c713cfa0aa7298d1f3067b", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "75511bb694662301c9e71df645f4b5a7", "Activision", "", "Stampede (1981) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "756ca07a65a4fbbedeb5f0ddfc04d0be", "Atari", "CX2629", "Sky Diver (1978) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7576dd46c2f8d8ab159d97e3a3f2052f", "", "", "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3015,10 +3015,10 @@ 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", "", "", "", "", "", "", "", "", "", "", "", "", "38", "200", "", "", "No" }, + { "76c685d1a60c0107aa54a772113a2972", "Starpath", "AR-4401", "Survival Island (3 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "76f53abbbf39a0063f24036d6ee0968a", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "188", "", "", "" }, - { "77057d9d14b99e465ea9e29783af0ae3", "Activision", "AG-001", "Dragster (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "76f53abbbf39a0063f24036d6ee0968a", "Mattel", "MT7045", "Bump 'N' Jump (1983) (Mattel)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "77057d9d14b99e465ea9e29783af0ae3", "Activision", "AG-001", "Dragster (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3026,13 +3026,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "784176346e9422733d55c427230e5bad", "Activision", "AG-041", "Title Match Pro Wrestling (1989) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "48", "182", "", "", "" }, + { "784176346e9422733d55c427230e5bad", "Activision", "AG-041", "Title Match Pro Wrestling (1989) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "787ebc2609a31eb5c57c4a18837d1aee", "Prescott", "", "Vault Assault (19xx) (Prescott)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "78963290052fd17c6c7998305ab3a6a0", "", "", "Push (V0.08) (2001) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "79004f84bdeee78d142e445057883169", "CCE", "", "Planet Patrol (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "43", "199", "", "", "" }, - { "7926083ad423ed685de3b3a04a914315", "Barry Laws Jr.", "", "Face Invaders 2 by Barry Laws Jr. (Space Invaders Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "27", "202", "", "", "" }, - { "7972e5101fa548b952d852db24ad6060", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "79004f84bdeee78d142e445057883169", "CCE", "", "Planet Patrol (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7926083ad423ed685de3b3a04a914315", "Barry Laws Jr.", "", "Face Invaders 2 by Barry Laws Jr. (Space Invaders Hack)", "Hack of Astroblast (Mattel)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7972e5101fa548b952d852db24ad6060", "Atari", "CX2627 / 6699841", "Human Cannonball (AKA Cannon Man) (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7991e1797e5e9f311fd957e62d889dff", "Joe Grand", "", "SCSIcide (v1.1) (2001) (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3043,19 +3043,19 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "7a09299f473105ae1ef3ad6f9f2cd807", "Atari", "CX2616", "Championship Soccer (AKA Pele's Soccer) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a5463545dfb2dcfdafa6074b2f2c15e", "20th Century Fox", "11007", "Turmoil (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7a64b5a6e90619c6aacf244cdd7502f8", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 1) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ab2f190d4e59e8742e76a6e870b567e", "Apollo", "AP 2008", "Guardian (1982) (Apollo)", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, - { "7ad257833190bc60277c1ca475057051", "Atari", "CX2668", "RealSports Football (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "200", "Yes", "", "" }, - { "7adbcf78399b19596671edbffc3d34aa", "Atari", "CX26152", "Super Baseball (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "7ad257833190bc60277c1ca475057051", "Atari", "CX2668", "RealSports Football (1982) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "7adbcf78399b19596671edbffc3d34aa", "Atari", "CX26152", "Super Baseball (1988) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7b3cf0256e1fa0fdc538caf3d5d86337", "CommaVid", "CM-009", "Stronghold (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, - { "7b5207e68ee85b16998bea861987c690", "Atari", "", "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "63", "", "", "", "" }, - { "7b79beb378d1b4471def90ceccf413de", "", "", "Pitfall Cupcake (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" }, + { "7b3cf0256e1fa0fdc538caf3d5d86337", "CommaVid", "CM-009", "Stronghold (CommaVid)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b5207e68ee85b16998bea861987c690", "Atari", "", "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "7b79beb378d1b4471def90ceccf413de", "", "", "Pitfall Cupcake (Pitfall Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7bc4fd254ec8c0a25a13f02fd3f762ff", "Retroactive", "", "Qb (V1.00) (Stella) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "7c4a499d343fca0cef2d59dd16af621a", "", "", "Poker Card Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3064,23 +3064,23 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7cd379da92c93679f3b6d2548617746a", "", "", "Demo Image Series #5 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7d3cdde63b16fa637c4484e716839c94", "CCE", "", "Road Runner (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "28", "194", "", "", "" }, + { "7d3cdde63b16fa637c4484e716839c94", "CCE", "", "Road Runner (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7dbc8fa2e488e3f6b87fbe0f76c5b89f", "Ed Federmeyer", "", "Sound X (1996) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "36", "185", "", "", "" }, + { "7dbc8fa2e488e3f6b87fbe0f76c5b89f", "Ed Federmeyer", "", "Sound X (1996) (Ed Federmeyer)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7e51a58de2c0db7d33715f518893b0db", "CBS Electronics", "4L-2738", "Mountain King (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "47", "186", "Yes", "", "" }, + { "7e51a58de2c0db7d33715f518893b0db", "CBS Electronics", "4L-2738", "Mountain King (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7e8aa18bc9502eb57daaf5e7c1e94da7", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics)", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "27", "", "", "", "" }, + { "7e8aa18bc9502eb57daaf5e7c1e94da7", "CBS Electronics", "M8774", "Wizard of Wor (1982) (CBS Electronics)", "Uses the Joystick Controllers (swapped)", "Rare", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, { "7ead257e8b5a44cac538f5f54c7a0023", "Xonox", "99006", "Sir Lancelot (1983) (Xonox)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7eba20c2291a982214cc7cbe8d0b47cd", "Imagic", "O3211", "Quick Step! (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "195", "", "", "" }, + { "7eba20c2291a982214cc7cbe8d0b47cd", "Imagic", "O3211", "Quick Step! (1983) (Imagic)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7ef74879d7cb9fa0ef161b91ad55b3bb", "CCE", "", "Vanguard (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3088,17 +3088,17 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "7f73ac39e5e3e13e40fd8ad885561a0f", "", "", "Star Fire - Warping Star (13-04-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7f9fbe3e00a21ea06e6ae5e0e5db2143", "", "", "Skate Boardin' (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "209", "", "", "" }, + { "7f9fbe3e00a21ea06e6ae5e0e5db2143", "", "", "Skate Boardin' (2002) (Skyworks) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "7ff53f6922708119e7bf478d7d618c86", "Starsoft", "", "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "219", "", "", "" }, + { "7ff53f6922708119e7bf478d7d618c86", "Starsoft", "", "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "807a8ff6216b00d52aba2dfea5d8d860", "John Payson", "", "Strat-O-Gems Deluxe", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "250", "", "", "" }, + { "807a8ff6216b00d52aba2dfea5d8d860", "John Payson", "", "Strat-O-Gems Deluxe", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "80e1410ec98089e0733cc09e584dba4b", "Dynamics", "", "Jumping Jack (Dynamics) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, + { "8101efafcf0af32fedda4579c941e6f4", "", "", "Okie Dokie (4K) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8108ad2679bd055afec0a35a1dca46a4", "Cooper Black", "", "Puzzled World (Cooper Black) (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3109,24 +3109,24 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "81f4f0285f651399a12ff2e2f35bab77", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, - { "82337e5fe0f418ca9484ca851dfc226a", "", "", "Robot City (V1.0) (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, - { "8290daea8391f96d7c8e1482e184d19c", "Eckhard Stolberg", "", "Frame Timed Sound Effects (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "36", "192", "", "", "" }, + { "81f4f0285f651399a12ff2e2f35bab77", "Starpath", "AR-4200", "Escape from the Mindmaster (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "82337e5fe0f418ca9484ca851dfc226a", "", "", "Robot City (V1.0) (Alpha) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8290daea8391f96d7c8e1482e184d19c", "Eckhard Stolberg", "", "Frame Timed Sound Effects (Eckhard Stolberg)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "82efe7984783e23a7c55266a5125c68e", "CCE", "", "Pizza Chef (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "834a2273e97aec3181ee127917b4b269", "Starsoft", "", "Die Hungrigen Froesche (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "202", "", "", "" }, + { "834a2273e97aec3181ee127917b4b269", "Starsoft", "", "Die Hungrigen Froesche (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "836b955663d013300eaaa39f2403068f", "", "", "Greeting Cart Moon(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "83f50fa0fbae545e4b88bb53b788c341", "", "CX2643 / 99815", "Code Breaker (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "33", "", "", "", "" }, + { "83f50fa0fbae545e4b88bb53b788c341", "", "CX2643 / 99815", "Code Breaker (1978) (Atari) [o1]", "Uses Keypad Controllers", "Uncommon", "", "", "", "", "", "", "Keyboard", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "84290e333ff7567c2380f179430083b8", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, - { "8454ed9787c9d8211748ccddb673e920", "Froggo", "", "Spiderdroid (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "4", "152", "40", "182", "", "", "" }, + { "84290e333ff7567c2380f179430083b8", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8454ed9787c9d8211748ccddb673e920", "Froggo", "", "Spiderdroid (1987) (Froggo)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "84ea80e31b306059f56fdce2f07b758f", "", "", "Death Derby (19-01-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "851cc1f3c64eaedd10361ea26345acea", "Activision", "AG-009", "Freeway (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" }, + { "851cc1f3c64eaedd10361ea26345acea", "Activision", "AG-009", "Freeway (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8530caaaf40acbdcd118c282b5f8a37a", "", "", "This Planet Sucks Demo 2 (Greg Troutman) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "853c11c4d07050c22ef3e0721533e0c5", "Activision", "", "Oink! (1983) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "853c11c4d07050c22ef3e0721533e0c5", "Activision", "", "Oink! (1983) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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,7 +3136,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8644352b806985efde499ae6fc7b0fec", "", "", "Mr. Postman (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "869abe0426e6e9fcb6d75a3c2d6e05d1", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "194", "", "", "" }, + { "869abe0426e6e9fcb6d75a3c2d6e05d1", "Activision", "", "Stampede (1981) (Activision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "86f5e55ca9a9bde7338a157570828e79", "", "", "Star Fire - Creating a Universe (09-09-2002) (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3144,37 +3144,37 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "87662815bc4f3c3c86071dc994e3f30e", "Intellivision Productions", "", "Sword Fight (2000) (Intellevision Productions)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "" }, + { "8786f229b974c393222874f73a9f3206", "", "", "Spider Fighter (1983) (Activision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "87bea777a34278d29b3b6029833c5422", "Tigervision / Thomas Jentzsch", "", "Polaris (1983) (Tigervision) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "87f020daa98d0132e98e43db7d8fea7e", "20th Century Fox", "11001", "Worm War I (1982) (20th Century Fox) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "88a6c9c88cb329ee5fa7d168bd6c7c63", "CCE", "CX2688", "Jungle Hunt (1982) (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "190", "", "", "" }, + { "88a6c9c88cb329ee5fa7d168bd6c7c63", "CCE", "CX2688", "Jungle Hunt (1982) (CCE)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "88d8a1accab58cf1abb043613cf185e9", "Ultravison", "", "Sabotage (Ultravison)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "88ed87c011f699dd27321dbe404db6c8", "Activision", "AX-029", "Crackpots (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "192", "", "", "" }, - { "890c13590e0d8d5d6149737d930e4d95", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "224", "", "", "" }, + { "88ed87c011f699dd27321dbe404db6c8", "Activision", "AX-029", "Crackpots (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "890c13590e0d8d5d6149737d930e4d95", "Atari", "CX2605 / 99822 / 75109", "Outlaw - GunSlinger (1978) (Atari)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "898748d5eaac3164b0391a64ae1e0e32", "", "", "Hangman Man 4letter (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "", "", "", "" }, - { "89afff4a10807093c105740c73e9b544", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "47", "230", "", "", "" }, + { "89a65b83203980d5d4d60f52a584a5b8", "", "", "Marble Craze (PAL) (02-02-2003) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "89afff4a10807093c105740c73e9b544", "Konami-Gakken", "", "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "39", "256", "", "", "" }, + { "8a6c84f481acf42abcb78ba5064ad755", "128-in-1 Junior Console", "", "Street Racer - Speedway II (1978) (Atari) (PAL) [p1][o1][!]", "Uses the Paddle Controllers (swapped)", "", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, + { "8a9d874a38608964f33ec0c35cab618d", "Chris Cracknell", "", "Rescue Bira Bira (Chris Cracknell) [!]", "Hack of Jungle Fever (Mystique)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "8aad33da907bed78b76b87fceaa838c1", "Atari", "", "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "260", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "8b40a9ca1cfcd14822e2547eaa9df5c1", "Parker Bros", "PB5360", "Q-bert (1983) (Parker Bros) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8b556c3d9ca8e5e6e665bd759b93ffae", "", "", "Synthcart (2002) (Paul Slocum) (PAL) [!]", "Uses Keypad Controllers", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "Yes", "", "" }, + { "8b7ca29a55432f886cee3d452fb00481", "Starpath", "AR-4201", "Sword of Saros (1983) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8bc0d2052b4f259e7a50a7c771b45241", "Xonox", "", "Tomarc the Barbarian (1983) (Xonox)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8c36ed2352801031516695d1eeefe617", "Epyx", "", "Winter Games (1987) (Epyx) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "56", "", "", "", "" }, + { "8c36ed2352801031516695d1eeefe617", "Epyx", "", "Winter Games (1987) (Epyx) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8ce9126066f2ddd5173e9f1f9ce1494e", "", "", "Missile Command (CX-22 Trackball) (NTSC) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, @@ -3183,47 +3183,47 @@ 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)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, - { "8e4fa8c6ad8d8dce0db8c991c166cdaa", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "8df4be9ddc54ac363b13dc57ceaf161a", "Atari / Scott Stilphen", "", "Asteroids SS (Asteroids Hack)", "Hack of Asteroids (Atari)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, + { "8e42674972d6805068fc653e014370fd", "", "", "Skeleton (PAL) (15-10-2002) (Eric Ball)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "8e4fa8c6ad8d8dce0db8c991c166cdaa", "Atari", "CX26114", "Pigs in Space starring Miss Piggy (1986) (Atari)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "8e822b39a71c84ac875f0107fb61d6f0", "", "", "Hangman Ghost Original Words (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravideo", "", "Tape Worm (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "215", "Yes", "", "" }, + { "8ed73106e2f42f91447fb90b6f0ea4a4", "Spectravideo", "", "Tape Worm (1982) (Spectravideo) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "8f60551db6d1535ef0030f155018c738", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [p1][o1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "62", "202", "", "", "" }, + { "8f60551db6d1535ef0030f155018c738", "Atari", "CX2604", "Space War (1978) (Atari) (PAL) [p1][o1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "Yes", "", "" }, + { "90578a63441de4520be5324e8f015352", "Bitcorp", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "914a8feaf6d0a1bbed9eb61d33817679", "Atari", "", "Freeway (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "63", "193", "", "", "" }, - { "91a3749ff7b7e72b7fa09e05396a0e7b", "", "", "Gunfight 2600 - Final Run Part 2 (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "914a8feaf6d0a1bbed9eb61d33817679", "Atari", "", "Freeway (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "91a3749ff7b7e72b7fa09e05396a0e7b", "", "", "Gunfight 2600 - Final Run Part 2 (2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "250", "Yes", "", "" }, - { "929e8a84ed50601d9af8c49b0425c7ea", "", "PG205", "Dancing Plates (1983) (BitCorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "42", "230", "Yes", "", "" }, + { "9222b25a0875022b412e8da37e7f6887", "Panda", "106", "Dice Puzzle (Panda)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "9281eccd7f6ef4b3ebdcfd2204c9763a", "Retroactive", "", "Qb (2.15) (Retroactive) (PAL)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "929e8a84ed50601d9af8c49b0425c7ea", "", "PG205", "Dancing Plates (1983) (BitCorp) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "92c5abb7a8bb1c3fc66c92ba353a3d21", "", "", "Star Fire - Sorting Fixed (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9333172e3c4992ecf548d3ac1f2553eb", "Gakken", "010", "Strategy X (1982) (Gakken) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "9333172e3c4992ecf548d3ac1f2553eb", "Gakken", "010", "Strategy X (1982) (Gakken) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "43", "256", "Yes", "", "" }, - { "936f555b4b1a2cd061b659ff63f4f5f2", "", "", "My Golf (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "62", "196", "", "", "" }, + { "9364ad51c321e0f15c96a8c0aff47ceb", "Atari", "CX2638 / 4975166", "Missile Command (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "936f555b4b1a2cd061b659ff63f4f5f2", "", "", "My Golf (1990) (HES) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "93acd5020ae8eb5673601e2edecbc158", "Chris Cracknell", "", "Video Time Machine (Chris Cracknell)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "93dc15d15e77a7b23162467f95a5f22d", "CCE", "", "Sky Jinks (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "195", "", "", "" }, + { "93dc15d15e77a7b23162467f95a5f22d", "CCE", "", "Sky Jinks (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3233,25 +3233,25 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "955c408265ad6994f61f9b66657bbae9", "", "", "Quadrun (Video Conversion) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "956b99511c0f47b3a11d18e8b7ac8d47", "", "", "Bones (Arcade Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "41", "218", "", "", "" }, + { "956b99511c0f47b3a11d18e8b7ac8d47", "", "", "Bones (Arcade Golf Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "95e542a7467c94b1e4ab24a3ebe907f1", "Starsoft", "", "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "242", "Yes", "", "" }, - { "961112b74a920a5242e233480326c356", "Activision", "AG-007", "Tennis (1981) (Activision) [o2]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "", "" }, + { "95e542a7467c94b1e4ab24a3ebe907f1", "Starsoft", "", "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "961112b74a920a5242e233480326c356", "Activision", "AG-007", "Tennis (1981) (Activision) [o2]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "256", "Yes", "", "" }, + { "96eccc2277043508a6c481ea432d7dd9", "", "", "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "972486110933623039a3581db308fda6", "", "", "Xeno Plus (Xenophone Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "977294ae6526c31c7f9a166ee00964ad", "Atari", "CX2677", "Dig Dug (V1) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "46", "215", "", "", "" }, + { "977294ae6526c31c7f9a166ee00964ad", "Atari", "CX2677", "Dig Dug (V1) (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "97d079315c09796ff6d95a06e4b70171", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, + { "97d079315c09796ff6d95a06e4b70171", "Activision", "AZ-032", "Pressure Cooker (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3262,13 +3262,13 @@ static const char* DefProps[][23] = { { "98e6e34af45a0664597972c3bb31180f", "", "", "Space Instigators (V1.7) (17-10-2002) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "98ea10c47c13f1b3306c7b13db304865", "", "", "Jam Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "98fa3ad778a668a79449350de4b3b95b", "", "", "Thrust (V1.1) (2000) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "98fa3ad778a668a79449350de4b3b95b", "", "", "Thrust (V1.1) (2000) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9912d06eea42200a198dd3e2be18c601", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "44", "190", "", "", "" }, - { "9945a22f60bbaf6d04a8d73b3cf3db75", "", "", "Kung Fu Master (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "192", "", "", "" }, + { "9912d06eea42200a198dd3e2be18c601", "Imagic", "IA3312", "No Escape! (1983) (Imagic) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9945a22f60bbaf6d04a8d73b3cf3db75", "", "", "Kung Fu Master (1984) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9962034ea7b3d4a905d0991804670087", "", "", "Grid Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "99a24d7bb31d49b720b422550b32c35f", "", "", "Hangman Ghost Biglist1 (Hangman Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9a21fba9ee9794e0fadd7c7eb6be4e12", "", "", "Ikari Warriors (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "197", "", "", "" }, + { "9a21fba9ee9794e0fadd7c7eb6be4e12", "", "", "Ikari Warriors (1990) (Atari) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9a4274409216ff09ecde799f2a56ac73", "CCE", "C-801", "Mr. Postman (CCE) [b1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3285,15 +3285,15 @@ 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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "9c729017dd2f9ccbadcb511187f80e6b", "", "", "J-Pac (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9ca2deb61318eba4fb784d4bf7441d8b", "", "", "Purple Bar Demo 2 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d0befa555f003069a21d2f6847ad962", "", "", "Vanguard (1982) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9d37a1be4a6e898026414b8fee2fc826", "Mattel", "MT5658", "Super Challenge Baseball (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "", "" }, - { "9d522a3759aa855668e75962c84546f7", "Atari", "CX2634", "Golf (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "44", "227", "", "", "" }, - { "9dec0be14d899e1aac4337acef5ab94a", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, + { "9d37a1be4a6e898026414b8fee2fc826", "Mattel", "MT5658", "Super Challenge Baseball (1982) (Mattel) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9d522a3759aa855668e75962c84546f7", "Atari", "CX2634", "Golf (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "9dec0be14d899e1aac4337acef5ab94a", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [o1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "9e2c7299c69b602443d327c7dad51cbf", "Activision / Charles Morgan", "", "Xaxyrax Road by Charles Morgan (Freeway Hack)", "Hack of Freeway (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" }, + { "9e2c7299c69b602443d327c7dad51cbf", "Activision / Charles Morgan", "", "Xaxyrax Road by Charles Morgan (Freeway Hack)", "Hack of Freeway (Activision)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9e6fa031ece07919c816fba5dc8de43e", "", "", "Star Fire - Meteor Dance (13-11-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3309,10 +3309,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "9f9ee0f60c119c831e80694b6678ca1a", "Jeffry Johnston", "", "Radial Pong - Version 8 (Jeffry Johnston) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0028f057d496f22b549fd8deecc6f78", "Joe Grand", "", "SCSIcide Pre-release 6 (Joe Grand)", "", "New Release", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "a00ee0aed5c8979add4c170f5322c706", "Barry Laws Jr.", "", "Egghead by Barry Laws Jr. (Pac-Man Hack)", "", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a025a8f83a42a4d6d46c4887e799bfac", "Hozer Video Games", "", "Gunfight 2600 - Descissions had to be made (2001) (MP)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a0563dd6d8215c38c488fbbd61435626", "", "", "Ship Demo (V 1501) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "192", "", "", "No" }, + { "a075ad332942740c386f4c3814925ece", "Starpath", "AR-4200", "Escape from the Mindmaster (2 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3334,18 +3334,18 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "a2424c1a0c783d7585d701b1c71b5fdc", "Atari", "", "Video Pinball (1980) (Atari) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a28d872fc50fa6b64eb35981d0f4bb8d", "Atari", "CX2628 / 6699842 / 4975117", "Bowling (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a29fc854838e08c247553a7d883dd65b", "Activision", "AX-013", "Barnstorming (1982) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a2de0fc85548871279ed2a3c1325c13e", "George Veeder", "", "Cat and Mouse by George Veeder (Pac-Man Hack)", "Hack of Pac-Man (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "33", "", "", "", "" }, { "a2f296ea2d6d4b59979bac5dfbf4edf0", "", "", "Warring Worms (28-01-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "53", "250", "", "", "" }, - { "a406d2f6d84e61d842f4cb13b2b1cfa7", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, + { "a3c1c70024d7aabb41381adbfb6d3b25", "Telesys", "1005", "Star Gunner (1982) (Telesys)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a3f2a0fcf74bbc5fa763b0ee979b05b1", "Starsoft", "", "Eishockey-Fieber (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "52", "", "", "", "" }, + { "a406d2f6d84e61d842f4cb13b2b1cfa7", "Tigervision", "", "Jawbreaker (1982) (Tigervision) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a443d8557d712845c8cd3699363a42e6", "", "", "Star Fire (07-01-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "a443d8557d712845c8cd3699363a42e6", "", "", "Star Fire (07-01-2003) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3354,10 +3354,10 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a4d026a5c200ef98518ebb77719fe8dc", "", "", "SpongeBob SquarePants (2003) (Kyle Pittman) (Revenge of the Beefsteak Tomatoes Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a4f1cea2c8479284e2a2292f8d51b5fa", "", "", "Gunfight 2600 - The Final Kernel Part 2 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, + { "a4f1cea2c8479284e2a2292f8d51b5fa", "", "", "Gunfight 2600 - The Final Kernel Part 2 (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video", "", "Gopher (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, + { "a56b642a3d3ab9bbeee63cd44eb73216", "Carrere Video", "", "Gopher (1982) (Carrere Video) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3369,30 +3369,30 @@ static const char* DefProps[][23] = { { "a6737c81542a99ee71cb5f5ff14703d9", "", "", "Scrolling Playfield 3 (Junkosoft) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a7523db9a33e9417637be0e71fa4377c", "Ariola", "", "Gangster (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, - { "a779b9fa02c62d00d7c31ed51268f18a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "198", "", "", "" }, + { "a7523db9a33e9417637be0e71fa4377c", "Ariola", "", "Gangster (Ariola) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a779b9fa02c62d00d7c31ed51268f18a", "Starpath", "AR-4104", "Rabbit Transit (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a7ef44ccb5b9000caf02df3e6da71a92", "Atari", "CX2604", "Space War (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "", "" }, - { "a81697b0c8bbc338ae4d0046ede0646b", "CCE", "", "Gravitar (1988) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "", "", "" }, - { "a83b070b485cf1fb4d5a48da153fdf1a", "Apollo", "", "Pompeii (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "219", "", "", "" }, + { "a7ef44ccb5b9000caf02df3e6da71a92", "Atari", "CX2604", "Space War (1978) (Atari) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a81697b0c8bbc338ae4d0046ede0646b", "CCE", "", "Gravitar (1988) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a83b070b485cf1fb4d5a48da153fdf1a", "Apollo", "", "Pompeii (Apollo) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a875f0a919129b4f1b5103ddd200d2fe", "Atari", "", "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "250", "", "", "" }, + { "a875f0a919129b4f1b5103ddd200d2fe", "Atari", "", "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a899a3e3fec8d466f45c2c3beb2961fd", "", "", "Greeting Cart Cathy (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "a8d0a4a77cd71ac601bd71df5a060e4c", "", "", "Space Shuttle - Journey Into Space (1983) (Activision) [t2] (Fuel)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "a94528ae05dd051894e945d4d2349b3b", "", "", "River Raid (Brazil)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "203", "", "", "" }, - { "a9531c763077464307086ec9a1fd057d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, - { "a97733b0852ee3096300102cb0689175", "CCE", "", "Fast Eddie (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, - { "a98b649912b6ca19eaf5c2d2faf38562", "", "", "This Planet Sucks (Greg Troutman) (PAL) [!]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "207", "", "", "" }, + { "a94528ae05dd051894e945d4d2349b3b", "", "", "River Raid (Brazil)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a9531c763077464307086ec9a1fd057d", "Atari", "CX2631 / 6699845 / 4975152", "Superman (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a97733b0852ee3096300102cb0689175", "CCE", "", "Fast Eddie (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "a98b649912b6ca19eaf5c2d2faf38562", "", "", "This Planet Sucks (Greg Troutman) (PAL) [!]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aa2c4b32656bde9a75042a4d158583e1", "", "", "Oystron X (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "aa2c4b32656bde9a75042a4d158583e1", "", "", "Oystron X (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "", "", "", "" }, + { "aad91be0bf78d33d29758876d999848a", "Activision", "AX-018", "Pitfall! (1982) (Activision) (Beta)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "aafc79ffc32c4c9b2d73c8ada7602cfe", "", "", "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3400,16 +3400,16 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ab60ea7b707c58d356cad858eb18db43", "", "", "Tazer (John K. Harvey)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "abb741c83f665d73c86d90a7d9292a9b", "Telegames", "", "Space Attack (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "58", "201", "", "", "" }, + { "abb741c83f665d73c86d90a7d9292a9b", "Telegames", "", "Space Attack (1982) (Telegames) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ac05c0e53a5e7009ddd75ed4b99949fc", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "35", "", "", "", "" }, + { "ac05c0e53a5e7009ddd75ed4b99949fc", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aca09ffea77174b148b96b205109db4d", "Activision", "AG-007", "Tennis (1981) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "200", "", "", "" }, + { "aca09ffea77174b148b96b205109db4d", "Activision", "AG-007", "Tennis (1981) (Activision) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3424,14 +3424,14 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ae18c11e4d7ed2437f0bf5d167c0e96c", "", "", "Multi-Color Demo 3 (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ae465044dfba287d344ba468820995d7", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "55", "", "", "", "" }, - { "ae682886058cd6981c4b8e93e7b019cf", "Retroactive", "", "Qb (V0.12) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "250", "Yes", "", "" }, + { "ae465044dfba287d344ba468820995d7", "Goliath-Funvision", "", "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ae682886058cd6981c4b8e93e7b019cf", "Retroactive", "", "Qb (V0.12) (PAL) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "aec9b885d0e8b24e871925630884095c", "Amiga", "3125", "Surf's Up (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "17", "242", "", "", "" }, + { "aec9b885d0e8b24e871925630884095c", "Amiga", "3125", "Surf's Up (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3441,21 +3441,21 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b049fc8ac50be7c2f28418817979c637", "Activision", "AK-048-04", "River Raid II (1988) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "59", "192", "", "", "" }, + { "b049fc8ac50be7c2f28418817979c637", "Activision", "AK-048-04", "River Raid II (1988) (Activision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b095009004df341386d22b2a3fae3c81", "Sega", "002-01", "Sub Scan (1982) (Sega) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "64", "194", "", "", "" }, + { "b095009004df341386d22b2a3fae3c81", "Sega", "002-01", "Sub Scan (1982) (Sega) (PAL) [p1][!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b0c47e426c7f799aee2c40422df8f56a", "", "", "Space Treat (PAL) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "" }, + { "b1486e12de717013376447ac6f7f3a80", "Spectravideo", "SA-217", "Gas Hog (AKA Marspatrouille) (1983) (Spectravideo) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b17b9cc4103844dcda54f77f44acc93a", "Starsoft", "", "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b227175699e372b8fe10ce243ad6dda5", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "37", "192", "Yes", "", "No" }, + { "b227175699e372b8fe10ce243ad6dda5", "Atari", "CX2649 / 4975163", "Asteroids (1979) (Atari) [a1][!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b28b3d07ffd5f56938a922b7448730b9", "", "", "Greeting Cart Autobots(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b2a6f31636b699aeda900f07152bab6e", "", "", "Space Instigators (Public Release 2) (06-01-2003) (CT)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3465,8 +3465,8 @@ 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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "50", "", "", "", "" }, + { "b31dc989f594764eacfa7931cead0050", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, + { "b392964e8b1c9c2bed12246f228011b2", "US Games", "", "Name This Game (AKA Octopus) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3474,20 +3474,20 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b4daedb43511521db9036d503b3c1b69", "", "", "Sokoban (01-01-2003) (Adam Wozniak) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b4f05e544834d0238a0c263491775edf", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "192", "Yes", "", "" }, + { "b4f05e544834d0238a0c263491775edf", "Starpath", "AR-4102", "Suicide Mission Preview (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "b5110f55ed99d5279f18266d001a8cd5", "", "", "Auto-mobile Demo (2001) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "b5a1a189601a785bdb2f02a424080412", "Imagic", "IA3410", "Shootin' Gallery (1982) (Imagic)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b6166f15720fdf192932f1f76df5b65d", "Amiga", "3130", "Off Your Rocker (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "31", "203", "", "", "" }, - { "b676a9b7094e0345a76ef027091d916b", "Video Gems / Thomas Jentzsch", "", "Mission Survive (1983) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "8", "148", "", "", "", "", "" }, + { "b6166f15720fdf192932f1f76df5b65d", "Amiga", "3130", "Off Your Rocker (1983) (Amiga)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b676a9b7094e0345a76ef027091d916b", "Video Gems / Thomas Jentzsch", "", "Mission Survive (1983) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "A", "", "", "", "", "", "", "", "", "", "", "", "YES", "", "" }, { "b6821ac51c4c1dcb283f01be2f047dc1", "", "", "Rubik's Cube 3D Demo (25-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b6e40bce550672e5495a8cdde7075b8b", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "No" }, + { "b6e40bce550672e5495a8cdde7075b8b", "Starpath", "AR-4401", "Survival Island (1 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "b76fbadc8ffb1f83e2ca08b6fb4d6c9f", "Activision", "AG-005", "Skiing (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "37", "194", "", "", "" }, - { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "259", "", "", "" }, + { "b76fbadc8ffb1f83e2ca08b6fb4d6c9f", "Activision", "AG-005", "Skiing (1980) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "b79087a8f2f54337d6a8fa56616dee1c", "Bitcorp", "PG201", "Sea Monster (Bitcorp) (PAL) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, + { "b9336ed6d94a5cc81a16483b0a946a73", "Atari", "CX2667", "RealSports Soccer (1983) (Atari) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3505,8 +3505,8 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ba317f83cdfcd58cbc65aac1ccb87bc5", "", "", "Jammed (2001) (XYPE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "ba3b0eebccc7b791107de5b4abb671b4", "", "", "Thrust (V0.9) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "ba317f83cdfcd58cbc65aac1ccb87bc5", "", "", "Jammed (2001) (XYPE) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ba3b0eebccc7b791107de5b4abb671b4", "", "", "Thrust (V0.9) (2000) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3519,27 +3519,27 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bc3057a35319aae3a5cd87a203736abe", "CCE", "", "Time Warp (CCE) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bc5389839857612cfabeb810ba7effdc", "Atari", "CX2671", "SwordQuest - Waterworld (1983) (Atari)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "205", "", "", "" }, + { "bc5389839857612cfabeb810ba7effdc", "Atari", "CX2671", "SwordQuest - Waterworld (1983) (Atari)", "", "Unbelievably Rare", "", "F8", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bc97d544f1d4834cc72bcc92a37b8c1b", "", "", "Sky Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bce4c291d0007f16997faa5c4db0a6b8", "Starsoft", "", "Weltraum Tunnel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "40", "", "", "", "" }, - { "bcef7880828a391cf6b50d5a6dcef719", "Starsoft", "SS-009", "Bermuda (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "199", "", "", "" }, + { "bce4c291d0007f16997faa5c4db0a6b8", "Starsoft", "", "Weltraum Tunnel (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "bcef7880828a391cf6b50d5a6dcef719", "Starsoft", "SS-009", "Bermuda (Starsoft) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bda1463e02ae3a6e1107ffe1b572efd2", "", "", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "43", "229", "", "", "" }, + { "bda1463e02ae3a6e1107ffe1b572efd2", "", "", "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdbac0c6cd0fab9c81c3be0bedb0ddd4", "", "", "Greeting Cart The Snail(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bdc381baf7c252c63739c5e9ed087a5c", "", "", "Vertical Ship Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, - { "be35d8b37bbc03848a5f020662a99909", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "39", "206", "", "", "" }, + { "be2870a0120fd28d25284e9ccdcbdc99", "", "", "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "be35d8b37bbc03848a5f020662a99909", "", "CX2601 / 6699801 / 4975124", "Tank Plus (1977) (Sears) [a1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "bf5e2079586cb307bf5eb2413e2e61af", "", "", "Star Fire - 1LK Intro (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "bf84f528de44225dd733c0e6a8e400a0", "CCE", "", "Demons to Diamonds (1982) (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "35", "195", "", "", "" }, + { "bf84f528de44225dd733c0e6a8e400a0", "CCE", "", "Demons to Diamonds (1982) (CCE)", "Uses the Paddle Controllers (left only)", "", "", "", "", "", "", "", "Paddles", "", "Yes", "", "", "", "", "", "", "", "" }, { "bf9ddc5dd9056633d4ac0dac8b871dfe", "", "", "Star Fire - Cockpit View (10-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3547,14 +3547,14 @@ static const char* DefProps[][23] = { { "bffe34516aaa3cbf5d307eab382a7e95", "", "", "Euchre (Release Candidate) (PAL) (28-09-2002) (Erik Eid)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c032c2bd7017fdfbba9a105ec50f800e", "Activision", "", "Thwocker (Activision) (Prototype) [!]", "", "Prototype", "", "FE", "", "", "", "", "", "", "", "", "8", "152", "41", "196", "", "", "" }, + { "c032c2bd7017fdfbba9a105ec50f800e", "Activision", "", "Thwocker (Activision) (Prototype) [!]", "", "Prototype", "", "FE", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c05f367fa4767ceb27abadf0066df7f4", "", "", "TomInv (31-07-2001) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c0d2434348de72fa6edcc6d8e40f28d7", "Sega", "010-01", "Tapper (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "c0d2434348de72fa6edcc6d8e40f28d7", "Sega", "010-01", "Tapper (1983) (Sega) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "64", "220", "", "", "" }, + { "c16fbfdbfdf5590cc8179e4b0f5f5aeb", "Bomb", "CA285", "Wall Defender (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c1a83f44137ea914b495fc6ac036c493", "Atari", "CX2660 / 4975187", "Star Raiders (1982) (Atari) (PAL) [!]", "Uses Joystick (left) and Keypad (right) Controllers", "Uncommon", "", "", "", "", "", "", "", "Keyboard", "", "", "", "", "", "", "", "", "" }, { "c1b1049b88bcd98437d8872d1d62ba31", "", "", "Demo Image Series #4 - Donald (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c1f209d80f0624dada5866ce05dd3399", "Telegames", "MT5662", "TRON - Deadly Discs (1983) (Telegames) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "55", "", "", "", "" }, + { "c1f209d80f0624dada5866ce05dd3399", "Telegames", "MT5662", "TRON - Deadly Discs (1983) (Telegames) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3562,19 +3562,19 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c2778507b83d9540e9be5713758ff945", "", "", "Island Flyer Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "37", "206", "", "", "" }, + { "c29f8db680990cb45ef7fef6ab57a2c2", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros)", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c370c3268ad95b3266d6e36ff23d1f0c", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "45", "226", "", "", "" }, + { "c370c3268ad95b3266d6e36ff23d1f0c", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c3bbc673acf2701b5275e85d9372facf", "Atari", "", "Stunt Cycle (Atari) (Prototype)", "Uses the Paddle Controllers", "Prototype", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, - { "c3ef5c4653212088eda54dc91d787870", "Activision", "AG-002", "Boxing (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" }, + { "c3ef5c4653212088eda54dc91d787870", "Activision", "AG-002", "Boxing (1981) (Activision) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c469151655e333793472777052013f4f", "Bomb", "13", "Z-Tack (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "30", "205", "", "", "" }, + { "c469151655e333793472777052013f4f", "Bomb", "13", "Z-Tack (Bomb)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c473b222b7c5308d0773326416094272", "", "", "Star Fire (28-11-2002) (MP) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3584,24 +3584,24 @@ 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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "256", "", "", "" }, + { "c5387fc1aa71f11d2fa82459e189a5f0", "Bitcorp", "", "Weltraum Tunnel (Bitcorp) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "256", "", "", "" }, { "c569e57dca93d3bee115a49923057fd7", "", "", "Pac-Space (Pac-Man Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c5930d0e8cdae3e037349bfa08e871be", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "200", "Yes", "", "" }, + { "c5930d0e8cdae3e037349bfa08e871be", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c6688781f4ab844852f4e3352772289b", "Atari", "CX2695", "Xevious (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "26", "", "Yes", "", "" }, + { "c6688781f4ab844852f4e3352772289b", "Atari", "CX2695", "Xevious (Atari) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c6ae21caceaad734987cb24243793bd5", "CCE", "", "Frostbite (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" }, + { "c6ae21caceaad734987cb24243793bd5", "CCE", "", "Frostbite (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "c6cedb25b7d390b580ea8edb614b168b", "", "", "Star Fire - Radar Completed (22-10-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c745487828a1a6a743488ecebc55ad44", "", "", "Galactic (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, + { "c745487828a1a6a743488ecebc55ad44", "", "", "Galactic (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c77d3b47f2293e69419b92522c6f6647", "Panda", "101", "Tank Brigade (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" }, + { "c77d3b47f2293e69419b92522c6f6647", "Panda", "101", "Tank Brigade (Panda) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3610,34 +3610,34 @@ 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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "63", "192", "", "", "" }, + { "c880c659cdc0f84c4a66bc818f89618e", "Bitcorp / Thomas Jentzsch", "", "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "c8df076c7e4349ca8dcbdb773bf3c985", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "c9196e28367e46f8a55e04c27743148f", "Atari", "", "Stampede (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "c9c25fc536de9a7cdc5b9a916c459110", "Activision", "AX-023", "Oink! (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "41", "194", "", "", "" }, + { "c9c25fc536de9a7cdc5b9a916c459110", "Activision", "AX-023", "Oink! (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ca54de69f7cdf4d7996e86f347129892", "Playaround", "", "Philly Flasher (1982) (Playaround)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "27", "213", "", "", "" }, + { "ca54de69f7cdf4d7996e86f347129892", "Playaround", "", "Philly Flasher (1982) (Playaround)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "PADDLES", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cae8f83c06831ec7bb6a3c07e98e9342", "Colin Hughes", "", "Tetris 2600 (Colin Hughes) [o1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cb4a7b507372c24f8b9390d22d54a918", "ITT", "", "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "200", "", "", "" }, + { "cb4a7b507372c24f8b9390d22d54a918", "ITT", "", "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cb8bf5a0df683cbf6ce50d614b12dd20", "Activision", "", "Fast Eddie (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "198", "", "", "" }, + { "cb8bf5a0df683cbf6ce50d614b12dd20", "Activision", "", "Fast Eddie (1983) (Activision)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cb96b0cf90ab7777a2f6f05e8ad3f694", "Silvio Mogno", "", "Rainbow Invaders", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cba56e939252b05df7b7de87307d12ca", "", "", "Playfield Text Demo (2001) (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cbc373fbcb1653b4c56bfabba33ea50d", "CCE", "", "Super VoleyBall (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, + { "cbc373fbcb1653b4c56bfabba33ea50d", "CCE", "", "Super VoleyBall (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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" }, + { "cc1939e4769d0c157ace326efcfdcf80", "Starpath", "AR-4200", "Escape from the Mindmaster (3 of 4) (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "No" }, { "cc74ddb45d7bc4d04c2e6f1907416699", "", "", "Colour Display Programme (1997) (Chris Cracknell)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3647,7 +3647,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", "", "", "" }, + { "cd399bc422992a361ba932cc50f48b65", "Starpath", "AR-4104", "Rabbit Transit Preview (1982) (Starpath)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cd4ded1ede63c4dd09f3dd01bda7458c", "", "", "Laser Gate (Future Video Games) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3658,12 +3658,12 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ce64812eb83c95723b04fb56d816910b", "Retroactive", "", "Qb (V2.04) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "ce89529d6e98a13ddf3d84827bbdfe68", "", "", "Kung Fu Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "208", "Yes", "", "" }, + { "ce89529d6e98a13ddf3d84827bbdfe68", "", "", "Kung Fu Sprite Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "cef01595000627ee50863d4290372c27", "", "", "Many Blue Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "193", "", "", "" }, + { "cef01595000627ee50863d4290372c27", "", "", "Many Blue Bars and Text Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "cf0c593c563c84fdaf0f741adb367445", "Retroactive", "", "Qb (V0.05) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, - { "cf3c2725f736d4bcb84ad6f42de62a41", "Rainbow Vision", "SS-009", "Bermuda (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "54", "199", "", "", "" }, + { "cf3c2725f736d4bcb84ad6f42de62a41", "Rainbow Vision", "SS-009", "Bermuda (Rainbow Vision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3681,19 +3681,19 @@ static const char* DefProps[][23] = { { "d0498baca989e792db4b8270a02b9624", "", "", "Pac Ghost Sprite Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d09a7504ee8c8717ac3e24d263e7814d", "Activision", "AX-024", "Dolphin (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" }, - { "d0a379946ed77b1b126230ca68461333", "", "", "Atari Invaders by Ataripoll (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" }, + { "d09a7504ee8c8717ac3e24d263e7814d", "Activision", "AX-024", "Dolphin (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d0a379946ed77b1b126230ca68461333", "", "", "Atari Invaders by Ataripoll (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d175258b2973b917a05b46df4e1cf15d", "", "", "Walker (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "225", "", "", "" }, + { "d175258b2973b917a05b46df4e1cf15d", "", "", "Walker (198x)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, - { "d223bc6f13358642f02ddacfaf4a90c9", "Starsoft", "", "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "51", "215", "", "", "" }, + { "d1d704a7146e95709b57b6d4cac3f788", "Atari", "", "Slot Racers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d223bc6f13358642f02ddacfaf4a90c9", "Starsoft", "", "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "", "206", "", "", "" }, + { "d326db524d93fa2897ab69c42d6fb698", "Parker Bros", "PB5320", "Super Cobra (1982) (Parker Bros) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3710,7 +3710,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d47387658ed450db77c3f189b969cc00", "Playaround", "", "Westward Ho (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "d47387658ed450db77c3f189b969cc00", "Playaround", "", "Westward Ho (Playground) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3718,8 +3718,8 @@ 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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "64", "200", "", "", "" }, + { "d5618464dbdc2981f6aa8b955828eeb4", "CCE", "", "Megamania (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "d57913088e0c49ac3a716bf9837b284f", "", "", "Pressure Cooker (1983) (Activision) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d597d35c6022c590d6e75e865738558a", "", "", "Sprite Color Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d5c6b81212ad86fd9542a1fedaf57cae", "", "", "Sprite Demo 1 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3727,7 +3727,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "d65028524761ef52fbbdebab46f79d0f", "CCE", "", "Galaxian (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "36", "194", "", "", "" }, + { "d65028524761ef52fbbdebab46f79d0f", "CCE", "", "Galaxian (1983) (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d6a44277c3eb4f9d039185e0ecf7bfa6", "", "", "Trick (1997) (Eckhard Stolberg)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d6d5dd8fd322d3cf874e651e7b6c1657", "", "", "How to Draw a Playfield (1997) (Nick Bensema) (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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, + { "d816fea559b47f9a672604df06f9d2e3", "Atari", "", "Fun with Numbers (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "d82675ce67caf16afe5ed6b6fac8aa37", "", "", "Robot City (V0.23) (13-11-2002) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3746,18 +3746,18 @@ 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][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "54", "", "", "", "" }, + { "d8e4c8e2d210270cd1e0f6d1b4582b91", "", "", "Subterrenea (1983) (Imagic) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "64", "197", "", "", "" }, + { "d9b49f0678776e04916fa5478685a819", "Activision", "AZ-036-04", "H.E.R.O. (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dac5c0fe74531f077c105b396874a9f1", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "152", "", "", "", "", "" }, + { "dac5c0fe74531f077c105b396874a9f1", "Atari", "CX2680", "RealSports Tennis (1983) (Atari) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3780,7 +3780,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "dc6aa0bb21a6e66e80e75ba5edc5c0dd", "", "", "Star Fire - Kernel Done (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic", "IA3000", "Trick Shot (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "54", "250", "Yes", "", "" }, + { "dca90ea1084a2fdbe300d7178ca1a138", "Imagic", "IA3000", "Trick Shot (1982) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "dcba0e33aa4aed67630a4b292386f405", "Retroactive", "", "Qb (V2.08) (Half Speed Version) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3792,7 +3792,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dd92d6ad50976f881d86b52d38616118", "SpkSoft", "", "River Raid (SpkSoft) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "30", "199", "", "", "" }, + { "dd92d6ad50976f881d86b52d38616118", "SpkSoft", "", "River Raid (SpkSoft) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3806,7 +3806,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "de7bca4e569ad9d3fd08ff1395e53d2d", "Thomas Jentzsch", "", "Thrust (V1.22) (2000) (TJ)", "Won't work with Stella < V1.2, supports Booster Grip", "New Release", "", "", "", "", "", "", "Booster-Grip", "", "", "", "", "", "", "201", "", "", "" }, + { "de7bca4e569ad9d3fd08ff1395e53d2d", "Thomas Jentzsch", "", "Thrust (V1.22) (2000) (TJ)", "Won't work with Stella < V1.2, supports Booster Grip", "New Release", "", "", "", "", "", "", "Booster-Grip", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3821,11 +3821,11 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "dfcdd6f593bb7b05dbc2e8e1fc6ee0de", "", "", "Gunfight 2600 - Scenarios complete (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "dfe6aa7443bb813cefa35a4cf4887422", "", "", "This Planet Sucks (Greg Troutman) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "40", "205", "", "", "" }, + { "dfcdd6f593bb7b05dbc2e8e1fc6ee0de", "", "", "Gunfight 2600 - Scenarios complete (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "dfe6aa7443bb813cefa35a4cf4887422", "", "", "This Planet Sucks (Greg Troutman) [a1]", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e01e00504e6d4b88fa743c0bbe8a96e5", "", "", "Qb (Special Edition, some bugfixes) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e0221c95aa657f5764eeeb64c8429258", "", "", "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "38", "192", "", "", "" }, + { "e0221c95aa657f5764eeeb64c8429258", "", "", "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3833,24 +3833,24 @@ 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", "", "", "", "36", "256", "", "", "" }, - { "e13c7627b2e136b9c449d9e8925b4547", "Atari", "CX2624", "Basketball (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "42", "193", "", "", "" }, + { "e12e32dee68201b6765fcd0ed54d6646", "Atari", "CX2612 / 6699804 / 4975103", "Street Racer - Speedway II (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers", "", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "", "", "", "", "" }, + { "e13c7627b2e136b9c449d9e8925b4547", "Atari", "CX2624", "Basketball (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e171558c51bb3bac97bfa79fa2c1a19c", "", "", "Warring Worms (Tim Strauss Edition) (20-12-2002) (Billy Eno)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e18abe87035379c56b435bfe8175077b", "", "", "Rumble 2600 by Grimlock (Mario Bros Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e1c8d02ca138083db868501360cf12a8", "", "", "Image - Baboon (10-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e1e09e2f280e8e142121a377d0dc1b46", "Thomas Jentzsch", "", "Thrust (V1.21) (2000) (TJ)", "Won't work with Stella < V1.2, bugfixed", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" }, + { "e1e09e2f280e8e142121a377d0dc1b46", "Thomas Jentzsch", "", "Thrust (V1.21) (2000) (TJ)", "Won't work with Stella < V1.2, bugfixed", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e2389c0be5b5b84e0d3ca36ec7e67514", "Retroactive", "", "Qb (V2.09) (NTSC) (2001) (Retroactive)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e275cbe7d4e11e62c3bfcfb38fca3d49", "Mattel", "MT5658", "Super Challenge Football (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "198", "", "", "" }, - { "e2846af3e4d172b251ab77cbdd01761e", "", "", "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, + { "e275cbe7d4e11e62c3bfcfb38fca3d49", "Mattel", "MT5658", "Super Challenge Football (1982) (Mattel)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e2846af3e4d172b251ab77cbdd01761e", "", "", "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "", "", "", "", "", "", "", "", "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "37", "240", "", "", "" }, + { "e2cff4a96b91fcf5de694b7480a612ae", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b2]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "e34c236630c945089fcdef088c4b6e06", "Activision", "AB-035-04", "Pitfall 2 (1984) (Activision) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e363e467f605537f3777ad33e74e113a", "", "CX2603 / 6699803 / 4975601", "Star Ship - Outer Space (1977)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e37c8055d70979af354251ebe9f1b7dd", "HES", "", "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3858,13 +3858,13 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e4519d584bb1663ff2734f16c983fa2b", "", "", "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "45", "229", "", "", "" }, + { "e4519d584bb1663ff2734f16c983fa2b", "", "", "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e4c666ca0c36928b95b13d33474dbb44", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "172", "Yes", "", "" }, + { "e4c666ca0c36928b95b13d33474dbb44", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "e4e9125a8741977583776729359614e1", "", "", "Comitoid beta 4 (SnailSoft)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e51030251e440cffaab1ac63438b44ae", "Parker Bros", "PB5110", "James Bond 007 (1983) (Parker Bros)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3874,31 +3874,31 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e5f17b3e62a21d0df1ca9aee1aa8c7c5", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "Yes", "", "" }, + { "e5f17b3e62a21d0df1ca9aee1aa8c7c5", "CommaVid", "CM-003", "Cosmic Swarm (1982) (CommaVid) [a1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e609e8a007127b8fcff79ffc380da6b1", "", "", "Multi-Sprite Game V2.3 (Piero Cavina) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e643aaec9a9e1c8ab7fe1eae90bc77d7", "", "", "Asymmetric Playfield (Roger Williams)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e66e5af5dea661d58420088368e4ef0d", "Activision", "AG-011", "Stampede (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "192", "", "", "" }, + { "e66e5af5dea661d58420088368e4ef0d", "Activision", "AG-011", "Stampede (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e6f49a1053c79211f82be4d90dc9fe3d", "", "", "Gunfight 2600 - Little progress... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" }, - { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "64", "195", "", "", "" }, + { "e6f49a1053c79211f82be4d90dc9fe3d", "", "", "Gunfight 2600 - Little progress... (2001) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "e72ee2d6e501f07ec5e8a0efbe520bee", "Imagic", "O3211", "Quick Step! (1983) (Imagic) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e77ec259e1387bc308b0534647a89198", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "240", "", "", "" }, + { "e77ec259e1387bc308b0534647a89198", "Parker Bros", "PB5900", "Spider-Man (1982) (Parker Bros) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e7864caaf9ec49ed67b1904ce8602690", "", "", "Donkey Kong 2K3 Pic (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e7a758bb0b43d0f7004e92b9abf4bc83", "", "", "Troll's Adventure (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "35", "194", "", "", "" }, + { "e7a758bb0b43d0f7004e92b9abf4bc83", "", "", "Troll's Adventure (Adventure Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "e823b13751e4388f1f2a375d3560a8d7", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "33", "205", "", "", "" }, + { "e823b13751e4388f1f2a375d3560a8d7", "Starpath", "AR-4105", "Frogger Preview (1982) (Starpath) [a1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "31", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "", "", "45", "230", "Yes", "", "" }, + { "e91d2ecf8803ae52b55bbf105af04d4b", "Atari", "CX2655 / 4975167", "Yar's Revenge (1981) (Atari) (PAL) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "e927ecf80f3784d745abd8368d78f2f3", "", "", "Space Instigators (V1.8) (19-10-2002) (CT) [a1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "e959b5a2c882ccaacb43c32790957c2d", "", "", "Phantom II / Pirate (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3906,21 +3906,21 @@ static const char* DefProps[][23] = { { "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", "", "", "", "", "", "", "", "", "", "", "", "", "43", "256", "", "", "" }, + { "ead60451c28635b55ca8fea198444e16", "Sancho", "TEC004", "Nightmare (Sancho) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "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", "", "", "" }, + { "eb503cc64c3560cd78b7051188b7ba56", "CCE", "", "Moto Laser (CCE)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb6d6e22a16f30687ade526d7a6f05c5", "Atari", "CX26150", "Q-bert (1988) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "eb92193f06b645df0b2a15d077ce435f", "Starpath", "AR-4102", "Suicide Mission (1982) (Starpath) (PAL)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, + { "eb9f8b84c193d9d93a58fca112aa39ed", "", "", "Register Twiddler Demo (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ebf9038e927e6a0db3e0d170c59911e6", "", "", "Pac-2600 (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ec3beb6d8b5689e867bafb5d5f507491", "US Games", "VC 1003", "Word Zapper (1982) (US Games) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ec5c861b487a5075876ab01155e74c6c", "Apollo", "AP 2001", "Spacechase (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "225", "", "", "" }, - { "ece908d77ab944f7bac84322b9973549", "Suntek", "", "Tom Boy (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "28", "194", "", "", "" }, + { "ec5c861b487a5075876ab01155e74c6c", "Apollo", "AP 2001", "Spacechase (1981) (Apollo) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ece908d77ab944f7bac84322b9973549", "Suntek", "", "Tom Boy (Suntek) (PAL)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3930,7 +3930,7 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ed9999911b406dc5f75c850dcc17bdf4", "", "", "Star Fire - Shootable (Friendlier Collision Detection) (26-09-2002) (MP)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "ede7e8bf865b0afb4744f86d13624f9a", "", "", "Demo Image Series #2 - Clown (19-02-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ee28424af389a7f3672182009472500c", "Atari", "", "Polo (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "", "", "", "" }, + { "ee28424af389a7f3672182009472500c", "Atari", "", "Polo (Atari) (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3939,38 +3939,38 @@ 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", "", "", "", "", "", "", "", "", "", "", "8", "144", "64", "206", "", "", "" }, + { "eec61cc4250df70939d48fe02d7122ac", "Activision", "AG-005", "Skiing (1980) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "ef3a4f64b6494ba770862768caf04b86", "Activision", "AG-034-04", "Private Eye (1983) (Activision) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "ef60b06fddb675b0d783afbfa5fc5232", "", "", "Many Blue Bars and Text Demo 4 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "60", "", "", "", "" }, + { "efb47d70b2965ce689e2c5757616b286", "", "", "Time Test Demo (Eckhard Stolberg) (PAL) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "efefc02bbc5258815457f7a5b8d8750a", "CBS Electronics", "4L-2520", "Tunnel Runner (1983) (CBS Electronics) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f02ba8b5292bf3017d10553c9b7b2861", "Atari", "", "Xenophobe (1990) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f047df70d3d08e331122cd2de61d6af8", "Dave Neuman", "", "Space Battle (NTSC)", "", "Homebrew", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f0541d2f7cda5ec7bab6d62b6128b823", "Atari", "", "Bionic Breakthrough (1984) (Atari) (Prototype)", "Uses Mindlink Controller (left only)", "Prototype", "", "", "", "", "", "", "Mindlink", "None", "", "", "", "", "36", "196", "", "", "" }, + { "f0541d2f7cda5ec7bab6d62b6128b823", "Atari", "", "Bionic Breakthrough (1984) (Atari) (Prototype)", "Uses Mindlink Controller (left only)", "Prototype", "", "", "", "", "", "", "Mindlink", "None", "", "", "", "", "", "", "", "", "" }, { "f0631c6675033428238408885d7e4fde", "Paul Slocum", "", "Test Cart (2002) (Paul Slocum)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f0daaa966199ef2b49403e9a29d12c50", "", "PG209", "Mr. Postman (1983) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f10e3f45fb01416c87e5835ab270b53a", "", "TP-607", "Ski Run (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "53", "190", "", "", "" }, + { "f10e3f45fb01416c87e5835ab270b53a", "", "TP-607", "Ski Run (Funvision) (PAL) [!]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f1489e27a4539a0c6c8529262f9f7e18", "Champ Games", "", "Lady Bug (PAL60)", "", "Homebrew", "", "", "", "A", "", "", "", "", "", "PAL60", "", "", "", "", "YES", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f19aba18f86e415812480ad2be221425", "", "", "Solaris Trainer (2002) (Chris Larkin) (Solaris Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "196", "", "", "" }, + { "f19aba18f86e415812480ad2be221425", "", "", "Solaris Trainer (2002) (Chris Larkin) (Solaris Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f1b2ea568b3e156e3f2849dac83591f6", "", "", "Sprite Demo (1997) (Bob Colbert) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f20bd756f3990e06c492f53cd0168e68", "", "", "Skeleton+ (03-05-2003) (Eric Ball) (NTSC)", "", "", "Stereo", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f240ba9f8092d2e8a4c7d82c554bf509", "", "", "Strahlen der Teufelsvoegel (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "64", "", "", "", "" }, + { "f240ba9f8092d2e8a4c7d82c554bf509", "", "", "Strahlen der Teufelsvoegel (PAL) [p1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -3981,63 +3981,63 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f3f5f72bfdd67f3d0e45d097e11b8091", "Sears", "CX2647 / 4975412", "Submarine Commander (1982) (Sears)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "37", "195", "", "", "" }, + { "f3f5f72bfdd67f3d0e45d097e11b8091", "Sears", "CX2647 / 4975412", "Submarine Commander (1982) (Sears)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f4469178cd8998cb437fa110a228eaca", "Digitel", "", "Frostbite (Digitel) (Brazil) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "195", "", "", "" }, - { "f457674cef449cfd85f21db2b4f631a7", "US Games", "VC 1004", "Commando Raid (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "32", "", "", "", "" }, + { "f4469178cd8998cb437fa110a228eaca", "Digitel", "", "Frostbite (Digitel) (Brazil) (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f457674cef449cfd85f21db2b4f631a7", "US Games", "VC 1004", "Commando Raid (1982) (US Games)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f4b8a47a95b61895e671c3ec86ffd461", "", "", "Star Wars - The Arcade Game (Parker Bros) (Prototype 010384)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f542b5d0193a3959b54f3c4c803ba242", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "37", "190", "", "", "" }, - { "f5a2f6efa33a3e5541bc680e9dc31d5b", "Starsoft", "", "Motocross (Starsoft) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "45", "249", "", "", "" }, + { "f542b5d0193a3959b54f3c4c803ba242", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [o1]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f5a2f6efa33a3e5541bc680e9dc31d5b", "Starsoft", "", "Motocross (Starsoft) (PAL) [a1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f613aad84d2163d6b197b220bfec1b7e", "", "", "X-Doom V.27 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "192", "", "", "" }, + { "f613aad84d2163d6b197b220bfec1b7e", "", "", "X-Doom V.27 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f69a39b215852a0c2764d2a923c1e463", "", "", "Move a Blue Blob Demo 2 (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f6d512bef1bf253dc935d0e13c3d1462", "Atari", "", "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, + { "f6d512bef1bf253dc935d0e13c3d1462", "Atari", "", "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "" }, + { "f724d3dd2471ed4cf5f191dbb724b69f", "Atari", "CX2659", "Raiders of the Lost Ark (1982) (Atari)", "Console ports are swapped", "Common", "", "", "", "", "", "Yes", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "", "", "", "", "", "8", "144", "51", "", "", "", "" }, + { "f7af41a87533524d9a478575b0d873d0", "Parker Bros", "PB5900", "Spider-Man (1982) (Starsoft) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f802fa61011dd9eb6f80b271bac479d0", "Starsoft", "", "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "61", "", "", "", "" }, + { "f802fa61011dd9eb6f80b271bac479d0", "Starsoft", "", "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "61", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "f844f4c6f3baaaf5322657442d6f29eb", "Atari", "CX26111", "Snoopy and the Red Baron (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f8582bc6ca7046adb8e18164e8cecdbc", "HomeVision", "", "Panda Chase (HomeVision)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f8ad87b3ecfc04c9e76d2cebef76a6cb", "", "", "Greeting Cart Carmon (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f90b5da189f24d7e1a2117d8c8abc952", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "29", "228", "", "", "" }, + { "f90b5da189f24d7e1a2117d8c8abc952", "Atari", "CX2653 / 99823 / 75111", "Slot Machine (1979) (Atari)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "f939780714db69dc69a80fbefe350e0d", "Activision", "AB-035-04", "Pitfall II - Lost Caverns (1984) (Activision) [b2]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "f954381f9e0f2009d1ac40dedd777b1a", "Thomas Jentzsch", "", "Robot City (V0.18) (01-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "22", "", "", "", "" }, + { "f954381f9e0f2009d1ac40dedd777b1a", "Thomas Jentzsch", "", "Robot City (V0.18) (01-09-2002) (TJ)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "f992a39b46aa48188fab12ad3809ae4a", "Activision", "AG-019", "Sky Jinks (1982) (Activision) (PAL) [p1][!]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "f9d51a4e5f8b48f68770c89ffd495ed1", "Atari", "CX2656", "SwordQuest - Fireworld (1982) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "fa2be8125c3c60ab83e1c0fe56922fcb", "DSD-Camelot", "", "Tooth Protectors (DSD-Camelot)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "26", "220", "Yes", "", "" }, + { "fa2be8125c3c60ab83e1c0fe56922fcb", "DSD-Camelot", "", "Tooth Protectors (DSD-Camelot)", "", "Unbelievably Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "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", "", "", "", "" }, + { "fa447e4e2f0d5e67cbf0b060fac5944c", "Activision", "AG-019", "Sky Jinks (1982) (Activision) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, + { "fa6fe97a10efb9e74c0b5a816e6e1958", "Zimag", "707-111", "Tanks But No Tanks (Zimag)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "fabca526d57de46768b392f758f1a008", "", "", "Laseresal 2600 (16-12-2001) (Andrew Wallace) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, @@ -4095,14 +4095,14 @@ static const char* DefProps[][23] = { { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "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", "", "", "" }, + { "feec54aac911887940b47fe8c9f80b11", "Atari", "CX2633", "Night Driver (1978) (Atari) (PAL) [!]", "Uses the Paddle Controllers (left only)", "Common", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "Yes", "", "" }, + { "ff3bd0c684f7144aeaa18758d8281a78", "Atari", "", "Blackjack (1977) (Atari) [!]", "Uses the Paddle Controllers", "Rare", "", "", "", "", "", "", "Paddles", "Paddles", "", "", "", "", "", "", "", "", "" }, { "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", "", "", "", "", "", "50", "", "", "", "" }, + { "ff86fc8ffa717bb095e8471638c1c31c", "Starpath", "AR-4302", "Party Mix (1 of 3) (1982) (Starpath) (PAL)", "Uses the Paddle Controllers", "Extremely Rare", "", "", "", "", "", "", "Paddles", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }, - { "ffebb0070689b9d322687edd9c0a2bae", "", "", "Spitfire Attack (1983) (Milton Bradley) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "144", "", "", "", "", "" } + { "ffebb0070689b9d322687edd9c0a2bae", "", "", "Spitfire Attack (1983) (Milton Bradley) [h1]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" } }; #endif diff --git a/stella/src/emucore/EventHandler.cxx b/stella/src/emucore/EventHandler.cxx index e3074c1e3..8164aeec5 100644 --- a/stella/src/emucore/EventHandler.cxx +++ b/stella/src/emucore/EventHandler.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: EventHandler.cxx,v 1.190 2006-12-26 17:06:01 stephena Exp $ +// $Id: EventHandler.cxx,v 1.191 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #include @@ -63,7 +63,6 @@ EventHandler::EventHandler(OSystem* osystem) myState(S_NONE), myLSState(0), myPauseFlag(false), - myQuitFlag(false), myGrabMouseFlag(false), myUseLauncherFlag(false), myFryingFlag(false), @@ -163,7 +162,6 @@ void EventHandler::reset(State state) myLSState = 0; myPauseFlag = false; - myQuitFlag = false; pause(false); myEvent->clear(); @@ -583,9 +581,26 @@ void EventHandler::poll(uInt32 time) break; case SDLK_r: // Ctrl-r reloads the currently loaded ROM + myOSystem->deleteConsole(); myOSystem->createConsole(); break; + case SDLK_END: // Ctrl-End increases Width + myOSystem->console().changeWidth(+1); + break; + + case SDLK_HOME: // Ctrl-Home decreases Width + myOSystem->console().changeWidth(-1); + break; + + case SDLK_PAGEUP: // Ctrl-PageUp increases Height + myOSystem->console().changeHeight(+1); + break; + + case SDLK_PAGEDOWN: // Ctrl-PageDown decreases Height + myOSystem->console().changeHeight(-1); + break; + case SDLK_s: // Ctrl-s saves properties to a file { string filename = myOSystem->baseDir() + BSPF_PATH_SEPARATOR + @@ -1190,13 +1205,17 @@ void EventHandler::handleEvent(Event::Type event, int state) if(myState == S_EMULATE && myUseLauncherFlag && state) { myOSystem->settings().saveConfig(); + myOSystem->deleteConsole(); myOSystem->createLauncher(); } return; case Event::Quit: - if(state) myQuitFlag = true; - myOSystem->settings().saveConfig(); + if(state) + { + myOSystem->settings().saveConfig(); + myOSystem->quit(); + } return; } diff --git a/stella/src/emucore/EventHandler.hxx b/stella/src/emucore/EventHandler.hxx index 8afdbd65f..ed89d3061 100644 --- a/stella/src/emucore/EventHandler.hxx +++ b/stella/src/emucore/EventHandler.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: EventHandler.hxx,v 1.95 2006-12-12 01:02:12 stephena Exp $ +// $Id: EventHandler.hxx,v 1.96 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #ifndef EVENTHANDLER_HXX @@ -62,7 +62,7 @@ enum EventMode { mapping can take place. @author Stephen Anthony - @version $Id: EventHandler.hxx,v 1.95 2006-12-12 01:02:12 stephena Exp $ + @version $Id: EventHandler.hxx,v 1.96 2006-12-28 18:31:26 stephena Exp $ */ class EventHandler { @@ -193,11 +193,6 @@ class EventHandler */ void quit() { handleEvent(Event::Quit, 1); } - /** - This method indicates whether a quit event has been received. - */ - inline bool doQuit() { return myQuitFlag; } - /** Save state to explicit state number (debugger uses this) */ @@ -555,9 +550,6 @@ class EventHandler // Indicates the current pause status bool myPauseFlag; - // Indicates whether to quit the emulator - bool myQuitFlag; - // Indicates whether the mouse cursor is grabbed bool myGrabMouseFlag; diff --git a/stella/src/emucore/OSystem.cxx b/stella/src/emucore/OSystem.cxx index 41cf52a1b..40548e0d5 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.84 2006-12-26 00:39:44 stephena Exp $ +// $Id: OSystem.cxx,v 1.85 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #include @@ -59,6 +59,7 @@ OSystem::OSystem() myLauncher(NULL), myDebugger(NULL), myCheatManager(NULL), + myQuitLoop(false), myRomFile(""), myFeatures(""), myFont(NULL), @@ -106,7 +107,7 @@ OSystem::~OSystem() delete myConsoleFont; // Remove any game console that is currently attached - delete myConsole; + deleteConsole(); // OSystem takes responsibility for framebuffer and sound, // since it created them @@ -317,36 +318,16 @@ void OSystem::toggleFrameBuffer() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void OSystem::createSound() { - // Delete the old sound device delete mySound; mySound = NULL; - - // And recreate a new sound device mySound = MediaFactory::createAudio(this); #ifndef SOUND_SUPPORT mySettings->setBool("sound", false); #endif - - // Re-initialize the sound object to current settings - switch(myEventHandler->state()) - { - case EventHandler::S_EMULATE: - case EventHandler::S_MENU: - case EventHandler::S_CMDMENU: - case EventHandler::S_DEBUGGER: - myConsole->initializeAudio(); - break; // S_EMULATE, S_MENU, S_DEBUGGER - - default: - break; - } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bool OSystem::createConsole(const string& romfile) { - // Delete any lingering console object - delete myConsole; myConsole = NULL; - bool retval = false, showmessage = false; // If a blank ROM has been given, we reload the current one (assuming one exists) @@ -368,11 +349,13 @@ bool OSystem::createConsole(const string& romfile) string md5; if(openROM(myRomFile, md5, &image, &size)) { - // Create an instance of the 2600 game console - // The Console c'tor takes care of updating the eventhandler state - myConsole = new Console(image, size, md5, this); - if(myConsole && myConsole->isValid()) + // Get all required info for creating a valid console + Cartridge* cart = (Cartridge*) NULL; + Properties props; + if(queryConsoleInfo(image, size, md5, &cart, props)) { + // Create an instance of the 2600 game console + myConsole = new Console(this, cart, props); #ifdef CHEATCODE_SUPPORT myCheatManager->loadCheats(md5); #endif @@ -389,6 +372,9 @@ bool OSystem::createConsole(const string& romfile) << " ROM file: " << myRomFile << endl << myConsole->about() << endl; + // Update the timing info for a new console run + resetLoopTiming(); + retval = true; } else @@ -411,9 +397,30 @@ bool OSystem::createConsole(const string& romfile) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystem::createLauncher() +void OSystem::deleteConsole() { mySound->close(); + if(myConsole) + { + if(mySettings->getBool("showinfo")) + { + double executionTime = (double) myTimingInfo.totalTime / 1000000.0; + double framesPerSecond = (double) myTimingInfo.totalFrames / executionTime; + cout << "Game console stats:" << endl + << " Total frames drawn: " << myTimingInfo.totalFrames << endl + << " Total time (sec): " << executionTime << endl + << " Frames per second: " << framesPerSecond << endl + << endl; + } + delete myConsole; myConsole = NULL; + } +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void OSystem::createLauncher() +{ + resetLoopTiming(); + setFramerate(60); myEventHandler->reset(EventHandler::S_LAUNCHER); createFrameBuffer(false); @@ -423,7 +430,6 @@ void OSystem::createLauncher() myLauncher->reStack(); myEventHandler->refreshDisplay(); - myFrameBuffer->setCursorState(); } @@ -528,7 +534,6 @@ bool OSystem::openROM(const string& rom, string& md5, uInt8** image, int* size) string OSystem::getROMInfo(const string& romfile) { ostringstream buf; - Console* console = (Console*) NULL; // Open the cartridge image and read it in uInt8* image; @@ -536,24 +541,50 @@ string OSystem::getROMInfo(const string& romfile) 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; + // Get all required info for creating a temporary console + Cartridge* cart = (Cartridge*) NULL; + Properties props; + if(queryConsoleInfo(image, size, md5, &cart, props)) + { + Console* console = new Console(this, cart, props); + if(console) + buf << console->about(); + else + buf << "ERROR: Couldn't get ROM info for " << romfile << " ..." << endl; + delete console; + } + 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(); } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +bool OSystem::queryConsoleInfo(const uInt8* image, uInt32 size, + const string& md5, + Cartridge** cart, Properties& props) +{ + myPropSet->getMD5(md5, props); + *cart = Cartridge::create(image, size, props, *mySettings); + if(!*cart) + return false; + + return true; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void OSystem::resetLoopTiming() +{ + memset(&myTimingInfo, 0, sizeof(TimingInfo)); + myTimingInfo.start = getTicks(); + myTimingInfo.virt = getTicks(); +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void OSystem::setDefaultJoymap() { @@ -621,6 +652,27 @@ void OSystem::pauseChanged(bool status) { } +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void OSystem::mainLoop() +{ + for(;;) + { + myTimingInfo.start = getTicks(); + myEventHandler->poll(myTimingInfo.start); + if(myQuitLoop) break; // Exit if the user wants to quit + myFrameBuffer->update(); + + myTimingInfo.current = getTicks(); + myTimingInfo.virt += myTimePerFrame; + + if(myTimingInfo.current < myTimingInfo.virt) + SDL_Delay((myTimingInfo.virt - myTimingInfo.current) / 1000); + + myTimingInfo.totalTime += (getTicks() - myTimingInfo.start); + myTimingInfo.totalFrames++; + } +} + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OSystem::OSystem(const OSystem& osystem) { diff --git a/stella/src/emucore/OSystem.hxx b/stella/src/emucore/OSystem.hxx index 7ae160959..e5c4a01ab 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.48 2006-12-26 00:39:44 stephena Exp $ +// $Id: OSystem.hxx,v 1.49 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #ifndef OSYSTEM_HXX @@ -45,7 +45,7 @@ class VideoDialog; other objects belong. @author Stephen Anthony - @version $Id: OSystem.hxx,v 1.48 2006-12-26 00:39:44 stephena Exp $ + @version $Id: OSystem.hxx,v 1.49 2006-12-28 18:31:26 stephena Exp $ */ class OSystem { @@ -247,6 +247,12 @@ class OSystem */ bool createConsole(const string& romfile = ""); + /** + Deletes the currently defined console, if it exists. + Also prints some statistics (fps, total frames, etc). + */ + void deleteConsole(); + /** Creates a new ROM launcher, to select a new ROM to emulate. */ @@ -280,18 +286,16 @@ class OSystem */ bool openROM(const string& rom, string& md5, uInt8** image, int* size); + /** + Issue a quit event to the OSystem. + */ + void quit() { myQuitLoop = true; } + public: ////////////////////////////////////////////////////////////////////// // The following methods are system-specific and must be implemented // in derived classes. ////////////////////////////////////////////////////////////////////// - /** - This method runs the main loop. Since different platforms - may use different timing methods and/or algorithms, this method has - been abstracted to each platform. - */ - virtual void mainLoop() = 0; - /** This method returns number of ticks in microseconds. @@ -308,6 +312,14 @@ class OSystem // The following methods are system-specific and can be overrided in // derived classes. Otherwise, the base methods will be used. ////////////////////////////////////////////////////////////////////// + /** + This method runs the main loop. Since different platforms + may use different timing methods and/or algorithms, this method can + be overrided. However, the port then takes all responsibility for + running the emulation and taking care of timing. + */ + virtual void mainLoop(); + /** This method determines the default mapping of joystick buttons to Stella events for a specific system/platform. @@ -414,6 +426,9 @@ class OSystem // Time per frame for a video update, based on the current framerate uInt32 myTimePerFrame; + // Indicates whether to stop the main loop + bool myQuitLoop; + private: string myBaseDir; string myStateDir; @@ -435,6 +450,16 @@ class OSystem // The font object to use for the console/debugger GUI::Font* myConsoleFont; + // Indicates whether the main processing loop should proceed + struct TimingInfo { + uInt32 start; + uInt32 current; + uInt32 virt; + uInt32 totalTime; + uInt32 totalFrames; + }; + TimingInfo myTimingInfo; + private: /** Creates the various framebuffers/renderers available in this system @@ -450,6 +475,20 @@ class OSystem */ void createSound(); + /** + Query valid info for creating a valid console. + + @return Success or failure for a valid console + */ + bool queryConsoleInfo(const uInt8* image, uInt32 size, const string& md5, + Cartridge** cart, Properties& props); + + /** + Initializes the timing so that the mainloop is reset to its + initial values. + */ + void resetLoopTiming(); + // Copy constructor isn't supported by this class so make it private OSystem(const OSystem&); diff --git a/stella/src/emucore/stella.pro b/stella/src/emucore/stella.pro index 7b451d59b..3a7725d16 100644 --- a/stella/src/emucore/stella.pro +++ b/stella/src/emucore/stella.pro @@ -9,7 +9,6 @@ "Cartridge.Name" "AStar (PAL60)" "Cartridge.Rarity" "Homebrew" "Display.Format" "PAL60" -"Display.Height" "250" "" "Cartridge.MD5" "9b150a42fc788960fbb4cbe250259ee2" @@ -28,15 +27,11 @@ "Cartridge.Name" "11 Sprite Demo (Piero Cavina) (PD)" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Rarity" "New Release" -"Display.Height" "196" -"Display.YStart" "36" "" "Cartridge.MD5" "02a5fc90a0d183f870e8eebac1f16591" "Cartridge.Name" "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "246" -"Display.YStart" "41" "" "Cartridge.MD5" "00ce0bdd43aed84a983bef38fe7f5ee3" @@ -44,34 +39,23 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11012" "Cartridge.Rarity" "Rare" -"Display.Height" "178" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "44" "" "Cartridge.MD5" "00b7b4cbec81570642283e7fc1ef17af" -"Cartridge.Name" "Congo Bongo (1983) (Sega)" "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "006-01" +"Cartridge.Name" "Congo Bongo (1983) (Sega)" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" +"Display.YStart" "36" "" "Cartridge.MD5" "000509d1ed2b8d30a9d94be1b3b5febb" "Cartridge.Name" "Jungle Jane (2003) (Greg Zumwalt) (Pitfall! Hack)" -"Display.YStart" "40" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "008543ae43497af015e9428a5e3e874e" "Cartridge.Name" "Qb (V2.09) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -85,13 +69,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "00ce76ad69cdc2fa36ada01ae092d5a6" "Cartridge.Name" "Cosmic Avenger (PAL) [p1][!]" -"Display.YStart" "64" "" "Cartridge.MD5" "00df776eb994d729db9eb13b17887aa6" @@ -101,8 +82,6 @@ "Cartridge.MD5" "00dc28b881989c39a6cf87a892bd3c6b" "Cartridge.Name" "Krull (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "196" -"Display.YStart" "35" "" "Cartridge.MD5" "00e19ebf9d0817ccfb057e262be1e5af" @@ -110,38 +89,28 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2639" "Cartridge.Rarity" "Rare" -"Display.Height" "230" -"Display.YStart" "57" "" "Cartridge.MD5" "00eaee22034aff602f899b684c107d77" "Cartridge.Name" "Time Race (Rainbow Vision) (PAL) [!]" -"Display.YStart" "64" -"Display.Height" "222" "" "Cartridge.MD5" "028024fb8e5e5f18ea586652f9799c96" -"Cartridge.Name" "Carnival (1982) (Coleco)" "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2468" +"Cartridge.Name" "Carnival (1982) (Coleco)" "Cartridge.Rarity" "Uncommon" -"Display.Height" "212" -"Display.YStart" "27" +"Display.YStart" "26" +"Display.Height" "214" "" "Cartridge.MD5" "01e5c81258860dd82f77339d58bc5f5c" "Cartridge.Name" "Corrida da Matematica (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "01b09872dcd9556427761f0ed64aa42a" "Cartridge.Name" "Galaga (River Raid clone) [p1]" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "01acf9881a2f8bfa2d49982b1b10fb64" @@ -153,7 +122,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2656" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -165,22 +133,16 @@ "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "192" "" "Cartridge.MD5" "01297d9b450455dd716db9658efb2fae" "Cartridge.Name" "Save Our Ship (TechnoVision) (PAL) [!]" "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "48" "" "Cartridge.MD5" "01293bd90a4579abb7aed2f7d440681f" "Cartridge.Name" "Snoopy (1983) (Century) (PAL) [!]" -"Display.YStart" "43" -"Display.Height" "229" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "0173675d40a8d975763ee493377ca87d" @@ -188,8 +150,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2667" "Cartridge.Rarity" "Rare" -"Display.Height" "250" -"Display.YStart" "56" "" "Cartridge.MD5" "01cb3e8dfab7203a9c62ba3b94b4e59f" @@ -197,8 +157,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26127" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "36" "" "Cartridge.MD5" "02066b17f29082412c6754c1a2d6302e" @@ -210,7 +168,6 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33383" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "67" "" "Cartridge.MD5" "0277c449fae63f6f1c8f94dedfcf0058" @@ -220,10 +177,6 @@ "Cartridge.MD5" "027a59a575b78860aed780b2ae7d001d" "Cartridge.Name" "Pressure Cooker (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "02811151906e477d47c135db5b1699c6" @@ -238,18 +191,12 @@ "Console.LeftDifficulty" "A" "Console.RightDifficulty" "A" "Controller.Right" "None" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "64" "" "Cartridge.MD5" "038e1e79c3d4410defde4bfe0b99cc32" "Cartridge.Name" "Aquaventure (1983) (Atari) (Prototype)" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "200" -"Display.YStart" "35" "Emulation.HmoveBlanks" "No" "" @@ -266,18 +213,12 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5300" "Cartridge.Rarity" "Common" -"Display.Height" "229" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "43" "" "Cartridge.MD5" "02dcba28c614fec7ca25955327128abb" "Cartridge.Name" "Laseresal 2002 (PAL-49) (PD)" "Cartridge.Manufacturer" "Andrew Wallace" "Cartridge.Rarity" "New Release" -"Display.YStart" "47" -"Display.Height" "241" "" "Cartridge.MD5" "033e21521e0bf4e54e8816873943406d" @@ -285,8 +226,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11020" "Cartridge.Rarity" "Rare" -"Display.Height" "229" -"Display.YStart" "29" "" "Cartridge.MD5" "0375f589f7da06d2d2be532e0d4d4b94" @@ -294,12 +233,11 @@ "" "Cartridge.MD5" "0443cfa9872cdb49069186413275fa21" -"Cartridge.Name" "Burgertime (1982) (Mattel)" "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4518" +"Cartridge.Name" "Burgertime (1982) (Mattel)" "Cartridge.Rarity" "Rare" -"Display.Height" "180" -"Display.YStart" "31" +"Display.YStart" "26" "" "Cartridge.MD5" "039cf18b459d33b8a8fca31d06c4c244" @@ -314,8 +252,6 @@ "Cartridge.Name" "Pengo - 1 Player Only (1984) (Atari)" "Cartridge.ModelNo" "CX2690" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "03c3f7ba4585e349dd12bfa7b34b7729" @@ -323,8 +259,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "004-01" "Cartridge.Rarity" "Rare" -"Display.Height" "219" -"Display.YStart" "35" "Display.Phosphor" "Yes" "" @@ -333,22 +267,16 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-202" "Cartridge.Rarity" "Rare" -"Display.Height" "199" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "041b5e56bbc650db574bd8db3fae2696" "Cartridge.Name" "Thrust (V1.0) (2000) (TJ)" "Cartridge.Rarity" "New Release" -"Display.Height" "201" "" "Cartridge.MD5" "047ac3b9faea64522b7a23c4465a7aa8" "Cartridge.Name" "Defender (1981) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "54" "" "Cartridge.MD5" "045035f995272eb2deb8820111745a07" @@ -356,13 +284,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.YStart" "30" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "04dfb4acac1d0909e4c360fd2ac04480" "Cartridge.Name" "Jammed (2001) (XYPE) (NTSC)" -"Display.YStart" "26" "" "Cartridge.MD5" "049626cbfb1a5f7a5dc885a0c4bb758e" @@ -370,10 +296,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "58" "" "Cartridge.MD5" "04856e3006a4f5f7b4638da71dad3d88" @@ -381,36 +303,22 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26176" "Cartridge.Rarity" "Rare" -"Display.Height" "211" -"Display.YStart" "64" "" "Cartridge.MD5" "04b488d4eef622d022a0021375e7e339" "Cartridge.Name" "Tennis (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "230" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "0546f4e6b946f38956799dd00caab3b1" "Cartridge.Name" "My Golf (1990) (HES) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "HES / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "04fccc7735155a6c1373d453b110c640" "Cartridge.Name" "My Golf (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "05f11fb2e45c4e47424d3cb25414d278" @@ -419,7 +327,6 @@ "Cartridge.MD5" "056ff67dd9715fafa91fb8b0ddcc4a46" "Cartridge.Name" "Brick Kick (PAL) [p1][!]" -"Display.Height" "230" "" "Cartridge.MD5" "05d61b925d3d2474bab83f0a79bb5df1" @@ -431,10 +338,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "05824fcbe615dbca836d061a140a50e0" @@ -446,7 +349,6 @@ "Cartridge.MD5" "05ccf96247af12eef59698f1a060a54f" "Cartridge.Name" "King Arthur (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "41" "" "Cartridge.MD5" "05aff8f626ef870432ae3b3d9d5aa301" @@ -454,10 +356,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "05b45ba09c05befa75ac70476829eda0" @@ -469,22 +367,14 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "199" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "58" "" "Cartridge.MD5" "05c60458ec69e7fe8b1be973852d84f1" "Cartridge.Name" "Test (1996) (J.V. Matthews) (PD)" -"Display.YStart" "56" -"Display.Height" "194" "" "Cartridge.MD5" "05eb4347f0ec8f4783983ca35ffd8d1b" "Cartridge.Name" "Qb (2.06) (Retroactive) (PAL)" -"Display.YStart" "60" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -493,8 +383,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2656" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "06742cf522f23797157f215a1dc8a1a9" @@ -503,36 +391,25 @@ "Cartridge.MD5" "0614ed51acd027d531e7c85c4f435292" "Cartridge.Name" "Narnia (Glenn Saunders) (PD)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "1862fca4f98e66f363308b859b5863af" "Cartridge.Name" "128-in-1 Junior Console (Chip 1) (PAL) [!]" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "0d6b974fe58a1bdd453600401c407856" "Cartridge.Name" "128-in-1 Junior Console (Chip 3) (PAL) [!]" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "09274c3fc1c43bf1e362fda436651fd8" "Cartridge.Name" "Acid Drop (NTSC Conversion) (TJ)" +"Display.YStart" "8" +"Display.Height" "240" "" "Cartridge.MD5" "06cfd57f0559f38b9293adae9128ff88" "Cartridge.Name" "Adventures on GX-12 (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "06b6c5031b8353f3a424a5b86b8fe409" @@ -540,10 +417,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-023" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "06953ed762220dba63d63930d4ad0cc3" @@ -551,20 +424,15 @@ "" "Cartridge.MD5" "073d7aff37b7601431e4f742c36c0dc1" -"Cartridge.Name" "Bermuda (PAL)" "Cartridge.ModelNo" "SS-009" +"Cartridge.Name" "Bermuda (PAL)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "30" +"Display.YStart" "10" "" "Cartridge.MD5" "06db908011065e5ebb37f4e253c2a0b0" "Cartridge.Name" "Gopher (1982) (US Games) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.Height" "197" -"Display.YStart" "64" "" "Cartridge.MD5" "071f84d10b343c7c05ce3e32af631687" @@ -575,8 +443,6 @@ "Cartridge.MD5" "06e5dc181a8eda1c31cc7c581c68b6ef" "Cartridge.Name" "Tac Scan (1982) (Sega) (PAL) [p1][!]" "Cartridge.Manufacturer" "Sega" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -593,10 +459,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2650 / 4975168" "Cartridge.Rarity" "Common" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "64" "" "Cartridge.MD5" "07c76f2d88552d20ad2c0ed7aef406c6" @@ -606,9 +468,6 @@ "Cartridge.MD5" "07973be3ecfd55235bf59aa56bdef28c" "Cartridge.Name" "Eddy Langfinger, der Museumsdieb (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "57" "Display.Phosphor" "Yes" "" @@ -617,9 +476,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26162" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "178" -"Display.Width" "152" -"Display.YStart" "70" "" "Cartridge.MD5" "075ec8eb0aa39f0539bbaf5980203edb" @@ -628,8 +484,6 @@ "Cartridge.MD5" "0751f342ee4cf28f2c9a6e8467c901be" "Cartridge.Name" "Super Baseball (1988) (Atari) (PAL) [!]" -"Display.YStart" "50" -"Display.Height" "220" "" "Cartridge.MD5" "079fe9103515d15bc108577e234a484d" @@ -649,10 +503,6 @@ "Cartridge.Manufacturer" "Froggo" "Cartridge.ModelNo" "FG 1008" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "07f91e33e76f53bb9d2731fd5d8a35a5" @@ -660,16 +510,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "0894aa7be77521f9df562be8d9555fe6" "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [a2][!]" "Cartridge.ModelNo" "2451" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "0856f202b18cd46e44fd1dc3b42e9bfb" @@ -681,9 +527,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5300" "Cartridge.Rarity" "Common" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "4" "" "Cartridge.MD5" "08188785e2b8300983529946dbeff4d2" @@ -694,8 +537,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "083b17a1a6b3efc464ba7e789f1e194d" @@ -707,7 +548,6 @@ "Cartridge.Manufacturer" "Charles Morgan" "Cartridge.Note" "Hack of Tanks But No Tanks (Zimag)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "27" "" "Cartridge.MD5" "083e7cae41a874b2f9b61736c37d2ffe" @@ -715,8 +555,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3600" "Cartridge.Rarity" "Uncommon" -"Display.Height" "218" -"Display.YStart" "50" "" "Cartridge.MD5" "085322bae40d904f53bdcc56df0593fc" @@ -735,8 +573,6 @@ "Cartridge.Manufacturer" "Carrere Video" "Cartridge.ModelNo" "VC 1012" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.YStart" "57" "" "Cartridge.MD5" "08f4dc6f118f7c98e2406c180c08e78e" @@ -746,28 +582,19 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Height" "205" -"Display.YStart" "55" "" "Cartridge.MD5" "08bd4c1dcc843f6a0b563d9fd80b3b11" "Cartridge.Name" "Phantom Panzer II (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "212" -"Display.YStart" "57" "" "Cartridge.MD5" "08d60a58a691c7f690162850302dc0e1" "Cartridge.Name" "Poker Squares (V0.27) (PAL) (2001) (B. Watson)" -"Display.YStart" "45" "" "Cartridge.MD5" "08d1b6d75206edb999252caf542a2c7f" "Cartridge.Name" "Super Home Run (2003) (Larry Petit) (Home Run Hack)" -"Display.YStart" "41" -"Display.Height" "218" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "0906c6e0e4bda9c10cfa4c5fc64d2f4b" @@ -781,16 +608,14 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2667" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" "" "Cartridge.MD5" "0c7926d660f903a2d6910c254660c32c" -"Cartridge.Name" "Air-Sea Battle (1977) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2602" +"Cartridge.Name" "Air-Sea Battle (1977) (Atari) (PAL) [!]" "Cartridge.Rarity" "Uncommon" -"Display.Height" "256" -"Display.YStart" "39" +"Display.Height" "260" "" "Cartridge.MD5" "0ae3497e731ca0bf6a77b23441d9d9f9" @@ -815,10 +640,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2654" "Cartridge.Rarity" "Common" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "097074f24cde141fe6a0f26a10333265" @@ -829,8 +650,6 @@ "Cartridge.Name" "Pete Rose Baseball (1988) (Absolute)" "Cartridge.ModelNo" "AK-045" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "0963aa9f7f6cf5a36ff700001583624e" @@ -838,22 +657,15 @@ "Cartridge.Manufacturer" "Franklin Cruz" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "0945081a6bd00345ff3d58eb7a07330a" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "096649575e451508006b17e0353259a5" "Cartridge.Name" "Yar Vs. Yar (2002) (Justin J. Scott) (Yars' Revenge Hack)" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -866,16 +678,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26154" "Cartridge.Rarity" "Uncommon" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "42" "" "Cartridge.MD5" "097936b07e0e0117b9026ae6835eb168" "Cartridge.Name" "Trick Shot (1982) (Imagic) (PAL) [a1][!]" -"Display.YStart" "53" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -890,8 +696,6 @@ "Cartridge.Note" "Uses the Joystick Controllers (swapped)" "Cartridge.Rarity" "Uncommon" "Console.SwapPorts" "Yes" -"Display.Height" "219" -"Display.YStart" "32" "" "Cartridge.MD5" "0ac0d491763153fac75f5337ce32a9d6" @@ -903,17 +707,11 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3201" "Cartridge.Rarity" "Common" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "0acaf71e60b89f6b6eab63db6ab84510" "Cartridge.Name" "This Planet Sucks (Greg Troutman) [a2]" "Cartridge.Rarity" "New Release" -"Display.Height" "207" -"Display.YStart" "40" "" "Cartridge.MD5" "0ad9a358e361256b94f3fb4f2fa5a3b1" @@ -923,17 +721,11 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "180" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "0b33252b680b65001e91a411e56e72e9" "Cartridge.Name" "Atlantis (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "0af51ceb4aecc7a8fc89781ac44a1973" @@ -941,8 +733,6 @@ "Cartridge.Manufacturer" "Barry Laws Jr." "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "0b1056f1091cfdc5eb0e2301f47ac6c3" @@ -954,10 +744,6 @@ "Cartridge.MD5" "0afe6ae18966795b89314c3797dd2b1e" "Cartridge.Name" "Moon Patrol (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "0b01909ba84512fdaf224d3c3fd0cf8d" @@ -966,10 +752,6 @@ "Cartridge.MD5" "0b24658714f8dff110a693a2052cc207" "Cartridge.Name" "Seaquest (CCE) [!]" -"Display.YStart" "41" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "0c0392db94a20e4d006d885abbe60d8e" @@ -981,8 +763,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3205" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "39" "Display.Phosphor" "Yes" "" @@ -991,10 +771,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "AX-039" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "0bf1e354304f46c0caf8fc0f6f5e9525" @@ -1002,16 +778,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" "" "Cartridge.MD5" "0b577e63b0c64f9779f315dca8967587" "Cartridge.Name" "Missile Control (AKA Raketen-Angriff) (Ariola) (PAL) [p1][!]" "Cartridge.Manufacturer" "Ariola" -"Display.YStart" "55" "" "Cartridge.MD5" "0b8d3002d8f744a753ba434a4d39249a" @@ -1019,9 +790,6 @@ "Cartridge.Manufacturer" "Sears" "Cartridge.ModelNo" "CX2619 / 4975159" "Cartridge.Rarity" "Rare" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" @@ -1029,10 +797,6 @@ "Cartridge.Name" "Home Run (1978) [!]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Height" "218" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "0c54811cf3b1f1573c9164d5f19eca65" @@ -1040,7 +804,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-001" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "53" "" "Cartridge.MD5" "0c48e820301251fbb6bcdc89bd3555d9" @@ -1048,10 +811,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "0c35806ff0019a270a7acae68de89d28" @@ -1059,15 +818,10 @@ "Cartridge.Manufacturer" "Froggo" "Cartridge.ModelNo" "FG 1003" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "0cebb0bb45a856b23f56d21ce7d1bc34" "Cartridge.Name" "Crash Dive (1983) (20th Century Fox) (PAL) [!]" -"Display.YStart" "47" -"Display.Height" "240" "" "Cartridge.MD5" "0cb7af80fd0ddef84844481d85e5d29b" @@ -1079,10 +833,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-049" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "38" "" "Cartridge.MD5" "0c80751f6f7a3b370cc9e9f39ad533a7" @@ -1093,8 +843,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "243" -"Display.YStart" "37" "" "Cartridge.MD5" "0cc8224ff1edfe458e8629e9e5fe3f5b" @@ -1105,8 +853,6 @@ "Cartridge.Name" "Wing War (Imagic) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Imagic / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "200" -"Display.YStart" "31" "" "Cartridge.MD5" "0d5af65ad3f19558e6f8e29bf2a9d0f8" @@ -1114,8 +860,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26151" "Cartridge.Rarity" "Uncommon" -"Display.Height" "185" -"Display.YStart" "64" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -1123,9 +867,6 @@ "Cartridge.MD5" "0d1b3abf681a2fc9a6aa31a9b0e8b445" "Cartridge.Name" "Laser Blast (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "55" "" "Cartridge.MD5" "0cfdd2f3b243cac21f38a0f09f54bead" @@ -1142,10 +883,6 @@ "Cartridge.MD5" "0d35618b6d76ddd46d2626e9e3e40db5" "Cartridge.Name" "X-Doom V.26 (PD)" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "0db4f4150fecf77e4ce72ca4d04c052f" @@ -1153,9 +890,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2618 / 4975123" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "0d786a41695e5fc8cffd05a6dbb3f659" @@ -1167,10 +901,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-005" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "0d7e630a14856f4d52c9666040961d4d" @@ -1181,8 +911,7 @@ "Cartridge.Name" "Acid Drop (1992) (Salu) (PAL) [!]" "Cartridge.Manufacturer" "Salu" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "255" -"Display.YStart" "52" +"Display.YStart" "54" "" "Cartridge.MD5" "157bddb7192754a45372be196797f284" @@ -1191,16 +920,10 @@ "Cartridge.ModelNo" "CX2613 / 4975154" "Cartridge.Rarity" "Common" "Controller.Right" "None" -"Display.Height" "194" -"Display.YStart" "35" "" "Cartridge.MD5" "1287535256bf5dff404839ac9e25c3e7" "Cartridge.Name" "Alien Pac-Man (Rev 2) by PacManPlus (Alien Hack)" -"Display.YStart" "39" -"Display.Height" "188" -"Display.Width" "136" -"Display.XStart" "12" "Display.Phosphor" "Yes" "" @@ -1209,40 +932,26 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33391" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "214" -"Display.YStart" "67" "" "Cartridge.MD5" "0fcff6fe3b0769ad5d0cf82814d2a6d9" "Cartridge.Name" "Aufruhr im Zoo (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "220" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "51" "" "Cartridge.MD5" "0e08cd2c5bcf11c6a7e5a009a7715b6a" "Cartridge.Name" "Boing! (PD) [a1]" "Cartridge.Rarity" "New Release" -"Display.Height" "175" -"Display.YStart" "35" "" "Cartridge.MD5" "0e0808227ef41f6825c06f25082c2e56" "Cartridge.Name" "Candi (Space Invaders Hack)[o1]" "Cartridge.Note" "Hack of Space Invaders (Atari)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "0de53160a8b54c3aa5aed8d68c970b62" "Cartridge.Name" "Fuchs & Schweinchen Schlau (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "0dd4c69b5f9a7ae96a7a08329496779a" @@ -1250,8 +959,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-001" "Cartridge.Rarity" "Rare" -"Display.Height" "211" -"Display.YStart" "53" "" "Cartridge.MD5" "0dfbdadf8f1bc718e7e1bb3ccd5fef3d" @@ -1262,7 +969,6 @@ "Cartridge.Name" "Cakewalk (PAL Conversion) (Fabrizio Zavagli)" "Cartridge.Manufacturer" "Fabrizio Zavagli / CommaVid" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.YStart" "27" "" "Cartridge.MD5" "0e224ea74310da4e7e2103400eb1b4bf" @@ -1276,14 +982,11 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.YStart" "50" "" "Cartridge.MD5" "0ef64cdbecccb7049752a3de0b7ade14" "Cartridge.Name" "Combat (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "39" "" "Cartridge.MD5" "0eecb5f58f55de9db4eedb3a0f6b74a8" @@ -1291,7 +994,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99002" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "0f643c34e40e3f1daafd9c524d3ffe64" @@ -1303,6 +1005,7 @@ "Cartridge.MD5" "0f341d1f4e144e3163d9a5fc5a662b79" "Cartridge.Name" "RUN Platform Demo (PD)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "0f14c03050b35d6b1d8850b07578722d" @@ -1323,22 +1026,16 @@ "Cartridge.MD5" "0fba7d8c3520bdb681f75494e498ec36" "Cartridge.Name" "Gunfight 2600 - Final Run (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "0f8043715d66a4bbed394ef801d99862" "Cartridge.Name" "Robin Hood (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "206" -"Display.YStart" "64" "" "Cartridge.MD5" "0fbf618be43d4396856d4244126fe7dc" "Cartridge.Name" "Labyrinth (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "180" -"Display.YStart" "64" "" "Cartridge.MD5" "102672bbd7e25cd79f4384dd7214c32b" @@ -1355,8 +1052,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3204" "Cartridge.Rarity" "Uncommon" -"Display.Height" "197" -"Display.YStart" "64" "" "Cartridge.MD5" "0fd518e9435f5ab0893d79ee0d63fc92" @@ -1374,10 +1069,6 @@ "Cartridge.MD5" "1228c01cd3c4b9c477540c5adb306d2a" "Cartridge.Name" "Basketball (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "10958cd0a1a81d599005f1797ab0e51d" @@ -1385,10 +1076,6 @@ "Cartridge.Manufacturer" "Eduardo" "Cartridge.Note" "Hack of Centipede (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "106855474c69d08c8ffa308d47337269" @@ -1396,8 +1083,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26151" "Cartridge.Rarity" "Uncommon" -"Display.Height" "170" -"Display.YStart" "48" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -1411,8 +1096,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2648 / 4975161" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.YStart" "33" "" "Cartridge.MD5" "114c599454d32f74c728a6e1f71012ba" @@ -1420,10 +1103,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-015" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "110ac8ecaf1b69f41bc94c59dfcb8b2d" @@ -1431,37 +1110,26 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3200" "Cartridge.Rarity" "Common" -"Display.Height" "194" -"Display.YStart" "39" "" "Cartridge.MD5" "10f62443f1ae087dc588a77f9e8f43e9" "Cartridge.Name" "Dodge 'em (Atari) (PAL) [a1][!]" -"Display.YStart" "64" "" "Cartridge.MD5" "10a3cd14e5dcfdde6ff216a14ce7b7dd" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "220" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "111029770226b319524134193886a10e" "Cartridge.Name" "Gunfight 2600 - One Limit Reached! (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "229" "" "Cartridge.MD5" "11330eaa5dd2629052fac37cfe1a0b7d" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "128-in-1 Junior Console" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "113cd09c9771ac278544b7e90efe7df2" @@ -1487,18 +1155,13 @@ "Cartridge.Manufacturer" "Absolute" "Cartridge.ModelNo" "AG-041" "Cartridge.Rarity" "Rare" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "1278f74ca1dfaa9122df3eca3c5bcaad" -"Cartridge.Name" "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-013" -"Display.Height" "245" -"Display.YStart" "42" +"Cartridge.Name" "Bi! Bi! (AKA Ungeheuer der Tiefe) (Starsoft) (PAL) [!]" +"Display.YStart" "39" "" "Cartridge.MD5" "1267e3c6ca951ff1df6f222c8f813d97" @@ -1506,8 +1169,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3611" "Cartridge.Rarity" "Common" -"Display.Height" "211" -"Display.YStart" "58" "" "Cartridge.MD5" "1266b3fd632c981f3ef9bdbf9f86ce9a" @@ -1515,10 +1176,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-034-04" "Cartridge.Rarity" "Rare" -"Display.Height" "233" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "" "Cartridge.MD5" "13d8326bf5648db4dafce45d25e62ddd" @@ -1530,10 +1187,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2650 / 4975168" "Cartridge.Rarity" "Common" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "" "Cartridge.MD5" "133b56de011d562cbab665968bde352b" @@ -1541,10 +1194,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-038" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "12cd04d3298633413a756795c49dc0c6" @@ -1552,10 +1201,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "12bca8305d5ab8ea51fe1cfd95d7ab0e" @@ -1563,14 +1208,11 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100250" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "130c5742cd6cbe4877704d733d5b08ca" "Cartridge.Name" "Laser Base (AKA World End) (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Height" "239" "" "Cartridge.MD5" "12d7e0d6b187889f8d150bf7034d1db2" @@ -1579,8 +1221,6 @@ "Cartridge.MD5" "133a4234512e8c4e9e8c5651469d4a09" "Cartridge.Name" "Obelix (1983) (Atari) (NTSC)" -"Display.YStart" "37" -"Display.Height" "194" "" "Cartridge.MD5" "131864e1d18d3406048700d3c0760417" @@ -1588,17 +1228,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26168" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "1345e972dbe08ea3e70850902e20e1a5" "Cartridge.Name" "Dark Mage (rough beta) (Greg Troutman) (PD)" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Rarity" "New Release" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Display.Phosphor" "Yes" "" @@ -1609,16 +1244,10 @@ "Cartridge.MD5" "1351c67b42770c1bd758c3e42f553fea" "Cartridge.Name" "Keystone Kapers (Digivision) (Brazil) [p1][!]" "Cartridge.Manufacturer" "Digivision" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "1367e41858be525710eb04d0dab53505" "Cartridge.Name" "Zelda (2003) (Kyle Pittman) (Adventure Hack)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "13782adc70e285d51e2f4dd9c3094166" @@ -1630,15 +1259,11 @@ "Cartridge.Manufacturer" "Christian Samuel" "Cartridge.Note" "Hack of E.T. The Extra-Terrestrial (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "190" -"Display.YStart" "36" "" "Cartridge.MD5" "13a991bc9c2ff03753aeb322d3e3e2e5" "Cartridge.Name" "Galactic (G) (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" -"Display.Height" "220" -"Display.YStart" "64" "" "Cartridge.MD5" "13a37cf8170a3a34ce311b89bde82032" @@ -1646,10 +1271,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2684" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "13895ef15610af0d0f89d588f376b3fe" @@ -1657,23 +1278,15 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" "" "Cartridge.MD5" "13aa1f9ac4249947e4af61319d9a08f2" "Cartridge.Name" "RealSports Tennis (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "14c2548712099c220964d7f044c59fd9" "Cartridge.Name" "Boing! (PD)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "Display.Phosphor" "Yes" "" @@ -1681,17 +1294,11 @@ "Cartridge.Name" "Gunfight 2600 - Early Play-kernel (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.Height" "213" -"Display.YStart" "35" "" "Cartridge.MD5" "1423f560062c4f3c669d55891a2bcbe7" "Cartridge.Name" "M.A.S.H. (CCE) (no logo) (PAL) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "140909d204abd6841c64cdad4d7765b4" @@ -1711,21 +1318,16 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "CX2631" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "1442d1b35a6478fba22ae7dd1fcb5634" "Cartridge.Name" "Thrust (V0.2) (2000) (TJ)" "Cartridge.Rarity" "New Release" -"Display.Height" "197" "" "Cartridge.MD5" "1428029e762797069ad795ce7c6a1a93" "Cartridge.Name" "Thunderground (1983) (Sega) (PAL) [p1][!]" "Cartridge.Manufacturer" "Sega" -"Display.YStart" "49" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -1737,9 +1339,6 @@ "Cartridge.Name" "Polo (Atari) (Prototype) [o1]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "14dbb3686dd31964332dc2ef0c55cad0" @@ -1758,10 +1357,6 @@ "Cartridge.MD5" "153f40e335e5cb90f5ce02e54934ab62" "Cartridge.Name" "Pro Wrestling (Absolute-Activision) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "152c253478b009c275e18cd731b48561" @@ -1771,8 +1366,6 @@ "Cartridge.MD5" "152e55f88af3ff647e75a3070b7b6842" "Cartridge.Name" "Turmoil (198x) (Activision)" "Cartridge.Manufacturer" "Activision" -"Display.Height" "186" -"Display.YStart" "52" "" "Cartridge.MD5" "1542662f665d2ffaa77b4b897dd2e2af" @@ -1781,10 +1374,6 @@ "Cartridge.MD5" "155fa7f479dcba3b10b1494e236d6010" "Cartridge.Name" "Tomcat - The F-14 Flight Simulator (2002) (Skyworks) [!]" -"Display.YStart" "57" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "171cd6b55267573e6a9c2921fb720794" @@ -1792,8 +1381,6 @@ "Cartridge.Manufacturer" "Atari / Kurt Howe" "Cartridge.Rarity" "New Release (Hack)" "Controller.Right" "None" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "16cb43492987d2f32b423817cdaaf7c4" @@ -1801,8 +1388,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2602" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "39" "" "Cartridge.MD5" "15bf2ef7583bfcbbba630847a1dc5539" @@ -1816,15 +1401,14 @@ "" "Cartridge.MD5" "15b498199ed0ed28057bf0dbdce9b8d8" -"Cartridge.Name" "Jammed (V0.2) (Demo) (2001) (TJ)" "Cartridge.Manufacturer" "Hozer Video Games" +"Cartridge.Name" "Jammed (V0.2) (Demo) (2001) (TJ)" "Cartridge.Rarity" "New Release" -"Display.YStart" "22" +"Display.YStart" "24" "" "Cartridge.MD5" "159e5cd6ccb968015f49aed5adbc91eb" "Cartridge.Name" "Yar's Defeat (2002) (Justin J. Scott) (Yars' Revenge Hack)" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -1833,10 +1417,6 @@ "Cartridge.Manufacturer" "Data Age" "Cartridge.ModelNo" "112-008" "Cartridge.Rarity" "Rare" -"Display.Height" "206" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "15c11ab6e4502b2010b18366133fc322" @@ -1861,17 +1441,11 @@ "Console.LeftDifficulty" "A" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "243" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "0" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "163e7e757e2dc44469123ff0e5daec5e" "Cartridge.Name" "Many Blue Bars and Text Demo 2 (PD)" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "169d4c7bd3a4d09e184a3b993823d048" @@ -1884,14 +1458,10 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5666" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "27" "" "Cartridge.MD5" "16cc6d1b4ddce51c767a1ba8e5ff196c" "Cartridge.Name" "Big - Move This Demo 2 (PD)" -"Display.Height" "194" -"Display.YStart" "35" "Display.Phosphor" "Yes" "" @@ -1902,23 +1472,17 @@ "Cartridge.MD5" "16e04823887c547dc24bc70dff693df4" "Cartridge.Name" "Tennis (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "16f494f20af5dc803bc35939ef924020" "Cartridge.Name" "Video Simon (Mark De Smet)" "Cartridge.Manufacturer" "Mark De Smet" "Cartridge.Rarity" "New Release" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "1733772165d7b886a94e2b4ed0f74ccd" "Cartridge.Name" "Boring Journey Escape (Journey - Escape Hack)" +"Display.Height" "230" "" "Cartridge.MD5" "17d000a2882f9fdaa8b4a391ad367f00" @@ -1926,10 +1490,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2676" "Cartridge.Rarity" "Common" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "176d3fba7d687f2b23158098e103c34a" @@ -1944,8 +1504,6 @@ "Cartridge.Name" "Multi-Sprite Demo V1.1 (Piero Cavina) (PD)" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Rarity" "New Release" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "17512d0c38f448712f49f36f9d185c4e" @@ -1963,10 +1521,6 @@ "Cartridge.Name" "Pitfall! (Steroids Hack)" "Cartridge.Manufacturer" "HCC Software" "Cartridge.Note" "Hack of Pitfall! (Activision)" -"Display.Height" "195" -"Display.Width" "148" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "17c0a63f9a680e7a61beba81692d9297" @@ -1976,7 +1530,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "PADDLES" -"Display.Height" "196" "" "Cartridge.MD5" "17ba72433dd41383065d4aa6dedb3d91" @@ -1988,14 +1541,10 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5659" "Cartridge.Rarity" "Common" -"Display.Height" "201" -"Display.YStart" "33" "" "Cartridge.MD5" "17ee158d15e4a34f57a837bc1ce2b0ce" "Cartridge.Name" "Joust (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -2007,7 +1556,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "None" -"Display.YStart" "27" "" "Cartridge.MD5" "180c234496f31a8671226277e0afbf2f" @@ -2016,27 +1564,20 @@ "Cartridge.MD5" "183020a80848e06a1238a1ab74079d52" "Cartridge.Name" "Missile Command (Amiga Mouse) (PAL) (2002) (TJ)" -"Display.YStart" "40" -"Display.Height" "256" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "715dd9e0240638d441a3add49316c018" "Cartridge.Name" "128-in-1 Junior Console (Chip 2) (PAL) [!]" -"Display.YStart" "50" "" "Cartridge.MD5" "5b9c2e0012fbfd29efd3306359bbfc4a" "Cartridge.Name" "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "222" -"Display.YStart" "49" "" "Cartridge.MD5" "2e842c2ee22e9dad9df16eed091315c4" "Cartridge.Name" "2 Pak Special Red - Motocross,Boom Bang (1990) (PAL) [!]" -"Display.YStart" "39" -"Display.Height" "250" "" "Cartridge.MD5" "291bcdb05f2b37cdf9452d2bf08e0321" @@ -2049,14 +1590,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2602" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "39" "" "Cartridge.MD5" "19abaf2144b6a7b281c4112cff154904" "Cartridge.Name" "Asteroids (1979) (Atari) (PAL) [a2][!]" -"Display.YStart" "44" -"Display.Height" "220" "Display.Phosphor" "Yes" "" @@ -2067,8 +1604,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "220" -"Display.YStart" "59" "" "Cartridge.MD5" "19829cfe884e30219c868b2d9a5b3540" @@ -2077,16 +1612,12 @@ "Cartridge.MD5" "18dc28bc22402f21e1c9b81344b3b8c5" "Cartridge.Name" "Galaxian (1983) (Atari) (PAL) [a1][!]" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "18b28b386abdadb3a700ac8fb68e639a" "Cartridge.Name" "Gunfight 2600 (MP) (PAL)" "Cartridge.Manufacturer" "Manuel Polik" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "61" "" "Cartridge.MD5" "18760f1f9ca5e18610115cf7b815b824" @@ -2102,12 +1633,11 @@ "" "Cartridge.MD5" "18f299edb5ba709a64c80c8c9cec24f2" -"Cartridge.Name" "Great Escape (Bomb)" "Cartridge.Manufacturer" "Bomb" "Cartridge.ModelNo" "CA282" +"Cartridge.Name" "Great Escape (Bomb)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "220" -"Display.YStart" "27" +"Display.YStart" "24" "" "Cartridge.MD5" "18ed63e3ce5bc3dd2d8bd188b807f1a2" @@ -2130,10 +1660,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2636" "Cartridge.Rarity" "Rare" -"Display.Height" "243" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "199985cae1c0123ab1aef921daace8be" @@ -2145,10 +1671,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5900" "Cartridge.Rarity" "Rare" -"Display.Height" "215" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "24" "" "Cartridge.MD5" "1cca2197d95c5a41f2add49a13738055" @@ -2159,31 +1681,24 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "38" "" "Cartridge.MD5" "1bf503c724001b09be79c515ecfcbd03" "Cartridge.Name" "Bumper Bash (1983) (Spectravideo) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo" -"Display.Height" "226" -"Display.YStart" "64" "" "Cartridge.MD5" "19d6956ff17a959c48fcd8f4706a848d" -"Cartridge.Name" "Burning Desire (1982) (Playaround)" "Cartridge.Manufacturer" "Mystique" +"Cartridge.Name" "Burning Desire (1982) (Playaround)" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" -"Display.Phosphor" "Yes" +"Display.YStart" "25" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "1bb91bae919ddbd655fa25c54ea6f532" "Cartridge.Name" "Duck Shoot (Kampf um die Schatzinsel) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "67" "" "Cartridge.MD5" "19d9b5f8428947eae6f8e97c7f33bf44" @@ -2195,8 +1710,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5664" "Cartridge.Rarity" "Uncommon" -"Display.Height" "197" -"Display.YStart" "64" "" "Cartridge.MD5" "19e739c2764a5ab9ed08f9095aa2af0b" @@ -2204,8 +1717,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26117" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.YStart" "63" "" "Cartridge.MD5" "1a23540d91f87584a04f184304a00648" @@ -2217,8 +1728,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "104" "Cartridge.Rarity" "Rare" -"Display.Height" "199" -"Display.YStart" "42" "" "Cartridge.MD5" "1b1daaa9aa5cded3d633bfcbeb06479c" @@ -2230,25 +1739,15 @@ "Cartridge.Manufacturer" "David Marli" "Cartridge.Note" "Hack of Slot Machine (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "228" -"Display.YStart" "29" "" "Cartridge.MD5" "1a624e236526c4c8f31175e9c89b2a22" "Cartridge.Name" "Space Raid (Rainbow Vision) (PAL) [a1]" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "1b8d35d93697450ea26ebf7ff17bd4d1" "Cartridge.Name" "Marineflieger (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "235" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "1bef389e3dd2d4ca4f2f60d42c932509" @@ -2256,7 +1755,6 @@ "Cartridge.Manufacturer" "HomeVision" "Cartridge.ModelNo" "1" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "235" "Display.Phosphor" "Yes" "" @@ -2265,27 +1763,15 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26110" "Cartridge.Rarity" "Uncommon" -"Display.Height" "174" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "1c3f3133a3e5b023c77ecba94fd65995" "Cartridge.Name" "Planet Patrol (CCE) [a1][!]" -"Display.YStart" "43" -"Display.Height" "199" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "1c5796d277d9e4df3f6648f7012884c4" "Cartridge.Name" "Wachroboter Jagt Jupy (AKA Hey! Stop!) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "1c8c42d1aee5010b30e7f1992d69216e" @@ -2293,17 +1779,12 @@ "Cartridge.Manufacturer" "Mystique" "Cartridge.ModelNo" "1009" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "1c85c0fc480bbd69dc301591b6ecb422" "Cartridge.Name" "Super Box (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "185" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "1cafa9f3f9a2fce4af6e4b85a2bbd254" @@ -2311,19 +1792,17 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2659" "Cartridge.Rarity" "Common" -"Display.Height" "193" -"Display.YStart" "64" "Cartridge.Note" "Console ports are swapped" "Console.SwapPorts" "Yes" "" "Cartridge.MD5" "1cf59fc7b11cdbcefe931e41641772f6" -"Cartridge.Name" "Buck Rogers - Planet of Zoom (1983) (Sega) [!]" "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "005-01" +"Cartridge.Name" "Buck Rogers - Planet of Zoom (1983) (Sega) [!]" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" -"Display.Phosphor" "Yes" +"Display.YStart" "26" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "1cd90a0841ab9d62583e93f78fee8036" @@ -2340,10 +1819,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2624" "Cartridge.Rarity" "Common" -"Display.Height" "206" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "205f4e080db97d3641a780c8c40261ef" @@ -2351,8 +1826,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT7045" "Cartridge.Rarity" "Rare" -"Display.Height" "188" -"Display.YStart" "41" "" "Cartridge.MD5" "1da2da7974d2ca73a823523f82f517b3" @@ -2360,10 +1833,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-206" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "63" "" "Cartridge.MD5" "1d5eac85e67b8cff1377c8dba1136929" @@ -2373,23 +1842,15 @@ "Cartridge.MD5" "1d2a28eb8c95da0d6d6b18294211839f" "Cartridge.Name" "Fishing Derby (1980) (Activision) (PAL) [p2][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "184" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "1d284d6a3f850bafb25635a12b316f3d" "Cartridge.Name" "H.E.R.O. (1984) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.YStart" "49" "" "Cartridge.MD5" "1d4e0a034ad1275bc4d75165ae236105" "Cartridge.Name" "Pickup (2002) (20th Century Fox) [!]" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "1e587ca91518a47753a28217cd4fd586" @@ -2397,7 +1858,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1001" "Cartridge.Rarity" "Rare" -"Display.YStart" "37" "" "Cartridge.MD5" "1e4990f2bfc79b47b9b091f0a1538eeb" @@ -2407,7 +1867,6 @@ "Cartridge.MD5" "1e0ef01e330e5b91387f75f700ccaf8f" "Cartridge.Name" "Mein Weg (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "240" "" "Cartridge.MD5" "1db3bc4601f22cf43be7ce015d74f59a" @@ -2420,10 +1879,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Prototype" "Controller.Left" "Paddles" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "1e1817d9cbcc3ba75043b7db4e6c228f" @@ -2440,7 +1895,6 @@ "Cartridge.Manufacturer" "CCE / Ultravision / K-Tel Vision" "Cartridge.ModelNo" "C-851" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "1edfbde1dba5498c14dcb80277cd9b99" @@ -2449,16 +1903,11 @@ "Cartridge.MD5" "1ec5bef77b91e59313cba205f15b06d7" "Cartridge.Name" "Overhead Adventure Demo 1 (PD)" -"Display.YStart" "64" "" "Cartridge.MD5" "1e89f722494608d6ea15a00d99f81337" "Cartridge.Name" "River Raid (1982) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "1e85f8bccb4b866d4daa9fcf89306474" @@ -2471,8 +1920,6 @@ "Cartridge.Name" "Saboteur (Atari) (Prototype)" "Cartridge.ModelNo" "CX26119" "Cartridge.Rarity" "Prototype" -"Display.Height" "190" -"Display.YStart" "44" "" "Cartridge.MD5" "1ede4f365ce1386d58f121b15a775e24" @@ -2480,10 +1927,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5360" "Cartridge.Rarity" "Common" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "53" "" "Cartridge.MD5" "1ee2cfc7d0333b96bd11f7f3ec8ce8bc" @@ -2491,10 +1934,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -2503,8 +1942,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2675" "Cartridge.Rarity" "Common" -"Display.Height" "197" -"Display.YStart" "64" "Emulation.HmoveBlanks" "No" "" @@ -2513,10 +1950,6 @@ "Cartridge.Manufacturer" "Eduardo" "Cartridge.Note" "Hack of Berzerk (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "" "Cartridge.MD5" "1f773a94d919b2a3c647172bbb97f6b4" @@ -2524,8 +1957,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2678" "Cartridge.Rarity" "Prototype" -"Display.Height" "230" -"Display.YStart" "27" "" "Cartridge.MD5" "1f562b89d081e36d58e6fc943512ec05" @@ -2538,8 +1969,6 @@ "Cartridge.MD5" "1f349dd41c3f93c4214e5e308dccb056" "Cartridge.Name" "Virtual Pet Demo 2 (CRACKERS) (PD)" -"Display.Height" "195" -"Display.YStart" "36" "" "Cartridge.MD5" "1f60e48ad98b659a05ce0c1a8e999ad9" @@ -2547,16 +1976,11 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "New Release" "Controller.Left" "Paddles" -"Display.Height" "178" -"Display.YStart" "44" "" "Cartridge.MD5" "1f5a2927a0b2faf87540b01d9d7d7fd1" "Cartridge.Name" "Tennis (Pet Boat) (PAL) [p1][!]" "Cartridge.Manufacturer" "Pet Boat" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "2008c76deba5953201ef75a09b2ff7dc" @@ -2567,7 +1991,6 @@ "Cartridge.Name" "Laser Gates (1983) (CCE) [a1][!]" "Cartridge.Manufacturer" "CCE" "Cartridge.Rarity" "Rare" -"Display.Height" "188" "" "Cartridge.MD5" "200309c8fba0f248c13751ed4fc69bab" @@ -2599,17 +2022,11 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-007" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "61" -"Display.Height" "250" "" "Cartridge.MD5" "203b1efc6101d4b9d83bb6cc1c71f67f" "Cartridge.Name" "Teller-Jonglieren! (AKA Tanzende Teller) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "224" -"Display.YStart" "49" "Display.Phosphor" "Yes" "" @@ -2621,7 +2038,6 @@ "Cartridge.MD5" "2091af29b4e7b86914d79d9aaa4cbd20" "Cartridge.Name" "Donkey Kong Junior (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.YStart" "64" "" "Cartridge.MD5" "20dca534b997bf607d658e77fbb3c0ee" @@ -2636,10 +2052,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2684" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "20edcc3aa6c189259fa7e2f044a99c49" @@ -2647,10 +2059,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-201" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "211fbbdbbca1102dc5b43dc8157c09b3" @@ -2661,35 +2069,28 @@ "" "Cartridge.MD5" "213e5e82ecb42af237cfed8612c128ac" -"Cartridge.Name" "Forest (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" +"Cartridge.Name" "Forest (Sancho) (PAL) [!]" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "251" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" -"Display.Phosphor" "Yes" +"Display.Height" "256" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "212d0b200ed8b45d8795ad899734d7d7" "Cartridge.Name" "Pepsi Invaders (Atari) (Prototype)" "Cartridge.Manufacturer" "Coca Cola" "Cartridge.Rarity" "Prototype" -"Display.Height" "224" "" "Cartridge.MD5" "2124cf92978c46684b6c39ccc2e33713" "Cartridge.Name" "Sea Monster (Bitcorp) (PAL) [p1][!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Height" "256" "" "Cartridge.MD5" "21299c8c3ac1d54f8289d88702a738fd" "Cartridge.Name" "Spider Maze (K-Tel Vision)" "Cartridge.Manufacturer" "K-Tel Vision" "Cartridge.Rarity" "Rare" -"Display.Height" "215" -"Display.YStart" "28" "" "Cartridge.MD5" "2179dfd7edee76efafe698c1bc763735" @@ -2698,9 +2099,6 @@ "Cartridge.MD5" "2319922df4d0c820b3e5f15faa870cc3" "Cartridge.Name" "Battlezone (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "21d2c435bcccde7792d82844b3cf60f4" @@ -2708,10 +2106,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2677" "Cartridge.Rarity" "Uncommon" -"Display.Height" "216" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "21b09c40295c2d7074a83ae040f22edf" @@ -2723,8 +2117,6 @@ "Cartridge.Manufacturer" "Data Age" "Cartridge.ModelNo" "DA 1003" "Cartridge.Rarity" "Common" -"Display.Height" "219" -"Display.YStart" "37" "" "Cartridge.MD5" "2228c67d25e507603d4873d3934f0757" @@ -2736,10 +2128,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-011" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "2240655247d6de1c585564004a853ab7" @@ -2759,14 +2147,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2605" "Cartridge.Rarity" "Uncommon" -"Display.Height" "230" -"Display.YStart" "61" "" "Cartridge.MD5" "225522777dc7155627808bde0c1d0ef0" "Cartridge.Name" "This Planet Sucks Demo 1 (Greg Troutman) (PD)" "Cartridge.Rarity" "New Release" -"Display.YStart" "40" "" "Cartridge.MD5" "22f6b40fc82110d68e50a1208ae0bb97" @@ -2777,15 +2162,12 @@ "Cartridge.MD5" "22b22c4ce240303012e8a9596ae8d189" "Cartridge.Name" "Skeleton+ (03-05-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" -"Display.Height" "256" "" "Cartridge.MD5" "22abbdcb094d014388d529352abe9b4b" "Cartridge.Name" "Squoosh (Apollo) (Prototype)" "Cartridge.Manufacturer" "Apollo" "Cartridge.Rarity" "Prototype" -"Display.Height" "198" -"Display.YStart" "38" "" "Cartridge.MD5" "235436ab0832370e73677c9c6f0c8b06" @@ -2793,8 +2175,6 @@ "Cartridge.Manufacturer" "Jeff 'Yak' Minter" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "2351d26d0bfdee3095bec9c05cbcf7b0" @@ -2815,8 +2195,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2459" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.YStart" "59" "Display.Phosphor" "Yes" "" @@ -2825,8 +2203,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2486" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "52" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -2835,10 +2211,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "25f2e760cd7f56b88aac88d63757d41b" @@ -2846,10 +2218,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-002" "Cartridge.Rarity" "Uncommon" -"Display.Height" "201" -"Display.Width" "140" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "25d4be3309b89583c6b39d9f93bf654f" @@ -2857,10 +2225,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-015" "Cartridge.Rarity" "Uncommon" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "49" "" "Cartridge.MD5" "25710bde8fa181b0c5cf0846b983bec1" @@ -2870,43 +2234,33 @@ "Cartridge.MD5" "24d9a55d8f0633e886a1b33ee1e0e797" "Cartridge.Name" "Dragon Defender (NTSC by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "249" -"Display.YStart" "16" -"Display.Phosphor" "Yes" +"Display.YStart" "15" +"Display.Height" "240" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "24ad538291eb5f5cac4b9998f3b851c3" "Cartridge.Name" "Gunfight 2600 - This time it's your decission! (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "24759be31e8fe55d2829fd86bdf3181f" "Cartridge.Name" "Gunfight 2600 - Worst Nightmare... (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "196" "" "Cartridge.MD5" "244c6de27faff527886fc7699a41c3be" "Cartridge.Name" "Matt Demo (PD)" -"Display.Height" "193" -"Display.YStart" "56" "" "Cartridge.MD5" "2447e17a4e18e6b609de498fe4ab52ba" "Cartridge.Name" "Super Futebol (Pussy Style) (CCE)" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "24385ba7f5109fbe76aadc0a375de573" "Cartridge.Name" "Xevious (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.YStart" "26" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -2914,8 +2268,6 @@ "Cartridge.Name" "Parachute (HomeVision) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "HomeVision / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "220" -"Display.YStart" "47" "" "Cartridge.MD5" "2450dfa1df70d12b60683185775efed8" @@ -2927,18 +2279,12 @@ "Cartridge.MD5" "247fa1a29ad90e64069ee13d96fea6d6" "Cartridge.Name" "Radar (CCE) (PAL) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "24b5f4bbdb853eca38ea0cae2dfe73a1" "Cartridge.Name" "Home Run (1978) (PAL) [p1][a1][!]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "24aff972d58990f9b88a6d787c796f1e" @@ -2946,8 +2292,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2465" "Cartridge.Rarity" "Uncommon" -"Display.Height" "205" -"Display.YStart" "60" "" "Cartridge.MD5" "24b9adac1b4f85b0bac9bf9b9e180906" @@ -2967,16 +2311,10 @@ "Cartridge.MD5" "2517827950fee41a3b9de60275c8aa6a" "Cartridge.Name" "Fishing Derby (1980) (Activision) [p1]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "188" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "24fbf8250a71611e40ef18552e61b009" "Cartridge.Name" "Movable Grid Demo (PD)" -"Display.Height" "194" -"Display.YStart" "36" "" "Cartridge.MD5" "24df052902aa9de21c2b2525eb84a255" @@ -2984,37 +2322,25 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3000" "Cartridge.Rarity" "Rare" -"Display.Height" "179" -"Display.YStart" "44" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "2516f4f4b811ede4ecf6fbeb5d54a299" "Cartridge.Name" "Schiessbude (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "215" -"Display.YStart" "48" "" "Cartridge.MD5" "25472dfdeef6a42581a231d631d6b04d" "Cartridge.Name" "Gunfight 2600 - Design thoughts (MP)" -"Display.YStart" "35" -"Display.Height" "194" "" "Cartridge.MD5" "25265d0e7f88b3026003809f25ee025e" "Cartridge.Name" "Jr. Pac-Man (1986) (Atari) [!]" -"Display.YStart" "47" -"Display.Height" "180" "" "Cartridge.MD5" "25a21c47afe925a3ca0806876a2b4f3f" "Cartridge.Name" "Der kleine Baer (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "25bcf07491f65012a70a528959c4881c" @@ -3027,8 +2353,6 @@ "Cartridge.MD5" "25b52bf8dd215bcbd59c9abdb55c44f8" "Cartridge.Name" "Pole Position (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "43" -"Display.Height" "190" "" "Cartridge.MD5" "25b6dc012cdba63704ea9535c6987beb" @@ -3041,23 +2365,18 @@ "Cartridge.MD5" "25bb080457351be724aac8a02021aa92" "Cartridge.Name" "Zaxxon (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Height" "220" -"Display.YStart" "57" "" "Cartridge.MD5" "25e73efb9a6edf119114718bd2f646ba" "Cartridge.Name" "Miss Piggy's Wedding (Prototype) [!]" "Cartridge.Rarity" "Prototype" -"Display.Height" "195" -"Display.YStart" "28" "" "Cartridge.MD5" "260c787e8925bf3649c8aeae5b97dcc0" -"Cartridge.Name" "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "ITT Family Games / Thomas Jentzsch" +"Cartridge.Name" "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "209" -"Display.YStart" "37" +"Display.YStart" "36" "" "Cartridge.MD5" "25f9cf703575c5d63048c222f5463758" @@ -3066,10 +2385,6 @@ "Cartridge.MD5" "268f46038e29301568fa9e443e16e960" "Cartridge.Name" "Pitfall Unlimited (Atarius Maximus)" -"Display.YStart" "40" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "2683d29a282dd059535ac3bb250f540d" @@ -3081,10 +2396,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26154" "Cartridge.Rarity" "Uncommon" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "64" "" "Cartridge.MD5" "265a85f66544eaf95fda06c3d9e48abf" @@ -3092,15 +2403,15 @@ "" "Cartridge.MD5" "274d17ccd825ef9c728d68394b4569d2" -"Cartridge.Name" "Bachelorette Party (1982) (Mystique-Playaround)" "Cartridge.Manufacturer" "Mystique-Playaround" "Cartridge.ModelNo" "1004" +"Cartridge.Name" "Bachelorette Party (1982) (Mystique-Playaround)" "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" -"Controller.Left" "Paddles" -"Display.Height" "219" -"Display.YStart" "27" -"Display.Phosphor" "Yes" +"Controller.Left" "PADDLES" +"Display.YStart" "22" +"Display.Height" "222" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "271bfd5dc2673d382019f1fb6cab9332" @@ -3108,24 +2419,16 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "56" "" "Cartridge.MD5" "26f4f8b098609164effef7809e0121e1" "Cartridge.Name" "Oystron (V2.7) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "270229c6d5578446e6a588492e4e5910" "Cartridge.Name" "Space Invaders 2 (Space Invaders Hack)" "Cartridge.Note" "Hack of Space Invaders (Atari)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "273ce50db5a0d6da7ea827a54f44dee9" @@ -3137,27 +2440,20 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "212" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "60" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "282a77841cb3d33af5b56151acba770e" "Cartridge.Name" "Black Hole (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "2823364702595feea24a3fbee138a243" -"Cartridge.Name" "Bobby is Going Home (Bitcorp) (PAL) [!]" "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG206" +"Cartridge.Name" "Bobby is Going Home (Bitcorp) (PAL) [!]" "Cartridge.Rarity" "Rare" -"Display.Height" "245" -"Display.YStart" "45" +"Display.YStart" "42" "" "Cartridge.MD5" "277cca62014fceebb46c549bac25a2e3" @@ -3165,8 +2461,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-002" "Cartridge.Rarity" "Uncommon" -"Display.Width" "140" -"Display.XStart" "8" "" "Cartridge.MD5" "277c7281ac945b8331e2e6fcad560c11" @@ -3174,8 +2468,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "38" "Emulation.HmoveBlanks" "No" "" @@ -3194,10 +2486,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5590" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "40" "Display.Phosphor" "Yes" "" @@ -3209,17 +2497,12 @@ "Cartridge.Name" "Night Stalker (Telegames) (PAL) [a1]" "Cartridge.Manufacturer" "Telegames" "Cartridge.Rarity" "Rare" -"Display.Height" "206" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "278f14887d601b5e5b620f1870bc09f6" "Cartridge.Name" "Swoops! (v0.96) (Thomas Jentzsch)" "Cartridge.Note" "Uses the Joystick (L) and Paddle (R) Controllers" "Controller.Right" "Paddles" -"Display.YStart" "28" "" "Cartridge.MD5" "27c8a76cf59a9fc6b667468ef1e3f9e9" @@ -3229,8 +2512,6 @@ "Cartridge.MD5" "27f9e2e1b92af9dc17c6155605c38e49" "Cartridge.Name" "Nightmare (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "205" -"Display.YStart" "37" "" "Cartridge.MD5" "2808dc745ff4321dc5c8122abef6711f" @@ -3244,10 +2525,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Height" "220" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "2903896d88a341511586d69fcfc20f7d" @@ -3255,25 +2532,15 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-014" "Cartridge.Rarity" "Uncommon" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "28a2bea8f84936cb2e063f857414cda0" "Cartridge.Name" "Mega Mania Raid (1999) (Thiago Paiva)" -"Display.YStart" "41" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "283dee88f295834c4c077d788f151125" "Cartridge.Name" "Qb (2.11) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -3282,7 +2549,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG204" "Cartridge.Rarity" "Rare" -"Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -3316,15 +2582,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "29396db58406084e416032c372734a3e" "Cartridge.Name" "Gunfight 2600 - Fixed Beta Release! (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "29dfa26b7988af9984d617708e4fc6e2" @@ -3345,14 +2606,10 @@ "Cartridge.Name" "Exorcise (Adventure Hack)" "Cartridge.Note" "Hack of Adventure (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "194" -"Display.YStart" "35" "" "Cartridge.MD5" "294762000e853b4319f9991c1ced5dfc" "Cartridge.Name" "T.F. Space Invaders (Space Invaders Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "29630a20d356fb58685b150bfa8f00c3" @@ -3360,10 +2617,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "297c405afd01f3ac48cdb67b00d273fe" @@ -3371,8 +2624,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26123" "Cartridge.Rarity" "Uncommon" -"Display.Height" "180" -"Display.YStart" "64" "Emulation.HmoveBlanks" "No" "" @@ -3385,23 +2636,15 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "2a33e21447bf9e13dcfed85077ff6b40" "Cartridge.Name" "Backwards Cannonball v2 (Human Cannonball Hack)" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "2a2f46b3f4000495239cbdad70f17c59" "Cartridge.Name" "Cosmic Swarm (1982) (CommaVid) (PAL) [!]" "Cartridge.Manufacturer" "CommaVid" -"Display.YStart" "57" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -3410,22 +2653,15 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" "" "Cartridge.MD5" "2cb42cf62b2f25f59f909b5447821b14" "Cartridge.Name" "Big Bird's Egg Catch (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "46" -"Display.Height" "227" "" "Cartridge.MD5" "2c45c3eb819a797237820a1816c532eb" "Cartridge.Name" "Boxing (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "208" -"Display.Width" "140" -"Display.XStart" "8" -"Display.YStart" "60" "" "Cartridge.MD5" "2bc26619e31710a9884c110d8430c1da" @@ -3435,8 +2671,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "247" -"Display.YStart" "62" "" "Cartridge.MD5" "2b42da79a682ed6e2d735facbf70107e" @@ -3445,29 +2679,20 @@ "Cartridge.MD5" "2abc3d46b3f2140160759e2e10bc86d9" "Cartridge.Name" "Gunfight 2600 - Beta Release! (2001) (MP)" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "2a9f9001540c55a302befd8e9d54b47b" "Cartridge.Name" "Mario Bros (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "53" "" "Cartridge.MD5" "2a360bc85bf22de438651cf92ffda1de" "Cartridge.Name" "Spy vs. Spy (PAL) [p1][!]" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "2ae700c9dba843a68dfdca40d7d86bd6" "Cartridge.Name" "Pharaoh's Curse (TechnoVision) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "TechnoVision / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "236" -"Display.YStart" "43" "Display.Phosphor" "Yes" "" @@ -3476,10 +2701,6 @@ "Cartridge.Manufacturer" "Absolute" "Cartridge.ModelNo" "AK-046" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "57" "" "Cartridge.MD5" "2b27eb194e13f3b38d23c879cc1e3abf" @@ -3487,19 +2708,12 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "2b71a59a53be5883399917bf582b7772" "Cartridge.Name" "Dark Mage (final beta) (Greg Troutman) (PD)" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Rarity" "New Release" -"Display.Height" "201" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Display.Phosphor" "Yes" "" @@ -3507,10 +2721,6 @@ "Cartridge.Name" "Jungle Hunt (1982) (Atari) [!]" "Cartridge.ModelNo" "CX2688" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "2c3d5df0a55500cd59916dbb4fee3fa4" @@ -3519,7 +2729,6 @@ "Cartridge.MD5" "2bc6c53b19e0097a242f22375a6a60ff" "Cartridge.Name" "Droid Demo 2 (David Conrad Schweinsberg) (PD)" -"Display.YStart" "36" "" "Cartridge.MD5" "2c0dc885d5ede94aa664bf3081add34e" @@ -3527,8 +2736,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11020" "Cartridge.Rarity" "Rare" -"Display.Height" "220" -"Display.YStart" "56" "" "Cartridge.MD5" "2bf34b6ad7d2317a2d0808b3fb93571b" @@ -3540,7 +2747,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99002" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "2bd00beefdb424fa39931a75e890695d" @@ -3548,10 +2754,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2663" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "28" "" "Cartridge.MD5" "2c29182edf0965a7f56fe0897d2f84ba" @@ -3569,8 +2771,6 @@ "Cartridge.MD5" "2c3b2843295c9d6b16996971180a3fe9" "Cartridge.Name" "Sports Action Pak - End,Hock,Fish,Drag (1988) (Activision) (PAL) [!]" -"Display.Height" "240" -"Display.YStart" "40" "" "Cartridge.MD5" "2c2aea31b01c6126c1a43e10cacbfd58" @@ -3586,10 +2786,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "2c9fadd510509cc7f28f1ccba931855f" @@ -3598,16 +2794,14 @@ "Cartridge.MD5" "2c8c11295d8613f875b7bcf5253ab9bb" "Cartridge.Name" "Kool Aid Man (PAL Conversion) (16-11-2002) (Fabrizio Zavagli)" -"Display.Height" "199" "" "Cartridge.MD5" "2cccc079c15e9af94246f867ffc7e9bf" -"Cartridge.Name" "Jungle Fever (1982) (Playaround)" "Cartridge.Manufacturer" "Mystique" "Cartridge.ModelNo" "1011" +"Cartridge.Name" "Jungle Fever (1982) (Playaround)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "220" -"Display.YStart" "25" +"Display.YStart" "24" "" "Cartridge.MD5" "2dbdca3058035d2b40c734dcf06a86d9" @@ -3616,8 +2810,6 @@ "Cartridge.Note" "Uses the Joystick (left) or Steering (right) Controller" "Cartridge.Rarity" "New Release (Hack)" "Controller.Right" "Driving" -"Display.Height" "192" -"Display.YStart" "37" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -3629,7 +2821,6 @@ "Cartridge.MD5" "2d16a8b59a225ea551667be45f554652" "Cartridge.Name" "Der Geheimkurier (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "58" "" "Cartridge.MD5" "2cfb188c1091cc7ec2a7e60064d2a758" @@ -3641,10 +2832,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "2d9e5d8d083b6367eda880e80dfdfaeb" @@ -3652,16 +2839,11 @@ "Cartridge.Manufacturer" "Selchow" "Cartridge.ModelNo" "87" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "195" "" "Cartridge.MD5" "2d76c5d1aad506442b9e9fb67765e051" "Cartridge.Name" "Lost Luggage (1981) (Apollo) (NTSC) [!]" "Cartridge.Manufacturer" "Apollo" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "2d69a5f23784f1c2230143292a073b53" @@ -3674,10 +2856,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26170" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "2d6da0eb85eabc93270e5bb8a466ca51" @@ -3699,6 +2877,7 @@ "Cartridge.MD5" "2dfec1615c49501fefc02165c81955e6" "Cartridge.Name" "Song (05-11-2002) (Paul Slocum)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "2e663eaa0d6b723b645e643750b942fd" @@ -3706,17 +2885,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2634 / 75121" "Cartridge.Rarity" "Common" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "2e3728f3086dc3e71047ffd6b2d9f015" "Cartridge.Name" "Outlaw (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "230" -"Display.YStart" "58" "" "Cartridge.MD5" "2e2885e68fa1045871ce1382b68f6efc" @@ -3727,9 +2900,6 @@ "Cartridge.Name" "Rabbit Transit (Atari) (Prototype)" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "2e82a1628ef6c735c0ab8fa92927e9b0" @@ -3737,10 +2907,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26109" "Cartridge.Rarity" "Rare" -"Display.Height" "227" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "2e7e9c6dcfcceaffc6fa73f0d08a402a" @@ -3750,8 +2916,6 @@ "Cartridge.MD5" "4d2cef8f19cafeec72d142e34a1bbc03" "Cartridge.Name" "2 Pak Special Yellow - Star Warrior,Frogger (1990) (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "246" -"Display.YStart" "41" "" "Cartridge.MD5" "3e5ca1afaa27c5da3c54c9942fec528b" @@ -3763,20 +2927,15 @@ "" "Cartridge.MD5" "2f2f9061398a74c80420b99ddecf6448" -"Cartridge.Name" "Bobby is Going Home (Rentacom) (Brazil) [!]" "Cartridge.Manufacturer" "Rentacom" -"Display.Height" "228" -"Display.YStart" "28" +"Cartridge.Name" "Bobby is Going Home (Rentacom) (Brazil) [!]" +"Display.YStart" "31" "" "Cartridge.MD5" "2f11ba54609777e2c6a5da9b302c98e8" "Cartridge.Name" "Centipede (1982) (Atari) (Prototype) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Height" "197" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "2ec6b045cfd7bc52d9cdfd1b1447d1e5" @@ -3784,10 +2943,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Height" "201" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "2eda6a49a49fcb2b674ea9e160b6a617" @@ -3795,15 +2950,11 @@ "Cartridge.Manufacturer" "Kyle Pittman" "Cartridge.Note" "Hack of Riddle of the Sphinx (Imagic)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "186" -"Display.YStart" "39" "" "Cartridge.MD5" "2ef36341d1bf42e02c7ea2f71e024982" "Cartridge.Name" "Space Invaders (Explosion Hack)" "Cartridge.Note" "Hack of Space Invaders (Atari)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "2f0a8bb4e18839f9b1dcaa2f5d02fd1d" @@ -3811,9 +2962,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "CX2668" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -3822,8 +2970,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5080" "Cartridge.Rarity" "Rare" -"Display.Height" "180" -"Display.YStart" "47" "Display.Phosphor" "Yes" "" @@ -3841,8 +2987,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "195" -"Display.YStart" "47" "" "Cartridge.MD5" "2fa5f90deb8b84ecaf64f5fb11c0fd93" @@ -3857,8 +3001,6 @@ "Cartridge.Name" "Warring Worms (Beta 2) (2002) (Baroque Gaming)" "Cartridge.Manufacturer" "Baroque Gaming (Brian Eno)" "Cartridge.Rarity" "Prototype" -"Display.Height" "200" -"Display.YStart" "37" "" "Cartridge.MD5" "3025bdc30b5aec9fb40668787f67d24c" @@ -3867,7 +3009,7 @@ "Cartridge.MD5" "2facd460a6828e0e476d3ac4b8c5f4f7" "Cartridge.Name" "Sancho - Words (198x) (PAL)" -"Display.Height" "235" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "30512e0e83903fc05541d2f6a6a62654" @@ -3875,15 +3017,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2644 / 99824 / 99824" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "39" "" "Cartridge.MD5" "303242c239474f2d7763b843de58c1c3" "Cartridge.Name" "Laser Blast (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "304512528a5530a9361e8a231ed9a6de" @@ -3891,9 +3029,6 @@ "Cartridge.Manufacturer" "Activision / Thomas Jentzsch" "Cartridge.Note" "Hack of River Raid (Activision)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "30516cfbaa1bc3b5335ee53ad811f17a" @@ -3901,8 +3036,6 @@ "Cartridge.Manufacturer" "Wizard Video" "Cartridge.ModelNo" "007" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "30e0ab8be713208ae9a978b34e9e8e8c" @@ -3912,8 +3045,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "229" -"Display.YStart" "45" "" "Cartridge.MD5" "30c92c685224dc7a72b9bbe5eb62d004" @@ -3923,36 +3054,27 @@ "Cartridge.MD5" "30997031b668e37168d4d0e299ccc46f" "Cartridge.Name" "John K Harvey's Equalizer (PAL) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "250" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "30685b9b6ebd9ba71536dd7632a1e3b6" "Cartridge.Name" "Tennis (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.YStart" "38" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "30e012e8d50330c8972f126b8e913bc4" "Cartridge.Name" "Indy 500 (1978) (Atari) [h3]" -"Display.YStart" "30" -"Display.Height" "205" "" "Cartridge.MD5" "313243fc41e49ef6bd3aa9ebc0d372dd" "Cartridge.Name" "Der Vielfrass (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "64" "" "Cartridge.MD5" "310ba30e25ea8957e58180b663503c0c" "Cartridge.Name" "Sound X6 (1994) (Ed Federmeyer)" "Cartridge.Manufacturer" "Ed Federmeyer" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "185" -"Display.YStart" "36" "" "Cartridge.MD5" "3105967f7222cc36a5ac6e5f6e89a0b4" @@ -3960,8 +3082,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "011-02" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "207" -"Display.YStart" "32" "" "Cartridge.MD5" "30f0b49661cfcfd4ec63395fab837dc3" @@ -3978,19 +3098,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "317a4cdbab090dcc996833d07cb40165" "Cartridge.Name" "Missile War (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "3177cc5c04c1a4080a927dfa4099482b" @@ -3998,10 +3110,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26135" "Cartridge.Rarity" "Uncommon" -"Display.Height" "185" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "31512cdfadfd82bfb6f196e3b0fd83cd" @@ -4009,8 +3117,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-004" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.YStart" "40" "" "Cartridge.MD5" "318046ae3711c05fd16e479b298e5fcc" @@ -4020,12 +3126,12 @@ "" "Cartridge.MD5" "35be55426c1fec32dfb503b4f0651572" -"Cartridge.Name" "Air Raid (Men-A-Vision)" "Cartridge.ModelNo" "C-817" +"Cartridge.Name" "Air Raid (Men-A-Vision)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "239" -"Display.YStart" "37" -"Display.Phosphor" "Yes" +"Display.Format" "NTSC" +"Display.Height" "250" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "335793736cbf6fc99c9359ed2a32a49d" @@ -4039,10 +3145,7 @@ "Cartridge.MD5" "324cb4a749bcac4f3db9da842b85d2f7" "Cartridge.Name" "Climber 5 (01-05-2003) (Dennis Debro)" -"Display.YStart" "32" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" +"Emulation.HmoveBlanks" "NO" "" "Cartridge.MD5" "31f4692ee2ca07a7ce1f7a6a1dab4ac9" @@ -4057,8 +3160,6 @@ "Cartridge.MD5" "31df1c50c4351e144c9a378adb8c10ba" "Cartridge.Name" "Die Ratte und die Karotten (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "194" -"Display.YStart" "64" "" "Cartridge.MD5" "31d08cb465965f80d3541a57ec82c625" @@ -4070,10 +3171,6 @@ "Cartridge.MD5" "321c3451129357af42a375d12afd4450" "Cartridge.Name" "Ikari Warriors (1990) (Atari) (PAL) [!]" -"Display.YStart" "64" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "32199271dc980eb31a2cc96e10a9e244" @@ -4085,49 +3182,33 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "3225676f5c0c577aeccfaa7e6bedd765" "Cartridge.Name" "Pole Position (1983) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.YStart" "39" "" "Cartridge.MD5" "32ecb5a652eb73d287e883eea751d99c" "Cartridge.Name" "Bowling (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Height" "215" -"Display.YStart" "37" "" "Cartridge.MD5" "32e65d1e4dfcbcd9b57fee72cafe074c" "Cartridge.Name" "Eckhard Stolberg's Scrolling Text Demo 3 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "191" -"Display.YStart" "38" "" "Cartridge.MD5" "328949872e454181223a80389d03c122" "Cartridge.Name" "Home Run (1978) (PAL) [p1][!]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "3276c777cbe97cdd2b4a63ffc16b7151" "Cartridge.Name" "Joust (1982) (Atari)" "Cartridge.ModelNo" "CX2691" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "Display.Phosphor" "Yes" "" @@ -4143,8 +3224,6 @@ "Cartridge.Name" "Sound X (1994) (Ed Federmeyer)" "Cartridge.Manufacturer" "Ed Federmeyer" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "190" -"Display.YStart" "36" "" "Cartridge.MD5" "3316ee2f887e9cb9b54dd23c5b98c3e2" @@ -4160,8 +3239,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5760" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "332f01fd18e99c6584f61aa45ee7791e" @@ -4169,8 +3246,6 @@ "Cartridge.Manufacturer" "Zellers / CCE" "Cartridge.ModelNo" "C-845" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "229" -"Display.YStart" "28" "Display.Phosphor" "Yes" "" @@ -4179,7 +3254,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2486" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "32" "Display.Phosphor" "Yes" "" @@ -4207,16 +3281,11 @@ "Cartridge.MD5" "33ed6dfac4b9ea2f81f778ceddbb4a75" "Cartridge.Name" "River Raid (1982) (SpkSoft) [t1]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "340f546d59e72fb358c49ac2ca8482bb" "Cartridge.Name" "Skindiver (AKA Aquatak) (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" -"Display.Height" "244" -"Display.YStart" "43" "" "Cartridge.MD5" "34b269387fa1aa5a396636f5ecdd63dd" @@ -4233,17 +3302,11 @@ "Cartridge.MD5" "345769d085113d57937198262af52298" "Cartridge.Name" "Space Raid (Rainbow Vision) (PAL) [!]" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "56" "" "Cartridge.MD5" "345758747b893e4c9bdde8877de47788" "Cartridge.Name" "Venture (1982) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.YStart" "55" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -4253,13 +3316,11 @@ "Cartridge.ModelNo" "AX-016" "Cartridge.Note" "Use Color/BW switch to change between galactic chart and front views" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "64" "" "Cartridge.MD5" "346555779a2d51b48833463b5433472f" "Cartridge.Name" "Thrust (V0.1) (2000) (TJ)" "Cartridge.Rarity" "New Release" -"Display.Height" "201" "" "Cartridge.MD5" "3576037c9281656655fa114a835be553" @@ -4267,10 +3328,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -4299,8 +3356,6 @@ "Cartridge.Name" "Pharaoh's Curse (TechnoVision) (PAL) [!]" "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "237" -"Display.YStart" "47" "Display.Phosphor" "Yes" "" @@ -4316,8 +3371,6 @@ "Cartridge.Name" "Arcade Golf (1979) (Sears) [o1]" "Cartridge.ModelNo" "CX2626 / 99829 / 75116" "Cartridge.Rarity" "Uncommon" -"Display.Height" "219" -"Display.YStart" "40" "" "Cartridge.MD5" "3604e725e81dd0abede07fd1c82eb058" @@ -4325,7 +3378,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-037-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" "" "Cartridge.MD5" "35fa32256982774a4f134c3347882dff" @@ -4341,25 +3393,17 @@ "Cartridge.MD5" "36f9a953ebdd9a8be97ccf27a2041903" "Cartridge.Name" "Chinese Character Demo (PD)" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "36547bc6faa5132b87504e18d088e1d7" "Cartridge.Name" "Cosmic Swarm (1982) (CommaVid) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "CommaVid" -"Display.YStart" "57" -"Display.Height" "250" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "3624e5568368929fabb55d7f9df1022e" "Cartridge.Name" "Double Dragon (1989) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "68" "" "Cartridge.MD5" "36306070f0c90a72461551a7a4f3a209" @@ -4378,7 +3422,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26159" "Cartridge.Rarity" "Rare" -"Display.Height" "190" "" "Cartridge.MD5" "3685060707df27d4091ba0ea2dc4b059" @@ -4388,10 +3431,6 @@ "Cartridge.MD5" "367411b78119299234772c08df10e134" "Cartridge.Name" "Skiing (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "36b20c427975760cb9cf4a47e41369e4" @@ -4406,8 +3445,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26123" "Cartridge.Rarity" "Uncommon" -"Display.Height" "171" -"Display.YStart" "48" "Emulation.HmoveBlanks" "No" "" @@ -4416,8 +3453,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-210" "Cartridge.Rarity" "Rare" -"Display.Height" "216" -"Display.YStart" "64" "" "Cartridge.MD5" "36c31bb5daeb103f488c66de67ac5075" @@ -4427,14 +3462,11 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Height" "192" "" "Cartridge.MD5" "36edef446ab4c2395666efc672b92ed0" "Cartridge.Name" "Off the Wall (1989) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "207" -"Display.YStart" "61" "" "Cartridge.MD5" "373b8a081acd98a895db0cb02df35673" @@ -4459,7 +3491,6 @@ "Cartridge.MD5" "37527966823ee9243d34c7da8302774f" "Cartridge.Name" "Word Zapper (1982) (US Games) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.YStart" "55" "" "Cartridge.MD5" "37ab3affc7987995784b59fcd3fcbd31" @@ -4471,10 +3502,6 @@ "Cartridge.Manufacturer" "Suntek" "Cartridge.ModelNo" "4" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "67" "" "Cartridge.MD5" "3e49da621193d2611a4ea152d5d5ca3a" @@ -4486,8 +3513,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3203" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "38c362dcd5cad5a62e73ae52631bd9d8" @@ -4499,17 +3524,11 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11009" "Cartridge.Rarity" "Rare" -"Display.Height" "185" -"Display.YStart" "52" "" "Cartridge.MD5" "3889351c6c2100b9f3aef817a7e17a7a" "Cartridge.Name" "Dolphin (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "386ff28ac5e254ba1b1bac6916bcc93a" @@ -4519,10 +3538,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Height" "200" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "3856b9425cc0185ed770376a62af0282" @@ -4534,8 +3549,6 @@ "Cartridge.MD5" "3882224adbd0ca7c748b2a1c9b87263e" "Cartridge.Name" "SwordQuest - Fireworld (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "200" "" "Cartridge.MD5" "38bd172da8b2a3a176e517c213fcd5a6" @@ -4545,12 +3558,11 @@ "" "Cartridge.MD5" "3cbdf71bb9fd261fbc433717f547d738" -"Cartridge.Name" "Bobby is Going Home (CCE) (PAL)" "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "PG206" +"Cartridge.Name" "Bobby is Going Home (CCE) (PAL)" "Cartridge.Rarity" "Rare" -"Display.Height" "245" -"Display.YStart" "46" +"Display.YStart" "42" "" "Cartridge.MD5" "3c853d864a1d5534ed0d4b325347f131" @@ -4566,18 +3578,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "3a526e6a1f9fe918af0f2ce997dfea73" "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.Rarity" "Common" -"Display.Height" "212" -"Display.YStart" "56" "" "Cartridge.MD5" "39bf392448c8bd39d48acc95ed3b423f" @@ -4589,15 +3595,11 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1012" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.YStart" "44" "" "Cartridge.MD5" "391764720140c432aec454a468f77a40" "Cartridge.Name" "Miss Pack Man (Video Game Program) (PAL) [p1][!]" "Cartridge.Manufacturer" "Video Game Program" -"Display.Height" "198" -"Display.YStart" "64" "" "Cartridge.MD5" "38de7b68379770b9bd3f7bf000136eb0" @@ -4605,7 +3607,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3213" "Cartridge.Rarity" "Rare" -"Display.YStart" "54" "" "Cartridge.MD5" "38cf93eacfb2fa9a2c5e39059ff35a74" @@ -4619,7 +3620,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -4635,17 +3635,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "39a6a5a2e1f6297cceaa48bb03af02e9" "Cartridge.Name" "Pitfall 2 Plus (Pitfall 2 Hack)" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "39790a2e9030751d7db414e13f1b6960" @@ -4661,8 +3654,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "211" -"Display.YStart" "33" "" "Cartridge.MD5" "3a2e2d0c6892aa14544083dfb7762782" @@ -4685,10 +3676,6 @@ "Cartridge.Manufacturer" "Activision / Charles Morgan" "Cartridge.Note" "Hack of Megamania (Activision)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "3a51a6860848e36e6d06ffe01b71fb13" @@ -4704,21 +3691,16 @@ "Cartridge.MD5" "3b69f8929373598e1752f43f8da61aa4" "Cartridge.Name" "Die Springteufel (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "250" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "3b5751a8d20f7de41eb069f76fecd5d7" "Cartridge.Name" "Eckhard Stolberg's Scrolling Text Demo 4 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "191" -"Display.YStart" "38" "" "Cartridge.MD5" "3b10106836565e5db28c7823c0898fbb" "Cartridge.Name" "Ghost Manor (1983) (Xonox) (PAL) [a1][!]" -"Display.YStart" "30" -"Display.Height" "230" "" "Cartridge.MD5" "3b097a7ed5bd2a84dc3d3ed361e9c31c" @@ -4732,10 +3714,6 @@ "Cartridge.MD5" "3ac6c50a8e62d4ce71595134cbd8035e" "Cartridge.Name" "Tomcat - The F-14 Flight Simulator (1988) (Absolute) [a1]" -"Display.YStart" "31" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "3b37ebc0674e3d5e49ffbdc4b65607a6" @@ -4744,15 +3722,11 @@ "Cartridge.MD5" "3b2c32fcd331664d037952bcaa62df94" "Cartridge.Name" "Super Kung-Fu (1983) (Xonox) (PAL) [a1][!]" -"Display.YStart" "59" -"Display.Height" "195" "" "Cartridge.MD5" "3b64a00ce147c3c29f7f8f8e531d08d8" "Cartridge.Name" "This Planet Sucks (16K) (Greg Troutman)" "Cartridge.Rarity" "New Release" -"Display.Height" "207" -"Display.YStart" "40" "" "Cartridge.MD5" "3b966bf3c2ca34ac6ca1de4cf6383582" @@ -4765,8 +3739,6 @@ "Cartridge.ModelNo" "MT4318" "Cartridge.Rarity" "Rare" "Console.LeftDifficulty" "A" -"Display.Height" "185" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" @@ -4782,30 +3754,20 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5350" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "40" "" "Cartridge.MD5" "3b80b8f52a0939e16b5059f93a3fc19a" "Cartridge.Name" "Virtual Pet (V007) (after Demo 2) (CRACKERS) (PD)" "Cartridge.Manufacturer" "V007" -"Display.Height" "195" -"Display.YStart" "36" "" "Cartridge.MD5" "3b86a27132fb74d9b35d4783605a1bcb" "Cartridge.Name" "Wizard (Atari) (Prototype) [o1]" "Cartridge.Rarity" "Prototype" -"Display.Height" "190" -"Display.YStart" "39" "" "Cartridge.MD5" "3b9480bb6fb1e358c9c0a64e86945aee" "Cartridge.Name" "Title Match Pro Wrestling (2002) (Skyworks) [!]" -"Display.YStart" "48" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "3c82e808fe0e6a006dc0c4e714d36209" @@ -4813,10 +3775,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-004" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "3c57748c8286cf9e821ecd064f21aaa9" @@ -4824,10 +3782,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26118" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "3c4a6f613ca8ba27ce9e43c6c92a3128" @@ -4848,8 +3802,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5050" "Cartridge.Rarity" "Common" -"Display.Height" "188" -"Display.YStart" "41" "" "Cartridge.MD5" "3caa902ac0ce4509308990645876426a" @@ -4857,7 +3809,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2669" "Cartridge.Rarity" "Common" -"Display.YStart" "64" "" "Cartridge.MD5" "3d1e83afdb4265fa2fb84819c9cfd39c" @@ -4865,8 +3816,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2465" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "47" "" "Cartridge.MD5" "3cdd91e1c28d28e856c0063d602da166" @@ -4875,20 +3824,16 @@ "" "Cartridge.MD5" "3d6fc7a19be76d808aa233415cb583fc" -"Cartridge.Name" "Carnival (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "212" -"Display.YStart" "27" +"Cartridge.Name" "Carnival (CCE)" +"Display.YStart" "26" +"Display.Height" "214" "" "Cartridge.MD5" "3d48b8b586a09bdbf49f1a016bf4d29a" "Cartridge.Name" "Hole Hunter (PAL)" "Cartridge.ModelNo" "TP-606" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "238" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "31" "" "Cartridge.MD5" "3d2652cbea462a886a41791dd7c8d073" @@ -4900,10 +3845,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-206" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "63" "" "Cartridge.MD5" "3d934bb980e2e63e1ead3e7756928ccd" @@ -4911,10 +3852,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Height" "205" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "57" "" "Cartridge.MD5" "3d8a2d6493123a53ade45e3e2c5cafa0" @@ -4922,24 +3859,20 @@ "Cartridge.Manufacturer" "Sears" "Cartridge.ModelNo" "99843 / 75118" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "38" "" "Cartridge.MD5" "3d7aad37c55692814211c8b590a0334c" "Cartridge.Name" "Telepathy (Prototype) (Atari) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "3e33ac10dcf2dff014bc1decf8a9aea4" -"Cartridge.Name" "Chase the Chuckwagon (1983) (Spectravideo)" "Cartridge.Manufacturer" "Spectravideo" +"Cartridge.Name" "Chase the Chuckwagon (1983) (Spectravideo)" "Cartridge.Rarity" "Unbelievably Rare" "Display.YStart" "22" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "3e03086da53ecc29d855d8edf10962cb" @@ -4947,8 +3880,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "M8793" "Cartridge.Rarity" "Uncommon" -"Display.Height" "216" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" @@ -4957,10 +3888,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-023" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "3dfb7c1803f937fadc652a3e95ff7dc6" @@ -4975,7 +3902,6 @@ "Cartridge.Name" "Robot City (V0.12) (TJ)" "Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Rarity" "New Release" -"Display.YStart" "22" "" "Cartridge.MD5" "493daaf9fb1ba450eba6b8ed53ffb37d" @@ -4985,18 +3911,14 @@ "Cartridge.MD5" "402b1ca3c230a60fb279d4a2a10fa677" "Cartridge.Name" "3-D Tic-Tac-Toe (1978) (Atari) (PAL) [p1][o1]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "3f039981255691d3859d04ef813a1264" -"Cartridge.Name" "Artillery Duel (1983) (Xonox) [a1][!]" "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99004" +"Cartridge.Name" "Artillery Duel (1983) (Xonox) [a1][!]" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "186" -"Display.YStart" "27" +"Display.YStart" "20" "" "Cartridge.MD5" "3eb1e34a4f0eec36f12e7336badcecf2" @@ -5007,7 +3929,6 @@ "Cartridge.Name" "Ed Invaders (Pepsi Invaders Hack)" "Cartridge.Note" "Hack of Pepsi Invaders (Coca-Cola)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "35" "" "Cartridge.MD5" "3e90cf23106f2e08b2781e41299de556" @@ -5015,10 +3936,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-018" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "3e899eba0ca8cd2972da1ae5479b4f0d" @@ -5034,9 +3951,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.YStart" "64" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "3edd0525a19e4fc612d99c74dffd8716" @@ -5053,10 +3967,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2645 / 6699817 / 4975181" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "128" -"Display.XStart" "16" -"Display.YStart" "63" "" "Cartridge.MD5" "3f540a30fdee0b20aed7288e4a5ea528" @@ -5064,37 +3974,23 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2670" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "38" "" "Cartridge.MD5" "3f3ad2765c874ca13c015ca6a44a40a1" "Cartridge.Name" "Crackpots (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "3f251c50aa7237e61a38ab42315ebed4" "Cartridge.Name" "Ikari Warriors (1990) (Atari) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Atari / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "3f6dbf448f25e2bd06dea44248eb122d" "Cartridge.Name" "Championship Soccer (AKA Pele's Soccer) [p1]" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "3f5a43602f960ede330cd2f43a25139e" @@ -5102,9 +3998,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-003" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "140" -"Display.XStart" "20" -"Display.YStart" "27" "" "Cartridge.MD5" "3f58f972276d1e4e0e09582521ed7a5b" @@ -5112,8 +4005,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99003" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "40" "" "Cartridge.MD5" "3f9431cc8c5e2f220b2ac14bbc8231f4" @@ -5123,15 +4014,11 @@ "Cartridge.MD5" "3f75a5da3e40d486b21dfc1c8517adc0" "Cartridge.Name" "Sky Diver (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "45" "" "Cartridge.MD5" "3fe43915e5655cf69485364e9f464097" "Cartridge.Name" "Fisher Price (CCE) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "196" -"Display.YStart" "42" "" "Cartridge.MD5" "3f9cb1aba8ec20e2c243ae642f9942bf" @@ -5140,41 +4027,25 @@ "Cartridge.MD5" "3f96eb711928a6fac667c04ecd41f59f" "Cartridge.Name" "Rodeo Champ (PAL) [p1][!]" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "3fd53bfeee39064c945a769f17815a7f" "Cartridge.Name" "Sea Hawk (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "3ff5165378213dab531ffa4f1a41ae45" "Cartridge.Name" "Pygmy (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "47b82d47e491ac7fdb5053a88fccc832" "Cartridge.Name" "Asteroid 2 (Atari Freak 1 and Franklin Cruz)" -"Display.Width" "152" -"Display.XStart" "8" -"Display.Height" "200" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "46e9428848c9ea71a4d8f91ff81ac9cc" "Cartridge.Name" "Astroblast (Telegames) (PAL) [!]" -"Display.YStart" "54" "" "Cartridge.MD5" "42e0ec5ab8f5deba53e4169ff2a5efbe" @@ -5186,12 +4057,11 @@ "" "Cartridge.MD5" "4093382187f8387e6d011883e8ea519b" -"Cartridge.Name" "Col 'N (HomeVision)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.ModelNo" "554-33391" +"Cartridge.Name" "Col 'N (HomeVision)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "214" -"Display.YStart" "39" +"Display.Height" "220" "" "Cartridge.MD5" "407a0c6cc0ff777f67b669440d68a242" @@ -5207,16 +4077,10 @@ "Cartridge.MD5" "405f8591b6941cff56c9b392c2d5e4e5" "Cartridge.Name" "Star Strike (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "56" "" "Cartridge.MD5" "4066d7d88ec4a2c656127a67fa52dcf1" "Cartridge.Name" "Overhead Adventure Demo 2 (PD)" -"Display.Height" "213" -"Display.YStart" "64" "" "Cartridge.MD5" "41810dd94bd0de1110bedc5092bef5b0" @@ -5224,8 +4088,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3611" "Cartridge.Rarity" "Common" -"Display.Height" "176" -"Display.YStart" "54" "" "Cartridge.MD5" "40aa851e8d0f1c555176a5e209a5fabb" @@ -5241,8 +4103,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99002" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "30" -"Display.Height" "230" "" "Cartridge.MD5" "40b58f2f93e503b14a5d1d0ae2ca5aa0" @@ -5261,17 +4121,11 @@ "Cartridge.MD5" "40d9f5709877ecf3dd1184f9791dd35e" "Cartridge.Name" "Skiing (1980) (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "4181087389a79c7f59611fb51c263137" "Cartridge.Name" "Miss Piggy's Wedding (Prototype 2) [!]" "Cartridge.Rarity" "Prototype" -"Display.Height" "208" -"Display.YStart" "25" "" "Cartridge.MD5" "41f252a66c6301f1e8ab3612c19bc5d4" @@ -5279,20 +4133,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2681" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "32" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "41c4e3d45a06df9d21b7aae6ae7e9912" "Cartridge.Name" "Grand Prix (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "4189adfc1b30c121248876e3a1a3ac7e" @@ -5306,8 +4152,6 @@ "Cartridge.Name" "Video Jogger (Exus) (PAL)" "Cartridge.Manufacturer" "Exus" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.YStart" "35" "" "Cartridge.MD5" "428b2d36f5d716765460701f7016ac91" @@ -5319,10 +4163,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "425ee444a41d218598893d6b6e03431a" @@ -5332,8 +4172,6 @@ "Cartridge.MD5" "4233eb824c2b4811abef9b6d00355ae9" "Cartridge.Name" "Qb (V0.10) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "60" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -5344,7 +4182,6 @@ "Cartridge.MD5" "4251b4557ea6953e88afb22a3a868724" "Cartridge.Name" "Robot City (V1.1) (TJ)" -"Display.YStart" "22" "" "Cartridge.MD5" "42b2c3b4545f1499a083cfbc4a3b7640" @@ -5365,18 +4202,14 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-007" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "4311a4115fb7bc68477c96cf44cebacf" -"Cartridge.Name" "Challenge (Funvision) (PAL)" "Cartridge.Manufacturer" "Funvision" +"Cartridge.Name" "Challenge (Funvision) (PAL)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "240" -"Display.YStart" "17" +"Display.Format" "PAL" +"Display.YStart" "14" "" "Cartridge.MD5" "42e8d67213227dee01e72c788712c002" @@ -5396,15 +4229,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2689" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "36" "" "Cartridge.MD5" "442602713cb45b9321ee93c6ea28a5d0" "Cartridge.Name" "Demon Attack (1982) (Imagic) (PAL) [p1][!]" "Cartridge.Manufacturer" "Imagic" -"Display.Height" "194" -"Display.YStart" "64" "" "Cartridge.MD5" "43f33c6dfdeaf5138ce6e6968ad7c5ce" @@ -5418,7 +4247,6 @@ "" "Cartridge.MD5" "43f8459d39fb4eddf9186d62722ff795" -"Display.Height" "250" "Cartridge.Name" "Skeleton+ (17-04-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" "" @@ -5426,18 +4254,12 @@ "Cartridge.MD5" "458883f1d952cd772cf0057abca57497" "Cartridge.Name" "Fishing Derby (1980) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "183" -"Display.YStart" "62" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "442b7863683e5f084716fda050474feb" "Cartridge.Name" "Frame Timed Sound Effects-EM (Eckhard Stolberg)" "Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Rarity" "New Release" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "456453a54ca65191781aef316343ae00" @@ -5449,10 +4271,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-039" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "59" "" "Cartridge.MD5" "44560e324ffb30741a483218ba5b4342" @@ -5464,8 +4282,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.YStart" "35" "Display.Phosphor" "Yes" "" @@ -5480,9 +4296,6 @@ "Cartridge.MD5" "44f71e70b89dcc7cf39dfd622cfb9a27" "Cartridge.Name" "Polaris (1983) (Tigervision) (maybe beta)" "Cartridge.Manufacturer" "Tigervision" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "45040679d72b101189c298a864a5b5ba" @@ -5490,10 +4303,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11022" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "32" "" "Cartridge.MD5" "45027dde2be5bdd0cab522b80632717d" @@ -5501,17 +4310,11 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100250" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "42" "" "Cartridge.MD5" "457e7d4fcd56ebc47f5925dbea3ee427" "Cartridge.Name" "Space Jockey (1982) (Carrere Video) (PAL) [!]" "Cartridge.Manufacturer" "Carrere Video" -"Display.Height" "245" -"Display.YStart" "64" "" "Cartridge.MD5" "4565c1a7abce773e53c75b35414adefd" @@ -5524,8 +4327,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2658 / 4975128" "Cartridge.Rarity" "Common" -"Display.Height" "230" -"Display.YStart" "44" "" "Cartridge.MD5" "45cb0f41774b78def53331e4c3bf3362" @@ -5533,8 +4334,6 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1007" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "42" -"Display.Height" "250" "" "Cartridge.MD5" "4690fdb70c86604bb35da26696818667" @@ -5543,10 +4342,6 @@ "Cartridge.MD5" "467340a18158649aa5e02a4372dcfccd" "Cartridge.Name" "H.E.R.O. (1984) (Activision) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" -"Display.Height" "200" "" "Cartridge.MD5" "463e66ad98806a49106cffa49c08e2ed" @@ -5558,10 +4353,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "172" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" @@ -5570,18 +4361,12 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "212" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "60" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "4689081b7363721858756fe781cc7713" "Cartridge.Name" "Oystron (V2.6) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "46c43fdcbce8fde3a91ebeafc05b7cbd" @@ -5593,8 +4378,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2629" "Cartridge.Rarity" "Uncommon" -"Display.Height" "222" -"Display.YStart" "38" "" "Cartridge.MD5" "47464694e9cce07fdbfd096605bf39d4" @@ -5602,10 +4385,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-050-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "68" "" "Cartridge.MD5" "470878b9917ea0348d64b5750af149aa" @@ -5613,8 +4392,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2658 / 4975128" "Cartridge.Rarity" "Common" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "4702d8d9b48a332724af198aeac9e469" @@ -5622,8 +4399,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2699" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.YStart" "39" "" "Cartridge.MD5" "47aad247cce2534fd70c412cb483c7e0" @@ -5631,10 +4406,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-201" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "47711c44723da5d67047990157dcb5dd" @@ -5650,16 +4421,12 @@ "Cartridge.Note" "Uses Kids/Keypad Controllers (left only)" "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" -"Display.Height" "227" -"Display.YStart" "46" "" "Cartridge.MD5" "4799a40b6e889370b7ee55c17ba65141" "Cartridge.Name" "Pooyan (1982) (Konami-Gakken)" "Cartridge.Manufacturer" "Konami-Gakken" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "228" -"Display.YStart" "26" "" "Cartridge.MD5" "47aef18509051bab493589cb2619170b" @@ -5674,17 +4441,12 @@ "Cartridge.MD5" "490e3cc59d82f85fae817cdf767ea7a0" "Cartridge.Name" "Berzerk (1982) (Atari) (PAL) [p2][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "64" "" "Cartridge.MD5" "48e5c4ae4f2d3b62b35a87bca18dc9f5" -"Cartridge.Name" "Bobby geht nach Hause (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "219" -"Display.YStart" "46" +"Cartridge.Name" "Bobby geht nach Hause (Starsoft) (PAL) [!]" +"Display.YStart" "42" "" "Cartridge.MD5" "47cd61f83457a0890de381e478f5cf5f" @@ -5692,8 +4454,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3205" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" @@ -5703,10 +4463,6 @@ "Cartridge.MD5" "481d20ec22e7a63e818d5ef9679d548b" "Cartridge.Name" "Freeway (AKA Rabbits) (PAL) [p1][!]" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "48bcf2c5a8c80f18b24c55db96845472" @@ -5714,8 +4470,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "49" "" "Cartridge.MD5" "4868a81e1b6031ed66ecd60547e6ec85" @@ -5728,7 +4482,6 @@ "Cartridge.Name" "Laser Volley (1983) (Zellers) [!]" "Cartridge.Manufacturer" "Zellers" "Cartridge.Rarity" "Rare" -"Display.Height" "188" "" "Cartridge.MD5" "481f9a742052801cc5f3defb41cb638e" @@ -5742,18 +4495,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26150" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "45" "" "Cartridge.MD5" "48f18d69799a5f5451a5f0d17876acef" "Cartridge.Name" "Criminal Pursuit (Emag)" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -5769,8 +4515,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3200" "Cartridge.Rarity" "Common" -"Display.Height" "235" -"Display.YStart" "46" "" "Cartridge.MD5" "4904a2550759b9b4570e886374f9d092" @@ -5778,8 +4522,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5330" "Cartridge.Rarity" "Uncommon" -"Display.Height" "220" -"Display.YStart" "64" "" "Cartridge.MD5" "4947c9de2e28b2f5f3b0c40ce7e56d93" @@ -5789,10 +4531,6 @@ "Cartridge.MD5" "493e90602a4434b117c91c95e73828d1" "Cartridge.Name" "Lock 'N' Chase (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "493de059b32f84ab29cde6213964aeee" @@ -5800,10 +4538,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "4b27f5397c442d25f0c418ccdacf1926" @@ -5812,17 +4546,11 @@ "Cartridge.ModelNo" "CX2613 / 4975154" "Cartridge.Rarity" "Common" "Controller.Right" "None" -"Display.Height" "194" -"Display.YStart" "60" "" "Cartridge.MD5" "4b205ef73a5779acc5759bde3f6d33ed" "Cartridge.Name" "Berzerk (1982) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "64" "" "Cartridge.MD5" "4a1a0509bfc1015273a542dfe2040958" @@ -5835,10 +4563,6 @@ "Cartridge.MD5" "4999b45be0ab5a85bac1b7c0e551542b" "Cartridge.Name" "Double Dragon (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "68" "" "Cartridge.MD5" "49571b26f46620a85f93448359324c28" @@ -5864,8 +4588,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1006" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "187" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" @@ -5882,7 +4604,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2644 / 99824 / 99824" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "39" "" "Cartridge.MD5" "4ae8c76cd6f24a2e181ae874d4d2aa3d" @@ -5890,8 +4611,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11015" "Cartridge.Rarity" "Rare" -"Display.Height" "198" -"Display.YStart" "62" "" "Cartridge.MD5" "4ac9f40ddfcf194bd8732a75b3f2f214" @@ -5908,10 +4627,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26135" "Cartridge.Rarity" "Uncommon" -"Display.Height" "185" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "4ab4af3adcdae8cdacc3d06084fc8d6a" @@ -5925,8 +4640,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "38" "Emulation.HmoveBlanks" "No" "" @@ -5935,7 +4648,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3207" "Cartridge.Rarity" "Uncommon" -"Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -5958,8 +4670,6 @@ "Cartridge.MD5" "4b9581c3100a1ef05eac1535d25385aa" "Cartridge.Name" "I.Q. 180 (HomeVision) (PAL)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "235" -"Display.YStart" "27" "" "Cartridge.MD5" "4b8e76a294a04036168f5b13c64911d2" @@ -5971,8 +4681,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2682" "Cartridge.Rarity" "Rare" -"Display.Height" "196" -"Display.YStart" "35" "" "Cartridge.MD5" "4c0fb2544ae0f8b5f7ae8bce7bd7f134" @@ -5983,22 +4691,17 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.YStart" "25" "" "Cartridge.MD5" "4bcc7f6ba501a26ee785b7efbfb0fdc8" "Cartridge.Name" "Pengo (1984) (Atari)" "Cartridge.ModelNo" "CX2690" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "4c030667d07d1438f0e5c458a90978d8" "Cartridge.Name" "Qb (V2.03) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -6011,7 +4714,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.YStart" "30" "Emulation.HmoveBlanks" "No" "" @@ -6024,8 +4726,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2601 / 6699801 / 4975124" "Cartridge.Rarity" "Common" -"Display.Height" "206" -"Display.YStart" "39" "" "Cartridge.MD5" "4ca73eb959299471788f0b685c3ba0b5" @@ -6033,10 +4733,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "4ca0959f846d2beada18ecf29efe137e" @@ -6044,10 +4740,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2666" "Cartridge.Rarity" "Uncommon" -"Display.Height" "215" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "4c8970f6c294a0a54c9c45e5e8445f93" @@ -6062,10 +4754,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3409" "Cartridge.Rarity" "Prototype" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "4ca90ba45eced6f5ad560ea8938641b2" @@ -6083,8 +4771,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-006" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "202" -"Display.YStart" "36" "" "Cartridge.MD5" "4faeb04b1b7fb0fa25db05753182a898" @@ -6103,18 +4789,14 @@ "Cartridge.Manufacturer" "Mattel / Fabrizio Zavagli" "Cartridge.Note" "Hack of Astroblast (Mattel)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "202" -"Display.YStart" "27" "" "Cartridge.MD5" "4d38e1105c3a5f0b3119a805f261fcb5" "Cartridge.Name" "Phantom UFO (PAL) [p1][!]" -"Display.YStart" "59" "" "Cartridge.MD5" "4d502d6fb5b992ee0591569144128f99" "Cartridge.Name" "Save Mary (1990) (Atari) (Prototype) [!]" -"Display.Height" "201" "" "Cartridge.MD5" "4d7517ae69f95cfbc053be01312b7dba" @@ -6126,8 +4808,6 @@ "Cartridge.MD5" "4f89b897444e7c3b36aed469b8836839" "Cartridge.Name" "BMX Air Master (1989) (Atari) (PAL) [!]" -"Display.YStart" "64" -"Display.Height" "202" "" "Cartridge.MD5" "4e2c884d04b57b43f23a5a2f4e9d9750" @@ -6138,19 +4818,11 @@ "Cartridge.Name" "Breaking News (2002) (Ric Pryor) (Bump 'n' Jump Hack)" "Cartridge.Manufacturer" "Ric Pryor" "Cartridge.Note" "Bump 'n' Jump Hack" -"Display.XStart" "8" -"Display.Width" "152" -"Display.YStart" "41" -"Display.Height" "188" "" "Cartridge.MD5" "4d8396deeabb40b5e8578276eb5a8b6d" "Cartridge.Name" "Volleyball (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "4df6124093ccb4f0b6c26a719f4b7706" @@ -6185,8 +4857,6 @@ "Cartridge.MD5" "4df9d7352a56a458abb7961bf10aba4e" "Cartridge.Name" "Traffic (RJPG) (PAL)" -"Display.Height" "208" -"Display.YStart" "35" "Console.SwapPorts" "Yes" "" @@ -6195,14 +4865,10 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "EIZ-002-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.YStart" "52" "" "Cartridge.MD5" "4e4895c3381aa4220f8c2795d6338237" "Cartridge.Name" "Backwards Cannonball v1 (Human Cannonball Hack)" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "4e37992a37ea36489283f7eb90913bbc" @@ -6217,15 +4883,11 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "205" -"Display.YStart" "54" "" "Cartridge.MD5" "4f634893d54e9cabe106e0ec0b7bdcdf" "Cartridge.Name" "Qb (2.14) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -6234,9 +4896,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2680" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "4f618c2429138e0280969193ed6c107e" @@ -6245,15 +4904,10 @@ "Cartridge.ModelNo" "AZ-028" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "4f2d47792a06da224ba996c489a87939" "Cartridge.Name" "Super Action Pak - Pitf,GPrix,LaserB,Barn (1988) (Activision) (PAL) [!]" -"Display.YStart" "64" "" "Cartridge.MD5" "4e99ebd65a967cabf350db54405d577c" @@ -6261,14 +4915,10 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2663" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.YStart" "35" "" "Cartridge.MD5" "4f0071946e80ca68edfdccbac86dcce0" "Cartridge.Name" "Virtual Pet Demo 1 (CRACKERS) (PD)" -"Display.Height" "196" -"Display.YStart" "36" "" "Cartridge.MD5" "4f64d6d0694d9b7a1ed7b0cb0b83e759" @@ -6288,8 +4938,6 @@ "Cartridge.MD5" "4f82d8d78099dd71e8e169646e799d05" "Cartridge.Name" "Miniature Golf (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "45" "" "Cartridge.MD5" "4fae08027365d31c558e400b687adf21" @@ -6303,7 +4951,6 @@ "Cartridge.MD5" "51f15b39d9f502c2361b6ba6a73464d4" "Cartridge.Name" "Amanda Invaders (PD) [o1]" -"Display.YStart" "39" "" "Cartridge.MD5" "51de328e79d919d7234cf19c1cd77fbc" @@ -6311,8 +4958,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2678" "Cartridge.Rarity" "Prototype" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "502044b1ac111b394e6fbb0d821fca41" @@ -6327,10 +4972,6 @@ "Cartridge.MD5" "4fbe0f10a6327a76f83f83958c3cbeff" "Cartridge.Name" "Keystone Kapers (CCE) [!]" -"Display.YStart" "39" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "512e874a240731d7378586a05f28aec6" @@ -6338,8 +4979,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.YStart" "63" "" "Cartridge.MD5" "50568c80ac61cab789d9923c9b05b68e" @@ -6356,10 +4995,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "515046e3061b7b18aa3a551c3ae12673" @@ -6367,10 +5002,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2692" "Cartridge.Rarity" "Uncommon" -"Display.Height" "175" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "47" "" "Cartridge.MD5" "514f911ecff2be5eeff2f39c49a9725c" @@ -6378,8 +5009,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5350" "Cartridge.Rarity" "Rare" -"Display.Height" "220" -"Display.YStart" "40" "" "Cartridge.MD5" "517592e6e0c71731019c0cebc2ce044f" @@ -6387,22 +5016,16 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5550" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "516ffd008057a1d78d007c851e6eff37" "Cartridge.Name" "Strawberry Shortcake - Musical Match-Ups (1983) (Parker Bros) (PAL) [!]" "Cartridge.Manufacturer" "ParkerB" -"Display.Height" "256" -"Display.YStart" "36" "" "Cartridge.MD5" "51e390424f20e468d2b480030ce95d7b" "Cartridge.Name" "Fire Bird (Video Game Program) (PAL) [!]" "Cartridge.Manufacturer" "Video Game Program" -"Display.YStart" "62" "" "Cartridge.MD5" "5355f80cacf0e63a49cbf4ade4e27034" @@ -6410,14 +5033,11 @@ "Cartridge.Manufacturer" "Christian Samuel" "Cartridge.Note" "Hack of Haunted House (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "52615ae358a68de6e76467e95eb404c7" "Cartridge.Name" "DJdsl-wopd (PD)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "524693b337f7ecc9e8b9126e04a232af" @@ -6436,8 +5056,6 @@ "Cartridge.MD5" "522c9cf684ecd72db2f85053e6f6f720" "Cartridge.Name" "Year 1999, The (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Height" "219" -"Display.YStart" "64" "" "Cartridge.MD5" "525ea747d746f3e80e3027720e1fa7ac" @@ -6445,10 +5063,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-032" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "52e9db3fe8b5d336843acac234aaea79" @@ -6477,16 +5091,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4201" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "52b448757081fd9fabf859f4e2f91f6b" "Cartridge.Name" "Worm War I (1982) (20th Century Fox) (PAL) [p1][!]" "Cartridge.Manufacturer" "20th Century Fox" -"Display.YStart" "55" "" "Cartridge.MD5" "534e23210dd1993c828d944c6ac4d9fb" @@ -6494,7 +5103,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4648" "Cartridge.Rarity" "Uncommon" -"Display.Height" "199" "" "Cartridge.MD5" "5336f86f6b982cc925532f2e80aa1e17" @@ -6502,24 +5110,16 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5060" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "35" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "5360693f1eb90856176bd1c0a7b17432" "Cartridge.Name" "Oystron (V2.85) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "196" -"Display.YStart" "35" "" "Cartridge.MD5" "543b4b8ff1d616fa250c648be428a75c" "Cartridge.Name" "Adventure (1978) (Atari) [t1]" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "5409d20c1aea0b89c56993aec5dc5740" @@ -6532,8 +5132,6 @@ "Cartridge.MD5" "540075f657d4b244a1f74da1b9e4bf92" "Cartridge.Name" "Festival (PAL) [p1][!]" -"Display.Height" "201" -"Display.YStart" "62" "" "Cartridge.MD5" "53d181cde2e0219b5754caad246fcb66" @@ -6543,8 +5141,6 @@ "Cartridge.MD5" "53b66f11f67c3b53b2995e0e02017bd7" "Cartridge.Name" "RealSports Tennis (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "539b7038acec0ccedeae40f238998579" @@ -6556,9 +5152,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2636 / 4975156" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "5428cdfada281c569c74c7308c7f2c26" @@ -6568,17 +5161,12 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "589c73bbcd77db798cb92a992b4c06c3" -"Cartridge.Name" "Artillery Duel (1983) (Xonox) (PAL) [!]" "Cartridge.Manufacturer" "Xonox" -"Display.Height" "186" -"Display.YStart" "27" +"Cartridge.Name" "Artillery Duel (1983) (Xonox) (PAL) [!]" +"Display.YStart" "20" "" "Cartridge.MD5" "575c0fb61e66a31d982c95c9dea6865c" @@ -6588,8 +5176,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "220" -"Display.YStart" "59" "" "Cartridge.MD5" "551a64a945d7d6ece81e9c1047acedbc" @@ -6604,8 +5190,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-212" "Cartridge.Rarity" "Rare" -"Display.Height" "207" -"Display.YStart" "30" "" "Cartridge.MD5" "54785fa29e28aae6038929ba29d33d38" @@ -6617,10 +5201,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4201" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "5494b9ee403d9757f0fd1f749e80214a" @@ -6632,16 +5212,12 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2005" "Cartridge.Rarity" "Uncommon" -"Display.Height" "219" -"Display.YStart" "22" "" "Cartridge.MD5" "55ef7b65066428367844342ed59f956c" "Cartridge.Name" "Crazy Climber (1983) (Atari)" "Cartridge.ModelNo" "CX2683" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "46" "" "Cartridge.MD5" "55949cb7884f9db0f8dfcf8707c7e5cb" @@ -6654,10 +5230,6 @@ "Cartridge.Name" "RealSports Basketball (Atari) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Atari / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "551ef75593ec18d078e8f5cc0229e1c4" @@ -6669,7 +5241,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "100" "Cartridge.Rarity" "Rare" -"Display.Height" "184" "" "Cartridge.MD5" "55ace3c775f42eb46f08bb1dca9114e7" @@ -6681,25 +5252,17 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-004" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "5635cd67fb680424254ec156c42deee0" "Cartridge.Name" "Motocross (Starsoft) (PAL) [b1]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Height" "249" -"Display.YStart" "45" "" "Cartridge.MD5" "56300ed31fef018bd96768ccc982f7b4" "Cartridge.Name" "Rad Action Pak - Kung-Fu,Frostb,Freeway (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "238" -"Display.YStart" "50" "" "Cartridge.MD5" "562acb1b7ff182aba133bda8e21ad7c1" @@ -6721,8 +5284,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2459" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.YStart" "36" "Display.Phosphor" "Yes" "" @@ -6732,8 +5293,6 @@ "Cartridge.ModelNo" "CX2694" "Cartridge.Note" "Game crashes after car starts first turn (bad rom dump)" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.YStart" "39" "" "Cartridge.MD5" "568371fbae6f5e5b936af80031cd8888" @@ -6747,7 +5306,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "33" "" "Cartridge.MD5" "57c5b351d4de021785cf8ed8191a195c" @@ -6757,8 +5315,6 @@ "Cartridge.Rarity" "Prototype" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "192" -"Display.YStart" "35" "" "Cartridge.MD5" "579baa6a4aa44f035d245908ea7a044d" @@ -6766,10 +5322,6 @@ "Cartridge.Manufacturer" "Jess Ragan" "Cartridge.Note" "Hack of Galaxian (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "57939b326df86b74ca6404f64f89fce9" @@ -6777,10 +5329,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26111" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "57a66b6db7efc5df17b0b0f2f2c2f078" @@ -6794,8 +5342,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1002" "Cartridge.Rarity" "Rare" -"Display.YStart" "56" -"Display.Height" "206" "Display.Phosphor" "Yes" "" @@ -6804,18 +5350,13 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "58513bae774360b96866a07ca0e8fd8e" -"Cartridge.Name" "Custer's Revenge (1982) (Mystique)" "Cartridge.Manufacturer" "Mystique" "Cartridge.ModelNo" "1001" +"Cartridge.Name" "Custer's Revenge (1982) (Mystique)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "198" "Display.YStart" "32" "" @@ -6832,28 +5373,23 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-033" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "5b124850de9eea66781a50b2e9837000" -"Cartridge.Name" "Bachelor Party (1982) (Mystique)" "Cartridge.Manufacturer" "Mystique" "Cartridge.ModelNo" "1002" +"Cartridge.Name" "Bachelor Party (1982) (Mystique)" "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" -"Controller.Left" "Paddles" -"Display.Height" "219" -"Display.YStart" "27" -"Display.Phosphor" "Yes" +"Controller.Left" "PADDLES" +"Display.YStart" "22" +"Display.Height" "222" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "5ae73916fa1da8d38ceff674fa25a78a" "Cartridge.Name" "Barnstorming (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "599cbf919d47a05af975ad447df29497" @@ -6869,7 +5405,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "7-002" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "58e313e2b5613b2439b5f12bb41e3eef" @@ -6889,7 +5424,6 @@ "Cartridge.Manufacturer" "CosmoVision-Universal Gamex" "Cartridge.ModelNo" "GX-001" "Cartridge.Rarity" "Unbelievably Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "59e96de9628e8373d1c685f5e57dcf10" @@ -6916,29 +5450,21 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "2653" "Cartridge.Rarity" "Rare" -"Display.YStart" "35" "" "Cartridge.MD5" "5a2f2dcd775207536d9299e768bcd2df" "Cartridge.Name" "Flippern (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "194" -"Display.YStart" "54" "" "Cartridge.MD5" "59f596285d174233c84597dee6f34f1f" "Cartridge.Name" "River Raid (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "5a5390f91437af9951a5f8455b61cd43" "Cartridge.Name" "Qb (0.11) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "59" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -6947,10 +5473,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Height" "219" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "5a734779d797ccef25dc8acfa47244c7" @@ -6962,17 +5484,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26155" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "5a9d188245aff829efde816fcade0b16" "Cartridge.Name" "Phantom Tank (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "245" -"Display.YStart" "41" "" "Cartridge.MD5" "5af02776ebcdd8b5e39c4dfae61019e1" @@ -6984,8 +5500,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2656" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "5af9cd346266a1f2515e1fbc86f5186a" @@ -6993,8 +5507,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "002-01" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.YStart" "45" "" "Cartridge.MD5" "5b98e0536c3f60547dd708ae22adb04b" @@ -7006,10 +5518,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "5b6f5bcbbde42fc77d0bdb3146693565" @@ -7017,15 +5525,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "5b574faa56836da0866ba32ae32547f2" "Cartridge.Name" "Tomb Raider 2600 [REV 03] (Montezuma's Revenge Hack)" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "5b92a93b23523ff16e2789b820e2a4c5" @@ -7033,10 +5536,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-039" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "63c7395d412a3cd095ccdd9b5711f387" @@ -7054,26 +5553,20 @@ "Cartridge.MD5" "5bd79139a0c03b63f6f2cf00a7d385d2" "Cartridge.Name" "An Exercise In Minimalism (V1) (1999) (Marc de Smet) (PD)" -"Display.YStart" "38" -"Display.Height" "191" "" "Cartridge.MD5" "5bc9998b7e9a970e31d2cb60e8696cc4" "Cartridge.Name" "Borgwars Asteroids (2003) (Jack Kortkamp) (Asteroids Hack)" -"Display.Width" "152" -"Display.XStart" "8" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "5bba254e18257e578c245ed96f6b003b" "Cartridge.Name" "Music Effects Demo (21-01-2003) (Paul Slocum)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "5bbab3f3e4b47e3e23f9820765dbb45c" "Cartridge.Name" "Pitfall! (says 1985) [h1]" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "5bcc83677d68f7ef74c1b4a0697ba2a8" @@ -7092,19 +5585,17 @@ "Cartridge.Manufacturer" "Imagic / Josh" "Cartridge.Note" "Hack of Atlantis (Imagic)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "5be03a1fe7b2c114725150be04b38704" "Cartridge.Name" "Hunt & Score (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "37" "" "Cartridge.MD5" "5c618a50dfa23daac97ba459b9ff5206" "Cartridge.Name" "Berzerk Renegade (2002) (Steve Engelhardt) (Room of Doom Hack)" -"Display.YStart" "28" +"Display.YStart" "29" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "5c1b1aa78b7609d43c5144c3b3b60adf" @@ -7114,17 +5605,11 @@ "Cartridge.MD5" "5c0520c00163915a4336e481ca4e7ef4" "Cartridge.Name" "Pyramid War (AKA Wuestenschlacht) (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "67" "" "Cartridge.MD5" "5d8fb14860c2f198472b233874f6b0c9" "Cartridge.Name" "Boing! (PD) [a2]" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "5d799bfa9e1e7b6224877162accada0d" @@ -7132,19 +5617,11 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-206" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "36" "" "Cartridge.MD5" "5d2cc33ca798783dee435eb29debf6d6" "Cartridge.Name" "Commando (1988) (Activision) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "5d1260152596d91adc8cf5741adb719a" @@ -7157,16 +5634,12 @@ "Cartridge.MD5" "5c73693a89b06e5a09f1721a13176f95" "Cartridge.Name" "Wavy Line Test 2 (PD)" -"Display.Height" "211" -"Display.YStart" "21" "" "Cartridge.MD5" "5d8f1ab95362acdf3426d572a6301bf2" "Cartridge.Name" "Swoops! (v0.96) (Thomas Jentzsch) (PAL)" "Cartridge.Note" "Uses the Joystick (L) and Paddle (R) Controllers" "Controller.Right" "Paddles" -"Display.YStart" "40" -"Display.Height" "240" "" "Cartridge.MD5" "5dccf215fdb9bbf5d4a6d0139e5e8bcb" @@ -7174,15 +5647,11 @@ "Cartridge.Manufacturer" "Froggo" "Cartridge.ModelNo" "FG 1009" "Cartridge.Rarity" "Rare" -"Display.Height" "197" -"Display.YStart" "44" "" "Cartridge.MD5" "5db9e5bf663cad6bf159bc395f6ead53" "Cartridge.Name" "Time Race (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Height" "256" -"Display.YStart" "48" "" "Cartridge.MD5" "5de8803a59c36725888346fdc6e7429d" @@ -7190,17 +5659,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2631 / 6699845 / 4975152" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "5df559a36347d8572f9a6e8075a31322" "Cartridge.Name" "Enduro (Digivision) (Brazil) (PAL) [p1][!]" "Cartridge.Manufacturer" "Digivision" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "5e0c37f534ab5ccc4661768e2ddf0162" @@ -7214,10 +5677,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-049" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "37" "" "Cartridge.MD5" "5e1cd11a6d41fc15cf4792257400a31e" @@ -7225,7 +5684,6 @@ "Cartridge.Manufacturer" "Philip R. Frey" "Cartridge.Note" "Hack of Mario Bros. (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "195" "" "Cartridge.MD5" "5e2928f089490017e88e9f9e5a881a25" @@ -7238,7 +5696,6 @@ "Cartridge.MD5" "5f17fef8a64d64d119f8e76c50238762" "Cartridge.Name" "Acid Drop (1992) (Salu) (PAL) [b1]" -"Display.Height" "250" "" "Cartridge.MD5" "5ec73ac7d2ac95ac9530c6d33e713d14" @@ -7247,10 +5704,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Prototype" "Controller.Left" "Paddles" -"Display.Height" "198" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "5eeb81292992e057b290a5cd196f155d" @@ -7263,8 +5716,6 @@ "Cartridge.MD5" "60345ae60f7c7010346de7aff9bfe6ea" "Cartridge.Name" "Atlantis (1982) (Activision) [a1]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "600d48eef5c0ec27db554b7328b3251c" @@ -7276,16 +5727,11 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1004" "Cartridge.Rarity" "Rare" -"Display.YStart" "55" "" "Cartridge.MD5" "5f1b7d5fa73aa071ba0a3c2819511505" "Cartridge.Name" "Cosmic Commuter (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "5f2b4c155949f01c06507fb32369d42a" @@ -7298,7 +5744,6 @@ "Cartridge.MD5" "5f786b67e05fb9985b77d4beb35e06ee" "Cartridge.Name" "Defender II (1984) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "64" "" "Cartridge.MD5" "5f73e7175474c1c22fb8030c3158e9b3" @@ -7306,10 +5751,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2665" "Cartridge.Rarity" "Prototype" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "5f46d1ff6d7cdeb4b09c39d04dfd50a1" @@ -7317,7 +5758,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2661" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "22" "" "Cartridge.MD5" "5f39353f7c6925779b0169a87ff86f1e" @@ -7325,8 +5765,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2694" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.YStart" "39" "" "Cartridge.MD5" "5f708ca39627697e859d1c53f8d8d7d2" @@ -7345,7 +5783,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2655 / 4975167" "Cartridge.Rarity" "Common" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -7354,24 +5791,15 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26109" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "5fb71cc60e293fe10a5023f11c734e55" "Cartridge.Name" "This Planet Sucks (Fix) (27-12-2002) (Greg Troutman)" -"Display.YStart" "39" "" "Cartridge.MD5" "5faffe1c4c57430978dec5ced32b9f4a" "Cartridge.Name" "Volleyball (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "6015a9cef783e97e98a2aa2cf070ae06" @@ -7379,15 +5807,12 @@ "Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Note" "Uses two simultaneous Joystick Controllers, Hack of Battlezone (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "32" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "613abf596c304ef6dbd8f3351920c37a" "Cartridge.Name" "Boring Pac-man (Pac-Man Hack)" +"Display.YStart" "33" "" "Cartridge.MD5" "60358edf0c2cc76b1e549e031e50e130" @@ -7395,10 +5820,6 @@ "Cartridge.Manufacturer" "Manuel Polik" "Cartridge.Note" "Hack of Galaxian (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "6076b187a5d8ea7a2a05111c19b5d5cd" @@ -7408,8 +5829,6 @@ "Cartridge.MD5" "603c7a0d12c935df5810f400f3971b67" "Cartridge.Name" "Mr. Postman (1983) (Bitcorp) (PAL) [!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Height" "239" -"Display.YStart" "47" "" "Cartridge.MD5" "6058e40ce79d7434c7f7477b29abd4a5" @@ -7425,8 +5844,6 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2010" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "605fd59bfef88901c8c4794193a4cbad" @@ -7435,7 +5852,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Prototype" "Controller.Left" "Paddles" -"Display.Height" "220" "" "Cartridge.MD5" "60d304582d33e2957b73eb300a7495bb" @@ -7454,10 +5870,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-005" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "60e0ea3cbe0913d39803477945e9e5ec" @@ -7469,25 +5881,15 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "61631c2f96221527e7da9802b4704f93" "Cartridge.Name" "Commando (1988) (Activision) [a1][!]" -"Display.YStart" "45" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6141c095d0aee4e734bebfaac939030a" "Cartridge.Name" "Die Unterwasser-Bestien (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "615a3bf251a38eb6638cdc7ffbde5480" @@ -7495,13 +5897,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2674" "Cartridge.Rarity" "Common" -"Display.Height" "190" "" "Cartridge.MD5" "61426cee013306e7f7367534ab124747" "Cartridge.Name" "One Blue Bar Demo (PD)" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "61621a556ad3228f0234f5feb3ab135c" @@ -7513,10 +5912,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Height" "205" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "6205855cc848d1f6c4551391b9bfa279" @@ -7534,7 +5929,6 @@ "Cartridge.MD5" "619de46281eb2e0adbb98255732483b4" "Cartridge.Name" "UFO Patrol (Quelle)" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "22" "" "Cartridge.MD5" "62992392ea651a16aa724a92e4596ed6" @@ -7545,7 +5939,6 @@ "Cartridge.MD5" "6272f348a9a7f2d500a4006aa93e0d08" "Cartridge.Name" "RealSports Soccer (1983) (Atari) (PAL) [a1][!]" -"Display.Height" "256" "" "Cartridge.MD5" "624e0a77f9ec67d628211aaf24d8aea6" @@ -7553,10 +5946,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "108" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "62921652f6634eb1a0940ed5489c7e18" @@ -7567,8 +5956,6 @@ "Cartridge.Name" "Pharoah's Curse (TechnoVision) (PAL) [p2]" "Cartridge.Manufacturer" "TechnoVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.YStart" "22" "Display.Phosphor" "Yes" "" @@ -7580,17 +5967,11 @@ "Cartridge.Name" "Dark Mage (8K) (Greg Troutman) (PD)" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Rarity" "New Release" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "48" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "63166867f75869a3592b7a94ea62d147" "Cartridge.Name" "Indy 500 (1978) (Atari) [h2]" -"Display.YStart" "30" -"Display.Height" "205" "" "Cartridge.MD5" "6342afe9c9ad1b6120b8f6fb040d0926" @@ -7608,10 +5989,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5540" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "187" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "Display.Phosphor" "Yes" "" @@ -7623,8 +6000,6 @@ "Cartridge.Name" "Better Space Invaders (1999) (Rob Kudla) [!]" "Cartridge.Manufacturer" "Rob Kudla" "Cartridge.Note" "Hack of Space Invaders (Atari)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "63a6eda1da30446569ac76211d0f861c" @@ -7632,7 +6007,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-001" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" "" "Cartridge.MD5" "6362396c8344eec3e86731a700b13abf" @@ -7640,10 +6014,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "109" "Cartridge.Rarity" "Rare" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "635cc7a0db33773959d739d04eff96c2" @@ -7659,9 +6029,6 @@ "Cartridge.Manufacturer" "Rainbow Vision" "Cartridge.ModelNo" "SS-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "58" "" "Cartridge.MD5" "639ded0c9e53bc3f91defb5dde930286" @@ -7680,7 +6047,6 @@ "Cartridge.MD5" "64ca518905311d2d9aeb56273f6caa04" "Cartridge.Name" "Cubo Magico (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.YStart" "27" "" "Cartridge.MD5" "64198bb6470c78ac24fcf13fe76ab28c" @@ -7688,10 +6054,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -7700,7 +6062,6 @@ "Cartridge.Manufacturer" "David Marli" "Cartridge.Note" "Hack of Fast Food (Telesys)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "27" "" "Cartridge.MD5" "640a08e9ca019172d612df22a9190afb" @@ -7708,8 +6069,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2691" "Cartridge.Rarity" "Common" -"Display.Height" "250" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" @@ -7719,22 +6078,17 @@ "Cartridge.MD5" "643e6451eb6b8ab793eb60ba9c02e000" "Cartridge.Name" "Ghostbusters II (V2)" -"Display.Height" "242" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "6468d744be9984f2a39ca9285443a2b2" "Cartridge.Name" "Othello (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "61" "" "Cartridge.MD5" "645bf7f9146f0e4811ff9c7898f5cd93" "Cartridge.Name" "Super Kung-Fu (1983) (Xonox) (PAL) [!]" "Cartridge.Manufacturer" "Xonox" -"Display.Height" "195" -"Display.YStart" "59" "" "Cartridge.MD5" "64b8e19c767191ccdc97acc6904c397b" @@ -7755,9 +6109,6 @@ "Cartridge.Name" "Lilly Adventure (Starsoft) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Starsoft / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "227" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6522717cfd75d1dba252cbde76992090" @@ -7765,15 +6116,11 @@ "Cartridge.Manufacturer" "ITT Family Games" "Cartridge.ModelNo" "554-33391" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "651d2b6743a3a18b426bce2c881af212" "Cartridge.Name" "Pac-Man (CCE) (PAL) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "206" "" "Cartridge.MD5" "65490d61922f3e3883ee1d583ce10855" @@ -7781,10 +6128,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2692" "Cartridge.Rarity" "Uncommon" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "6538e454b0498ad2befe1ef0f87815c0" @@ -7802,10 +6145,6 @@ "Cartridge.MD5" "6672de8f82c4f7b8f7f1ef8b6b4f614d" "Cartridge.Name" "Angling (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Height" "183" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "66362890eb78d6ea65301592cce65f5b" @@ -7828,8 +6167,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "198" -"Display.YStart" "36" "" "Cartridge.MD5" "65b106eba3e45f3dab72ea907f39f8b4" @@ -7839,10 +6176,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Unbelievably Rare" "Controller.Left" "Paddles" -"Display.Height" "205" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "659a20019de4a23c748ec2292ea5f221" @@ -7854,10 +6187,6 @@ "Cartridge.MD5" "65ba1a4c643d1ab44481bdddeb403827" "Cartridge.Name" "River Raid II (AKA Katastrophen-Einsatz) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "65bd29e8ab1b847309775b0de6b2e4fe" @@ -7865,7 +6194,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2667" "Cartridge.Rarity" "Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "65c6406f5af934590097c8c032ebb482" @@ -7877,7 +6205,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1003" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "6651e2791d38edc02c5a5fd7b47a1627" @@ -7892,17 +6219,12 @@ "Cartridge.Note" "Uses the Joystick Controllers (swapped)" "Cartridge.Rarity" "Rare" "Console.SwapPorts" "Yes" -"Display.YStart" "64" "" "Cartridge.MD5" "66706459e62514d0c39c3797cbf73ff1" "Cartridge.Name" "Treasure Below (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Console.LeftDifficulty" "A" -"Display.YStart" "56" -"Display.Height" "230" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6b01a519b413f8cfa2f399f4d2841b42" @@ -7936,10 +6258,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "66bc1bef269ea59033928bac2d1d81e6" @@ -7949,10 +6267,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Height" "200" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "66b92ede655b73b402ecd1f4d8cd9c50" @@ -7960,8 +6274,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Height" "198" -"Display.YStart" "64" "" "Cartridge.MD5" "66b54641b5786ea3ff0215aa39d61e01" @@ -7975,15 +6287,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26117" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.YStart" "63" "" "Cartridge.MD5" "668dc528b7ea9345140f4fcfbecf7066" "Cartridge.Name" "Pooyan (1982) (Konami-Gakken) (PAL) [!]" "Cartridge.Manufacturer" "Konami-Gakken" -"Display.Height" "256" -"Display.YStart" "33" "" "Cartridge.MD5" "66c2380c71709efa7b166621e5bb4558" @@ -7997,7 +6305,6 @@ "Cartridge.MD5" "67631ea5cfe44066a1e76ddcb6bcb512" "Cartridge.Name" "Termool (AKA Fast Eddie) (PAL) [p1][!]" -"Display.YStart" "64" "" "Cartridge.MD5" "67684a1d18c85ffa5d82dab48fd1cb51" @@ -8005,8 +6312,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-003" "Cartridge.Rarity" "Rare" -"Display.Height" "215" -"Display.YStart" "46" "" "Cartridge.MD5" "683dc64ef7316c13ba04ee4398e2b93a" @@ -8022,10 +6327,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Height" "200" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "67cf913d1df0bf2d7ae668060d0b6694" @@ -8043,7 +6344,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-004" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -8061,7 +6361,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "195" "Display.Phosphor" "Yes" "" @@ -8075,8 +6374,6 @@ "Cartridge.Name" "Kung Fu (PAL) [!]" "Cartridge.ModelNo" "99003" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "218" -"Display.YStart" "50" "" "Cartridge.MD5" "6803fa7c2c094b428b859a58dc1dd06a" @@ -8087,8 +6384,6 @@ "Cartridge.MD5" "68449e4aaba677abcd7cde4264e02168" "Cartridge.Name" "Horizonal Color Bars Demo 2 (PD)" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "68489e60268a5e6e052bad9c62681635" @@ -8096,15 +6391,12 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG201" "Cartridge.Rarity" "Rare" -"Display.Height" "259" "" "Cartridge.MD5" "68c80e7e1d30df98a0cf67ecbf39cc67" "Cartridge.Name" "Gunfight 2600 - One Step Forward & Two Steps Back (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "229" "" "Cartridge.MD5" "68760b82fc5dcf3fedf84376a4944bf9" @@ -8116,8 +6408,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-004" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.YStart" "44" "Display.Phosphor" "Yes" "" @@ -8129,18 +6419,12 @@ "Cartridge.MD5" "68878250e106eb6c7754bc2519d780a0" "Cartridge.Name" "Snail Against Squirrel (1983) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "245" -"Display.YStart" "14" "" "Cartridge.MD5" "6a2c68f7a77736ba02c0f21a6ba0985b" "Cartridge.Name" "Computer Chess (1983) (Atari) (Prototype)" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.YStart" "42" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "698f569eab5a9906eec3bc7c6b3e0980" @@ -8174,7 +6458,6 @@ "Cartridge.Name" "Survival Island (1982) (Starpath) [a1]" "Cartridge.Manufacturer" "Starpath" "Cartridge.Rarity" "Rare" -"Display.YStart" "30" "Emulation.HmoveBlanks" "No" "" @@ -8187,10 +6470,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "69ebf910ab9b63e5b8345f016095003b" @@ -8199,10 +6478,6 @@ "Cartridge.MD5" "69e79b1352b9ee1754bbe63b4a7062c3" "Cartridge.Name" "Pink Floyd - The Wall (2003) (Barry Laws Jr.) (Berzerk Hack)" -"Display.YStart" "37" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "4" "" "Cartridge.MD5" "69fac82cd2312dd9ce5d90e22e2f070a" @@ -8210,9 +6485,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-202" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "6a03c28d505bab710bf20b954e14d521" @@ -8226,18 +6498,12 @@ "Cartridge.MD5" "6a3b0c33cf74b1e213a629e3c142b73c" "Cartridge.Name" "Cory The Interviewer - The Hunt For Begis Billboard (Cody Pittman) (PD)" -"Display.YStart" "43" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6a882fb1413912d2ce5cf5fa62cf3875" "Cartridge.Name" "Dragon Defender (PAL)" "Cartridge.ModelNo" "TP-605" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "249" -"Display.YStart" "32" "Display.Phosphor" "Yes" "" @@ -8246,14 +6512,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Height" "214" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "6a76d5f0ed721639474aa9bbde69ebf0" "Cartridge.Name" "Play Demo (PD)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "6a9b30ca46b0dba9e719f4cbd340e01c" @@ -8261,10 +6524,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.YStart" "50" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6aa66e9c3eea76a0c40ef05513497c40" @@ -8276,8 +6535,6 @@ "Cartridge.Manufacturer" "Matthias Jaap" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "6ae4dc6d7351dacd1012749ca82f9a56" @@ -8285,8 +6542,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26125 (label says CX26127 on some)" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6b683be69f92958abe0e2a9945157ad5" @@ -8303,8 +6558,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG203" "Cartridge.Rarity" "Rare" -"Display.Height" "245" -"Display.YStart" "41" "" "Cartridge.MD5" "6b7e1c11448c4d3f28160d2de884ebc8" @@ -8317,10 +6570,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Height" "222" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "6b6ca32228ae352b4267e4bd2cddf10c" @@ -8329,8 +6578,6 @@ "Cartridge.MD5" "6b7a56b6ac2ca4bf9254474bf6ed7d80" "Cartridge.Name" "Horizonal Color Bars Demo (PD)" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "6b75f8fa4fd011a6698c58315f83d2ac" @@ -8340,10 +6587,6 @@ "Cartridge.Rarity" "New Release (Hack)" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "6b853585764b8cfdc73310e372c828d9" @@ -8355,10 +6598,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "6bde3f6ac31aceef447ce57d4d2c2ec0" @@ -8367,32 +6606,20 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "New Release" "Controller.Left" "Paddles" -"Display.Height" "174" -"Display.YStart" "44" "" "Cartridge.MD5" "6bb09bc915a7411fe160d0b2e4d66047" "Cartridge.Name" "Space Jockey (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "227" -"Display.YStart" "64" "" "Cartridge.MD5" "6c1553ca90b413bf762dfc65f2b881c7" "Cartridge.Name" "Mountain Man (AKA Winterjagt) (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Height" "240" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "703f0f7af350b0fa29dfe5fbf45d0d75" "Cartridge.Name" "4 Pak (Dark Green) [p1][!]" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "6d218dafbf5a691045cdc1f67ceb6a8f" @@ -8406,8 +6633,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "235" -"Display.YStart" "50" "" "Cartridge.MD5" "6c658b52d03e01828b9d2d4718a998ac" @@ -8417,21 +6642,17 @@ "Cartridge.MD5" "6c91ac51421cb9fc72c9833c4f440d65" "Cartridge.Name" "Cosmic Town (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.YStart" "64" "" "Cartridge.MD5" "6cd506509e8fd5627f55603780e862a8" "Cartridge.Name" "Dark Mage (SuperCharger) (Greg Troutman) (PD)" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Rarity" "New Release" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "6cbe945e16d9f827d0d295546ac11b22" "Cartridge.Name" "Gunfight 2600 - AI (MP)" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "6c9a32ad83bcfde3774536e52be1cce7" @@ -8440,6 +6661,7 @@ "Cartridge.MD5" "6ccd8ca17a0e4429b446cdcb66327bf1" "Cartridge.Name" "RPG Engine (12-05-2003) (Paul Slocum) (PD)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "6cd1dc960e3e8d5c5e0fbe67ab49087a" @@ -8449,9 +6671,6 @@ "Cartridge.MD5" "6ce2110ac5dd89ab398d9452891752ab" "Cartridge.Name" "River Raid (Polyvox)" "Cartridge.Manufacturer" "Polyvox" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "6cf054cd23a02e09298d2c6f787eb21d" @@ -8459,10 +6678,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5540" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "202" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "59" "Display.Phosphor" "Yes" "" @@ -8490,10 +6705,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "6dda84fb8e442ecf34241ac0d1d91d69" @@ -8502,16 +6713,11 @@ "Cartridge.ModelNo" "CX2677" "Cartridge.Rarity" "Uncommon" "Cartridge.Type" "F6SC" -"Display.Height" "188" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "37" "" "Cartridge.MD5" "6d9afd70e9369c2a6bff96c4964413b7" "Cartridge.Name" "Time Race 2 (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" -"Display.YStart" "45" "" "Cartridge.MD5" "6f5b3021a88930a9bba3770094c95f3d" @@ -8523,18 +6729,12 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG207" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.YStart" "58" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "6de924c2297c8733524952448d54a33c" "Cartridge.Name" "Moon Patrol (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "175" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "47" "" "Cartridge.MD5" "6e372f076fb9586aff416144f5cfe1cb" @@ -8542,7 +6742,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2646 / 4975185" "Cartridge.Rarity" "Common" -"Display.Height" "206" "" "Cartridge.MD5" "6e19428387686a77d8c8d2f731cb09e0" @@ -8554,8 +6753,6 @@ "Cartridge.Name" "Star Wars - Ewok Adventure (Parker Bros) (Prototype) (PAL)" "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Rarity" "Prototype" -"Display.Height" "256" -"Display.YStart" "25" "" "Cartridge.MD5" "6ed5012793f5ddf4353a48c11ea9b8d3" @@ -8586,8 +6783,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2648 / 4975161" "Cartridge.Rarity" "Uncommon" -"Display.Height" "217" -"Display.YStart" "56" "" "Cartridge.MD5" "6f084daf265599f65422ef4173b69bc7" @@ -8614,7 +6809,6 @@ "Cartridge.Name" "Cubicolor (Rob Fulop)" "Cartridge.Manufacturer" "Rob Fulop" "Cartridge.Rarity" "Prototype" -"Display.YStart" "27" "" "Cartridge.MD5" "6f75d72e4cf996100ccdd163d57bdac2" @@ -8624,7 +6818,6 @@ "Cartridge.MD5" "6fac680fc9a72e0e54255567c72afe34" "Cartridge.Name" "Superman (1978) (Atari) (PAL) [p2][!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "56" "" "Cartridge.MD5" "6fc394dbf21cf541a60e3b3631b817f1" @@ -8632,8 +6825,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3611" "Cartridge.Rarity" "Common" -"Display.Height" "201" -"Display.YStart" "62" "" "Cartridge.MD5" "6fc27a9233fc69d28d3f190b4ff80f03" @@ -8647,8 +6838,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2689" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "6fd7c7057eeab273b29c7aafc7429a96" @@ -8656,10 +6845,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-018" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.Width" "148" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "703d32062436e4c20c48313dff30e257" @@ -8676,7 +6861,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.YStart" "33" "" "Cartridge.MD5" "6ffc95108e5add6f9b8abcaf330be835" @@ -8699,25 +6883,17 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2653 / 99823 / 75111" "Cartridge.Rarity" "Rare" -"Display.Height" "228" -"Display.YStart" "29" "" "Cartridge.MD5" "70ce036e59be92821c4c7fd735ec6f68" "Cartridge.Name" "Frostbite (1983) (Activision) [o1]" "Cartridge.ModelNo" "AX-031" "Cartridge.Rarity" "Rare" -"Display.Height" "232" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "70a8480cfaf08776e5420365732159d2" "Cartridge.Name" "Horizontally Scrolling Playfield Thing (Rob Kudla) (PD)" "Cartridge.Manufacturer" "Rob Kudla" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "709910c2e83361bc4bf8cd0c20c34fbf" @@ -8730,7 +6906,6 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "1004" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "7146dd477e019f81eac654a79be96cb5" @@ -8738,8 +6913,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2685" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.YStart" "37" "" "Cartridge.MD5" "713095cd968b1aff45a2562ea4bbcbfe" @@ -8749,8 +6922,6 @@ "Cartridge.MD5" "70d14c66c319683b4c19abbe0e3db57c" "Cartridge.Name" "Oystron (V2.82) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "197" -"Display.YStart" "35" "" "Cartridge.MD5" "712924a2c7b692f6e7b009285c2169a7" @@ -8758,10 +6929,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "172" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" @@ -8770,70 +6937,52 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5663" "Cartridge.Rarity" "Common" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "714e13c08508ee9a7785ceac908ae831" "Cartridge.Name" "Parachute (HomeVision) (PAL)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "220" -"Display.YStart" "49" "" "Cartridge.MD5" "7732e4e4cc2644f163d6650ddcc9d9df" "Cartridge.Name" "2 Pak Black - Challenge, Surfing (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "236" -"Display.YStart" "49" "" "Cartridge.MD5" "72fd08deed1d6195942e0c6f392e9848" "Cartridge.Name" "2 Pak Special Dark Blue - Planet Patrol,Wall Defender (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "236" -"Display.YStart" "49" "" "Cartridge.MD5" "71f09f128e76eb14e244be8f44848759" "Cartridge.Name" "Astro Attack (Goliath) (PAL) [!]" -"Display.YStart" "44" -"Display.Height" "230" "" "Cartridge.MD5" "718ee85ea7ec27d5bea60d11f6d40030" "Cartridge.Name" "Ghostbusters II (1992) (Salu) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Salu / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "242" -"Display.YStart" "20" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "718ae62c70af4e5fd8e932fee216948a" -"Cartridge.Name" "Journey - Escape (1982) (Data Age) [!]" "Cartridge.ModelNo" "112-006" +"Cartridge.Name" "Journey - Escape (1982) (Data Age) [!]" "Cartridge.Rarity" "Common" -"Display.Phosphor" "Yes" +"Display.Height" "230" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "7187118674ff3c0bb932e049d9dbb379" "Cartridge.Name" "Keystone Keypers (Zirok) (Brazil) [p1][!]" "Cartridge.Manufacturer" "Zirok" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "7197b6cbde6ecd10376155e6b848e80d" "Cartridge.Name" "Multi-Sprite Game V2.1 (Piero Cavina) (PD)" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Rarity" "New Release" -"Display.Height" "194" "" "Cartridge.MD5" "72bda70c75dfa2365b3f8894bace9e6a" @@ -8860,15 +7009,10 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-217" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" "" "Cartridge.MD5" "721a5567f76856f6b50a6707aa8f8316" "Cartridge.Name" "Ghostbusters (1985) (Activision) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "72305c997f2cec414fe6f8c946172f83" @@ -8876,10 +7020,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4000" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "56" "Display.Phosphor" "Yes" "" @@ -8887,10 +7027,6 @@ "Cartridge.Name" "Super Ferrari (Quelle)" "Cartridge.Manufacturer" "Quelle" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "204" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "72a5b5052272ac785fa076709d16cef4" @@ -8902,8 +7038,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.YStart" "25" "" "Cartridge.MD5" "72b8dc752befbfb3ffda120eb98b2dd0" @@ -8911,9 +7045,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5550" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "72d0acb5de0db662de0360a6fc59334d" @@ -8921,15 +7052,12 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3204" "Cartridge.Rarity" "Uncommon" -"Display.Height" "197" -"Display.YStart" "64" "" "Cartridge.MD5" "72db1194b1cc7d45b242f25eb1c148d3" "Cartridge.Name" "Pac-Man (1981) (Atari) [h1]" "Cartridge.Note" "Hack of Pac-Man (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "206" "" "Cartridge.MD5" "75e8d8b9e9c5c67c2226dbfd77dcfa7d" @@ -8941,23 +7069,16 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5666" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "27" "" "Cartridge.MD5" "73a710e621d44e97039d640071908aef" "Cartridge.Name" "Barber Pole Demo (PD)" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "73158ea51d77bf521e1369311d26c27b" -"Cartridge.Name" "Challenge (Zellers) [!]" "Cartridge.Manufacturer" "Zellers" -"Display.Height" "220" -"Display.YStart" "24" +"Cartridge.Name" "Challenge (Zellers) [!]" +"Display.YStart" "25" "" "Cartridge.MD5" "72ffbef6504b75e69ee1045af9075f66" @@ -8965,34 +7086,25 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632 / 4975153" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "73521c6b9fed6a243d9b7b161a0fb793" "Cartridge.Name" "Miniature Golf (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "47" "" "Cartridge.MD5" "73aa02458b413091ac940c0489301710" "Cartridge.Name" "Boom Bang (AKA Kampf dem Steinfresser) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "217" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "749fec9918160921576f850b2375b516" -"Cartridge.Name" "China Syndrome (1982) (Spectravideo)" "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-205" +"Cartridge.Name" "China Syndrome (1982) (Spectravideo)" "Cartridge.Rarity" "Rare" -"Display.Height" "212" -"Display.YStart" "28" -"Display.Phosphor" "Yes" +"Display.YStart" "29" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "740b47df422372fbef700b42cea4e0bf" @@ -9004,8 +7116,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "228" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -9016,13 +7126,10 @@ "Cartridge.MD5" "73c545db2afd5783d37c46004e4024c2" "Cartridge.Name" "Smurfs - Rescue in Gargamel's Castle (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Height" "205" -"Display.YStart" "60" "" "Cartridge.MD5" "73c839aff6a055643044d2ce16b3aaf7" "Cartridge.Name" "Starmaster (1982) (Activision) (PAL) [a1][!]" -"Display.YStart" "64" "" "Cartridge.MD5" "747d3031eb37e32abc7f6e5ee928cd8f" @@ -9034,14 +7141,10 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG203" "Cartridge.Rarity" "Rare" -"Display.Height" "245" -"Display.YStart" "47" "" "Cartridge.MD5" "7450ae4e10ba8380c55b259d7c2b13e8" "Cartridge.Name" "Register Twiddler Demo 2 (PD)" -"Display.Height" "184" -"Display.YStart" "40" "" "Cartridge.MD5" "742de93b8d849220f266b627fbabba82" @@ -9053,10 +7156,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4104" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "206" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "56" "" "Cartridge.MD5" "74f623833429d35341b7a84bc09793c0" @@ -9064,17 +7163,11 @@ "Cartridge.Manufacturer" "Froggo / Zellers" "Cartridge.ModelNo" "FG 1007" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "74d072e8a34560c36cacbc57b2462360" "Cartridge.Name" "Sea Hawk (AKA Overkill-RVision) (1982) (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Sancho" -"Display.Height" "243" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "74ca9bdc91ee387a5bd929b73aec5c2c" @@ -9094,20 +7187,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "172" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "75511bb694662301c9e71df645f4b5a7" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "198" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "757f529026696e13838364dea382a4ed" @@ -9115,10 +7200,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-014" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "756ca07a65a4fbbedeb5f0ddfc04d0be" @@ -9126,8 +7207,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2629" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "44" -"Display.Height" "256" "" "Cartridge.MD5" "7574480ae2ab0d282c887e9015fdb54c" @@ -9135,14 +7214,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2699" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.YStart" "39" "" "Cartridge.MD5" "7576dd46c2f8d8ab159d97e3a3f2052f" "Cartridge.Name" "Time Machine (AKA Great Escape,Asteroid Belt) (PAL) [!]" -"Display.Height" "221" -"Display.YStart" "49" "" "Cartridge.MD5" "75e276ba12dc4504659481c31345703a" @@ -9150,15 +7225,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4103" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "52" "" "Cartridge.MD5" "75b22fdf632d76e246433db1ebccd3c4" "Cartridge.Name" "Skeleton+ (05-05-2003) (Eric Ball) (PAL)" "Cartridge.Sound" "Stereo" -"Display.Height" "256" "" "Cartridge.MD5" "75b557be7f08db84ec5b242207b9f241" @@ -9170,10 +7241,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT7045" "Cartridge.Rarity" "Rare" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "76a9bf05a6de8418a3ebc7fc254b71b4" @@ -9186,24 +7253,16 @@ "Cartridge.MD5" "7628d3cadeee0fd2e41e68b3b8fbe229" "Cartridge.Name" "Fishing Derby (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "188" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "7608abdfd9b26f4a0ecec18b232bea54" "Cartridge.Name" "Football (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "219" -"Display.YStart" "61" "" "Cartridge.MD5" "75ea128ba96ac6db8edf54b071027c4e" "Cartridge.Name" "Slot Machine (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "44" "" "Cartridge.MD5" "75ee371ccfc4f43e7d9b8f24e1266b55" @@ -9216,16 +7275,10 @@ "Cartridge.MD5" "76ee917d817ef9a654bc4783e0273ac4" "Cartridge.Name" "Fox & Goat (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "194" -"Display.YStart" "64" "" "Cartridge.MD5" "76c88341017eae660efc6e49c4b6ab40" "Cartridge.Name" "Indiana Pitfall (Pitfall Hack)" -"Display.YStart" "40" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "76c685d1a60c0107aa54a772113a2972" @@ -9233,16 +7286,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "38" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "76f66ce3b83d7a104a899b4b3354a2f2" "Cartridge.Name" "Cat Trax (1983) (UA)" "Cartridge.Manufacturer" "UA" -"Display.Height" "200" -"Display.YStart" "33" "Display.Phosphor" "Yes" "" @@ -9251,13 +7300,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-001" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" "" "Cartridge.MD5" "777aece98d7373998ffb8bc0b5eff1a2" "Cartridge.Name" "2600 Collison Demo 2 (Piero Cavina) (PD)" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "7778ac65d775a079f537e97cbdad541c" @@ -9265,7 +7311,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-021" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "60" "" "Cartridge.MD5" "78b84cfb1c57b0488d674d2374e656e6" @@ -9273,10 +7318,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "77cd9a9dd810ce8042bdb9d40e256dfe" @@ -9288,7 +7329,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" "" "Cartridge.MD5" "7860716fa5dbc0fffab93fb9a4cb4132" @@ -9308,8 +7348,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "205" -"Display.YStart" "56" "" "Cartridge.MD5" "7836794b79e8060c2b8326a2db74eef0" @@ -9321,16 +7359,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-041" "Cartridge.Rarity" "Rare" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "78821ef76ebc3934850d1bc1b9e4f4b0" "Cartridge.Name" "Hot Action Pak - Ghostbusters, Tennis, Plaque Attack (1990) (HES) (PAL) [!]" -"Display.YStart" "49" -"Display.Height" "214" "" "Cartridge.MD5" "787ebc2609a31eb5c57c4a18837d1aee" @@ -9347,8 +7379,6 @@ "Cartridge.Manufacturer" "Barry Laws Jr." "Cartridge.Note" "Hack of Astroblast (Mattel)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "202" -"Display.YStart" "27" "" "Cartridge.MD5" "78c2de58e42cd1faac2ea7df783eaeb3" @@ -9360,32 +7390,20 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "79004f84bdeee78d142e445057883169" "Cartridge.Name" "Planet Patrol (CCE) [!]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "199" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "7f525b07bc98080cc8950f7284e52ede" "Cartridge.Name" "128-in-1 Junior Console (Chip 4) (PAL) [!]" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "7f430c33044e0354815392b53a9a772d" "Cartridge.Name" "2 Pak Special Magenta - CaveBlast,City War (1992) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "222" -"Display.YStart" "49" "" "Cartridge.MD5" "7a93d0c029eaa72236523eedc3f19645" @@ -9397,18 +7415,12 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-037-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "798b8921276eec9e332dfcb47a2dbb17" "Cartridge.Name" "Cookie Monster Munch (1983) (Atari) (PAL) [a1][!]" "Cartridge.Note" "Uses Kids/Keypad Controllers" "Controller.Left" "KEYBOARD" -"Display.YStart" "45" -"Display.Height" "228" "" "Cartridge.MD5" "7972e5101fa548b952d852db24ad6060" @@ -9416,8 +7428,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2627 / 6699841" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "798cc114f1623c14085868cd3494fe8e" @@ -9437,8 +7447,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2616" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "41" "" "Cartridge.MD5" "79d4af56036ec28f298cad964a2e2494" @@ -9447,7 +7455,6 @@ "Cartridge.MD5" "79b649fb812c50b4347d12e7ddbb8400" "Cartridge.Name" "Red Pong Number 2 Demo 2 (PD)" -"Display.Height" "194" "Display.Phosphor" "Yes" "" @@ -9456,10 +7463,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "79fcdee6d71f23f6cf3d01258236c3b9" @@ -9467,7 +7470,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2673" "Cartridge.Rarity" "Common" -"Display.YStart" "55" "" "Cartridge.MD5" "79e5338dbfa6b64008bb0d72a3179d3c" @@ -9475,10 +7477,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4313" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "79d6f61da3c64688ac8e075667f8a39f" @@ -9490,10 +7488,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -9506,8 +7500,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11007" "Cartridge.Rarity" "Uncommon" -"Display.Height" "186" -"Display.YStart" "52" "" "Cartridge.MD5" "7a7f6ab9215a3a6b5940b8737f116359" @@ -9515,18 +7507,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4103" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "7a64b5a6e90619c6aacf244cdd7502f8" "Cartridge.Name" "Warring Worms (Beta 1) (2002) (Baroque Gaming)" "Cartridge.Manufacturer" "Baroque Gaming (Brian Eno)" "Cartridge.Rarity" "Prototype" -"Display.Height" "200" -"Display.YStart" "37" "" "Cartridge.MD5" "7b6f3348dbf71ada88db0fdaf7feefe0" @@ -9536,18 +7522,11 @@ "Cartridge.MD5" "7b5207e68ee85b16998bea861987c690" "Cartridge.Name" "3-D Tic-Tac-Toe (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "7ac4f4fb425db38288fa07fb8ff4b21d" "Cartridge.Name" "Exocet (AKA Space Eagle) (Sancho-Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Sancho-Goliath" -"Display.Height" "240" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "7ab210f448de518fa61a5924120ba872" @@ -9577,9 +7556,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2668" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -9588,8 +7564,6 @@ "Cartridge.Manufacturer" "Amiga" "Cartridge.ModelNo" "3120" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "197" -"Display.YStart" "33" "" "Cartridge.MD5" "7adbcf78399b19596671edbffc3d34aa" @@ -9597,21 +7571,16 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26152" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "32" "" "Cartridge.MD5" "7b24bfe1b61864e758ada1fe9adaa098" "Cartridge.Name" "Wizard (Atari) (Prototype)" "Cartridge.Rarity" "Prototype" -"Display.Height" "190" -"Display.YStart" "39" "" "Cartridge.MD5" "7b43c32e3d4ff5932f39afcb4c551627" "Cartridge.Name" "Kamikaze Saucers (198x) (Syncro)" "Cartridge.Rarity" "Prototype" -"Display.YStart" "38" -"Display.Height" "220" "" "Cartridge.MD5" "7b3cf0256e1fa0fdc538caf3d5d86337" @@ -9619,7 +7588,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-009" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "7c757bb151269b2a626c907a22f5dae7" @@ -9627,10 +7595,6 @@ "Cartridge.Manufacturer" "TNT Games" "Cartridge.ModelNo" "CX26190" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "7ba07d4ea18bf3b3245c374d8720ad30" @@ -9638,36 +7602,22 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "7b79beb378d1b4471def90ceccf413de" "Cartridge.Name" "Pitfall Cupcake (Pitfall Hack)" -"Display.YStart" "40" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "7b938c7ddf18e8362949b62c7eaa660a" "Cartridge.Name" "Star Ship - Outer Space (1977) [o1]" "Cartridge.ModelNo" "CX2603 / 6699803 / 4975601" "Cartridge.Rarity" "Rare" -"Display.Height" "219" -"Display.YStart" "32" "" "Cartridge.MD5" "7c00e7a205d3fda98eb20da7c9c50a55" "Cartridge.Name" "Lost Luggage (1981) (Apollo) [a1]" "Cartridge.ModelNo" "AP 2004" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "7bc4fd254ec8c0a25a13f02fd3f762ff" @@ -9697,12 +7647,11 @@ "Cartridge.MD5" "7eaf009a892f03d90682dc1e67e85f07" "Cartridge.Name" "Bounce! (18-03-2003) (Fabrizio Zavagli)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "7d903411807704e725cf3fafbeb97255" "Cartridge.Name" "Cosmic Ark (no stars) [h1]" -"Display.Height" "192" -"Display.YStart" "42" "" "Cartridge.MD5" "7cd379da92c93679f3b6d2548617746a" @@ -9712,10 +7661,6 @@ "Cartridge.MD5" "7d5c3b7b908752b98e30690e2a3322c2" "Cartridge.Name" "Freeway (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "7ced6709f091e79a2ab9575d3516a4ac" @@ -9723,18 +7668,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.YStart" "64" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "7d3cdde63b16fa637c4484e716839c94" "Cartridge.Name" "Road Runner (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "28" "" "Cartridge.MD5" "7e4783a59972ae2cd8384f231757ea0b" @@ -9742,10 +7680,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26139" "Cartridge.Rarity" "Uncommon" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "7e0dc330a32398f980637f9ded8f3ac4" @@ -9753,20 +7687,15 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-012" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "196" -"Display.YStart" "76" "" "Cartridge.MD5" "7d93071b3e3616093a6b5a98b0315751" "Cartridge.Name" "Gunfight 2600 - Music & Bugfixes 2 (2001) (MP)" -"Display.YStart" "20" "" "Cartridge.MD5" "7dc03a1f56d0e6a8aae3e3e50d654a08" "Cartridge.Name" "Hozer Video Demo (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "197" -"Display.YStart" "37" "" "Cartridge.MD5" "7db7c5fd8d3f53127a4bb0092c91d983" @@ -9780,8 +7709,6 @@ "Cartridge.MD5" "7d9c96b215d1941e87b6fb412eb9204f" "Cartridge.Name" "Othello (1978) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "215" -"Display.YStart" "60" "" "Cartridge.MD5" "7d940d749e55b96b7b746519fa06f2de" @@ -9792,15 +7719,12 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.YStart" "50" "" "Cartridge.MD5" "7dbc8fa2e488e3f6b87fbe0f76c5b89f" "Cartridge.Name" "Sound X (1996) (Ed Federmeyer)" "Cartridge.Manufacturer" "Ed Federmeyer" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "185" -"Display.YStart" "36" "" "Cartridge.MD5" "7dcbfd2acc013e817f011309c7504daa" @@ -9808,15 +7732,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4000" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "7e464186ba384069582d9f0c141f7491" "Cartridge.Name" "General Retreat (Playground) (PAL)" "Cartridge.Manufacturer" "Playaround" -"Display.YStart" "64" "" "Cartridge.MD5" "7e51a58de2c0db7d33715f518893b0db" @@ -9824,10 +7745,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2738" "Cartridge.Rarity" "Rare" -"Display.Height" "186" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "47" "Display.Phosphor" "Yes" "" @@ -9836,7 +7753,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2673" "Cartridge.Rarity" "Common" -"Display.Height" "200" "" "Cartridge.MD5" "7ead257e8b5a44cac538f5f54c7a0023" @@ -9851,16 +7767,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "36" "" "Cartridge.MD5" "7e7c4c59d55494e66eef5e04ec1c6157" "Cartridge.Name" "Warring Worms (2002) (Baroque Gaming)" "Cartridge.Manufacturer" "Baroque Gaming (Brian Eno)" "Cartridge.Rarity" "New Release" -"Display.Height" "200" -"Display.YStart" "37" "" "Cartridge.MD5" "7e8aa18bc9502eb57daaf5e7c1e94da7" @@ -9870,16 +7782,11 @@ "Cartridge.Note" "Uses the Joystick Controllers (swapped)" "Cartridge.Rarity" "Rare" "Console.SwapPorts" "Yes" -"Display.YStart" "27" "" "Cartridge.MD5" "7f07cd2e89dda5a3a90d3ab064bfd1f6" "Cartridge.Name" "Boxen (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Height" "216" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "60" "" "Cartridge.MD5" "7edc8fcb319b3fb61cac87614afd4ffa" @@ -9887,18 +7794,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-003" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "16" -"Display.YStart" "27" "" "Cartridge.MD5" "7eafc9827e8d5b1336905939e097aae7" "Cartridge.Name" "Elk Attack (1987) (Atari)" "Cartridge.Rarity" "New Release" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "7ed7130a6e4020161836414332b11983" @@ -9910,8 +7810,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3211" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.YStart" "42" "" "Cartridge.MD5" "7ef74879d7cb9fa0ef161b91ad55b3bb" @@ -9922,15 +7820,12 @@ "Cartridge.MD5" "8c8a26ed57870daba8e13162d497bad1" "Cartridge.Name" "2 Pak Special - Dolphin, Pigs 'N Wolf (1990) (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "236" -"Display.YStart" "49" "" "Cartridge.MD5" "8aad33da907bed78b76b87fceaa838c1" -"Cartridge.Name" "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "39" +"Cartridge.Name" "Air-Sea Battle (32-in-1) (Atari) (PAL) [!]" +"Display.Height" "260" "" "Cartridge.MD5" "89a68746eff7f266bbf08de2483abe55" @@ -9938,19 +7833,16 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2696" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "191" -"Display.YStart" "40" "" "Cartridge.MD5" "826481f6fc53ea47c9f272f7050eedf7" "Cartridge.Name" "Atlantis II (1982) (Imagic) [!]" "Cartridge.Manufacturer" "Imagic" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "805f9a32ef97ac25f999a25014dc5c23" "Cartridge.Name" "Balthazar (aka Babylon 5) (SnailSoft)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "7f6533386644c7d6358f871666c86e79" @@ -9958,7 +7850,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-008" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "7ffc2d80fd49a124808315306d19868e" @@ -9972,7 +7863,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2653" "Cartridge.Rarity" "Rare" -"Display.YStart" "35" "" "Cartridge.MD5" "7fcd1766de75c614a3ccc31b25dd5b7a" @@ -9984,10 +7874,6 @@ "Cartridge.MD5" "7f9fbe3e00a21ea06e6ae5e0e5db2143" "Cartridge.Name" "Skate Boardin' (2002) (Skyworks) [!]" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" -"Display.Height" "209" "" "Cartridge.MD5" "7f73ac39e5e3e13e40fd8ad885561a0f" @@ -9997,22 +7883,18 @@ "Cartridge.MD5" "7f790939f7eaa8c47a246c4283981f84" "Cartridge.Name" "This Planet Sucks Demo 3 (Greg Troutman) (PD)" "Cartridge.Rarity" "New Release" -"Display.YStart" "40" "" "Cartridge.MD5" "7ff53f6922708119e7bf478d7d618c86" "Cartridge.Name" "Schussel, der Polizistenschreck (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "219" "" "Cartridge.MD5" "801ba40f3290fc413e8c816c467c765c" "Cartridge.Name" "Gunfight 2600 - Westward Ho! (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "229" "" "Cartridge.MD5" "8068e07b484dfd661158b3771d6621ca" @@ -10020,10 +7902,6 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100286" "Cartridge.Rarity" "Rare" -"Display.Height" "230" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "808c3b1e60ee0e7c65205fa4bd772221" @@ -10036,10 +7914,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -10052,15 +7926,12 @@ "Cartridge.Manufacturer" "David Marli" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "80e1410ec98089e0733cc09e584dba4b" -"Cartridge.Name" "Jumping Jack (Dynamics) (PAL) [!]" "Cartridge.Manufacturer" "Dynamics" -"Display.Height" "256" -"Display.YStart" "42" +"Cartridge.Name" "Jumping Jack (Dynamics) (PAL) [!]" +"Display.YStart" "40" "" "Cartridge.MD5" "81341f00b61ab37d19d1529f483d496d" @@ -10070,24 +7941,16 @@ "Cartridge.MD5" "8101efafcf0af32fedda4579c941e6f4" "Cartridge.Name" "Okie Dokie (4K) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "220" -"Display.Width" "128" -"Display.XStart" "16" -"Display.YStart" "64" "" "Cartridge.MD5" "8108ad2679bd055afec0a35a1dca46a4" "Cartridge.Name" "Puzzled World (Cooper Black) (PAL) [p1]" "Cartridge.Manufacturer" "Cooper Black" -"Display.Height" "175" -"Display.YStart" "52" "" "Cartridge.MD5" "8108162bc88b5a14adc3e031cf4175ad" "Cartridge.Name" "Vom Himmel durch die Hoelle (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Height" "251" -"Display.YStart" "48" "" "Cartridge.MD5" "819aeeb9a2e11deb54e6de334f843894" @@ -10095,7 +7958,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2661" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "22" "" "Cartridge.MD5" "81591a221419024060b890665beb0fb8" @@ -10106,8 +7968,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "205" -"Display.YStart" "54" "" "Cartridge.MD5" "814210c0e121f7dbc25661b93c06311c" @@ -10119,10 +7979,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3201" "Cartridge.Rarity" "Common" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "81414174f1816d5c1e583af427ac89fc" @@ -10130,10 +7986,6 @@ "Cartridge.Manufacturer" "Video Gems / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" "Console.LeftDifficulty" "A" -"Display.Height" "225" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "26" "" "Cartridge.MD5" "8190b403d67bf9792fe22fa5d22f3556" @@ -10141,7 +7993,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2629" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "64" "" "Cartridge.MD5" "81b3bf17cf01039d311b4cd738ae608e" @@ -10149,8 +8000,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "M8793" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" @@ -10159,19 +8008,15 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "7062 A305" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "82337e5fe0f418ca9484ca851dfc226a" "Cartridge.Name" "Robot City (V1.0) (Alpha) (TJ)" -"Display.YStart" "22" "" "Cartridge.MD5" "822a950f27ff0122870558a89a49cad3" "Cartridge.Name" "Space Jockey (1982) (PAL) [p1][!]" -"Display.Height" "256" "" "Cartridge.MD5" "8556b42aa05f94bc29ff39c39b11bff4" @@ -10186,8 +8031,6 @@ "Cartridge.MD5" "85478bb289dfa5c63726b9153992a920" "Cartridge.Name" "Candi (Space Invaders Hack)" "Cartridge.Note" "Hack of Space Invaders (Atari)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "83f50fa0fbae545e4b88bb53b788c341" @@ -10197,7 +8040,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "33" "" "Cartridge.MD5" "8372eec01a08c60dbed063c5524cdfb1" @@ -10205,7 +8047,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-203" "Cartridge.Rarity" "Rare" -"Display.YStart" "49" "" "Cartridge.MD5" "831a0c908b1797093290b688baf5ba76" @@ -10215,16 +8056,12 @@ "Cartridge.MD5" "82bf0dff20cee6a1ed4bb834b00074e6" "Cartridge.Name" "Der hungrige Panda (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "212" -"Display.YStart" "51" "" "Cartridge.MD5" "8290daea8391f96d7c8e1482e184d19c" "Cartridge.Name" "Frame Timed Sound Effects (Eckhard Stolberg)" "Cartridge.Manufacturer" "Eckhard Stolberg" "Cartridge.Rarity" "New Release" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "82efe7984783e23a7c55266a5125c68e" @@ -10235,8 +8072,6 @@ "Cartridge.MD5" "834a2273e97aec3181ee127917b4b269" "Cartridge.Name" "Die Hungrigen Froesche (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "202" -"Display.YStart" "64" "" "Cartridge.MD5" "836b955663d013300eaaa39f2403068f" @@ -10248,10 +8083,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11011" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "83f05ececae8be59ba1e51135f4bdcbf" @@ -10263,14 +8094,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637" "Cartridge.Rarity" "Uncommon" -"Display.Height" "180" -"Display.YStart" "57" "" "Cartridge.MD5" "83d15fb9843d9f84aa3710538403f434" "Cartridge.Name" "Gunfight 2600 - Release Candidate (2001) (MP) (PAL)" -"Display.YStart" "41" -"Display.Height" "195" "" "Cartridge.MD5" "84ea80e31b306059f56fdce2f07b758f" @@ -10285,10 +8112,6 @@ "Cartridge.MD5" "840a5a2eaea24d95d289f514fd12f9bb" "Cartridge.Name" "GBImprov (Ghostbusters Hack)" -"Display.YStart" "43" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "83fafd7bd12e3335166c6314b3bde528" @@ -10303,8 +8126,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3211" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "843435eb360ed72085f7ab9374f9749a" @@ -10320,10 +8141,6 @@ "Cartridge.Name" "Spiderdroid (1987) (Froggo)" "Cartridge.Manufacturer" "Froggo" "Cartridge.Rarity" "Rare" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "40" "" "Cartridge.MD5" "8538c5e3ee83267774480649f83fa8d6" @@ -10335,10 +8152,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-004" "Cartridge.Rarity" "Uncommon" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "851cc1f3c64eaedd10361ea26345acea" @@ -10346,10 +8159,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "850ffd5849c911946b24544ea1e60496" @@ -10364,10 +8173,6 @@ "Cartridge.MD5" "853c11c4d07050c22ef3e0721533e0c5" "Cartridge.Name" "Oink! (1983) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "85b1bca93e69f13905107cc802a02470" @@ -10377,17 +8182,11 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Height" "230" -"Display.YStart" "46" "" "Cartridge.MD5" "85a4133f6dcf4180e36e70ad0fca0921" "Cartridge.Name" "Chopper Command (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "49" "" "Cartridge.MD5" "858abdc9deba2f248e073d01c356e1ab" @@ -10406,8 +8205,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-002" "Cartridge.Rarity" "Uncommon" -"Display.Width" "140" -"Display.XStart" "8" "" "Cartridge.MD5" "8726c17ee7b559cb7bf2330d20972ad0" @@ -10420,8 +8217,6 @@ "Cartridge.MD5" "862cf669cbced78f9ed31a5d375b2ebe" "Cartridge.Name" "Gunfight 2600 - Flicker acceptance (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "86128001e69ab049937f265911ce7e8a" @@ -10438,8 +8233,6 @@ "Cartridge.Manufacturer" "Milton Bradley" "Cartridge.ModelNo" "4362" "Cartridge.Rarity" "Rare" -"Display.Height" "219" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -10454,19 +8247,11 @@ "Cartridge.MD5" "8654d7f0fb351960016e06646f639b02" "Cartridge.Name" "Ski Hunt (HomeVision) (PAL)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "235" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "869abe0426e6e9fcb6d75a3c2d6e05d1" "Cartridge.Name" "Stampede (1981) (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "8712cceec5644aacc2c21203d9ebe2ec" @@ -10481,10 +8266,7 @@ "Cartridge.MD5" "87b460df21b7bbcfc57b1c082c6794b0" "Cartridge.Name" "Climber 5 (20-03-2003) (Dennis Debro)" -"Display.YStart" "32" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" +"Emulation.HmoveBlanks" "NO" "" "Cartridge.MD5" "877a5397f3f205bf6750398c98f33de1" @@ -10500,8 +8282,6 @@ "Cartridge.MD5" "876a953daae0e946620cf05ed41989f4" "Cartridge.Name" "Qb (V2.08) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -10515,8 +8295,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Height" "229" -"Display.YStart" "47" "" "Cartridge.MD5" "87662815bc4f3c3c86071dc994e3f30e" @@ -10530,13 +8308,10 @@ "Cartridge.Manufacturer" "20th Century Fox / Zellers" "Cartridge.ModelNo" "11015" "Cartridge.Rarity" "Rare" -"Display.Height" "198" -"Display.YStart" "35" "" "Cartridge.MD5" "8786f229b974c393222874f73a9f3206" "Cartridge.Name" "Spider Fighter (1983) (Activision) (PAL) [!]" -"Display.YStart" "59" "" "Cartridge.MD5" "88ed87c011f699dd27321dbe404db6c8" @@ -10544,10 +8319,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.YStart" "43" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "883258dcd68cefc6cd4d40b1185116dc" @@ -10556,18 +8327,12 @@ "Cartridge.ModelNo" "AZ-030" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "87e79cd41ce136fd4f72cc6e2c161bee" "Cartridge.Name" "Ms. Pac-Man (1982) (Atari)" "Cartridge.ModelNo" "CX2675" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.YStart" "35" "Emulation.HmoveBlanks" "No" "" @@ -10575,9 +8340,6 @@ "Cartridge.Name" "Polaris (1983) (Tigervision) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Tigervision / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "87f020daa98d0132e98e43db7d8fea7e" @@ -10619,10 +8381,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "180" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "88a6c9c88cb329ee5fa7d168bd6c7c63" @@ -10630,20 +8388,12 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "CX2688" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "88d300a38bdd7cab9edad271c18cd02b" "Cartridge.Name" "Pac Kong (Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Funvision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "215" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "52" "" "Cartridge.MD5" "88d8a1accab58cf1abb043613cf185e9" @@ -10660,7 +8410,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2605 / 99822 / 75109" "Cartridge.Rarity" "Uncommon" -"Display.Height" "224" "" "Cartridge.MD5" "8917f7c1ac5eb05b82331cf01c495af2" @@ -10668,8 +8417,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG202" "Cartridge.Rarity" "Rare" -"Display.Height" "259" -"Display.YStart" "37" "" "Cartridge.MD5" "896ec58f26e930e02f5e4f046602c3a1" @@ -10687,7 +8434,6 @@ "Cartridge.MD5" "89a65b83203980d5d4d60f52a584a5b8" "Cartridge.Name" "Marble Craze (PAL) (02-02-2003) (Paul Slocum)" -"Display.YStart" "53" "" "Cartridge.MD5" "898b5467551d32af48a604802407b6e8" @@ -10695,8 +8441,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG208" "Cartridge.Rarity" "Rare" -"Display.Height" "245" -"Display.YStart" "42" "" "Cartridge.MD5" "8a49cf1785e3dea2012d331a3ad476e1" @@ -10710,18 +8454,12 @@ "Cartridge.MD5" "89afff4a10807093c105740c73e9b544" "Cartridge.Name" "Pooyan (1982) (Konami-Gakken) (PAL) [p1][!]" "Cartridge.Manufacturer" "Konami-Gakken" -"Display.Height" "230" -"Display.YStart" "47" "" "Cartridge.MD5" "8a183b6357987db5170c5cf9f4a113e5" "Cartridge.Name" "RealSports Basketball (Atari) (Prototype) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "8a9d953ac3db52a313a90d6a9b139c76" @@ -10731,9 +8469,6 @@ "Cartridge.MD5" "8a8e401369e2b63a13e18a4d685387c6" "Cartridge.Name" "Laser Blast (1982) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "8a6c84f481acf42abcb78ba5064ad755" @@ -10742,8 +8477,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (swapped)" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "256" -"Display.YStart" "35" "" "Cartridge.MD5" "8a9d874a38608964f33ec0c35cab618d" @@ -10751,7 +8484,6 @@ "Cartridge.Manufacturer" "Chris Cracknell" "Cartridge.Note" "Hack of Jungle Fever (Mystique)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "26" "Display.Phosphor" "Yes" "" @@ -10764,16 +8496,12 @@ "Cartridge.Name" "Donkey Kong (1983) (CBS Electronics) (PAL) [a1][!]" "Cartridge.ModelNo" "2451" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "8ac18076d01a6b63acf6e2cab4968940" "Cartridge.Name" "Gravitar (1988) (Atari) [a1][!]" "Cartridge.ModelNo" "CX2685" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.YStart" "37" "" "Cartridge.MD5" "8ae7809702b7d618e45daa2ddb0ece26" @@ -10785,10 +8513,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5360" "Cartridge.Rarity" "Common" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "53" "" "Cartridge.MD5" "8b504b417c8626167a7e02f44229f0e7" @@ -10801,8 +8525,6 @@ "Cartridge.Name" "Synthcart (2002) (Paul Slocum) (PAL) [!]" "Cartridge.Note" "Uses Keypad Controllers" "Controller.Left" "Keyboard" -"Display.YStart" "55" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -10811,23 +8533,16 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4201" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "60" "" "Cartridge.MD5" "8c103a79b007a2fd5af602334937b4e1" "Cartridge.Name" "Laser Base (AKA World End) (ITT Family Games) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "ITT Family Games / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "238" "" "Cartridge.MD5" "8bebac614571135933116045204f0f00" "Cartridge.Name" "Missile Command (CX-22 Trackball) (PAL) (2002) (TJ)" -"Display.YStart" "40" -"Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -10844,10 +8559,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "8bc0d2052b4f259e7a50a7c771b45241" @@ -10863,23 +8574,16 @@ "Cartridge.MD5" "8c2fa33048f055f38358d51eefe417db" "Cartridge.Name" "Teddy Apple (HomeVision) (PAL) [!]" "Cartridge.Manufacturer" "HomeVision" -"Display.Height" "239" -"Display.YStart" "51" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "8c36ed2352801031516695d1eeefe617" "Cartridge.Name" "Winter Games (1987) (Epyx) (PAL) [!]" "Cartridge.Manufacturer" "Epyx" -"Display.YStart" "56" "" "Cartridge.MD5" "94e3fbc19107a169909e274187247a9d" "Cartridge.Name" "2-in-1 - Freeway and Tennis [p1]" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "8d00a38f4c8f8800f1c237215ac243fc" @@ -10891,8 +8595,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2649 / 4975163" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.YStart" "44" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -10902,10 +8604,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26139" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "8ccaa442d26b09139685f5b22bf189c4" @@ -10927,8 +8625,6 @@ "Cartridge.Name" "Asteroids SS (Asteroids Hack)" "Cartridge.Manufacturer" "Atari / Scott Stilphen" "Cartridge.Note" "Hack of Asteroids (Atari)" -"Display.Height" "192" -"Display.YStart" "37" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -10954,10 +8650,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Lightgun" "Controller.Right" "None" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "8f53a3b925f0fd961d9b8c4d46ee6755" @@ -10965,9 +8657,6 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SM8002" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "8e879aa58db41edb67cbf318b77766c4" @@ -10975,16 +8664,11 @@ "Cartridge.Name" "Cosmic Commuter (PAL60 by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" "Display.Format" "PAL60" -"Display.XStart" "8" -"Display.Width" "152" -"Display.YStart" "37" -"Display.Height" "192" "" "Cartridge.MD5" "8e737a88a566cc94bd50174c2d019593" "Cartridge.Name" "Feuerwehr im Einsatz (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "58" "" "Cartridge.MD5" "8e0ab801b1705a740b476b7f588c6d16" @@ -10992,22 +8676,16 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "8e4cd60d93fcde8065c1a2b972a26377" "Cartridge.Name" "Laser Gates (1983) (Imagic) (PAL) [!]" "Cartridge.Manufacturer" "Imagic" "Cartridge.Rarity" "Rare" -"Display.Height" "233" "" "Cartridge.MD5" "8e42674972d6805068fc653e014370fd" "Cartridge.Name" "Skeleton (PAL) (15-10-2002) (Eric Ball)" -"Display.Height" "256" "" "Cartridge.MD5" "8e4fa8c6ad8d8dce0db8c991c166cdaa" @@ -11015,7 +8693,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26114" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "8e822b39a71c84ac875f0107fb61d6f0" @@ -11028,21 +8705,17 @@ "Cartridge.MD5" "8e887d1ba5f3a71ae8a0ea16a4af9fc9" "Cartridge.Name" "Skeleton (V1.1) (PAL) (24-10-2002) (Eric Ball)" -"Display.Height" "256" "" "Cartridge.MD5" "8ed73106e2f42f91447fb90b6f0ea4a4" "Cartridge.Name" "Tape Worm (1982) (Spectravideo) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo" -"Display.Height" "215" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "8f33bce5ba1053dcf4cea9c1c69981e4" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [p2][!]" "Cartridge.Manufacturer" "Tigervision" -"Display.YStart" "50" "" "Cartridge.MD5" "93420cc4cb1af1f2175c63e52ec18332" @@ -11050,17 +8723,11 @@ "Cartridge.Manufacturer" "Tim Snider" "Cartridge.Note" "Hack of Haunted House (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "9295570a141cdec18074c55dc7229d08" "Cartridge.Name" "Bump 'N' Jump (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "188" -"Display.YStart" "41" "" "Cartridge.MD5" "91c2098e88a6b13f977af8c003e0bca5" @@ -11068,17 +8735,13 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2676" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "9072c142728a3a3d994956d03bfacba2" -"Cartridge.Name" "Crash Dive (PAL Conversion) (Fabrizio Zavagli)" "Cartridge.Manufacturer" "Fabrizio Zavagli / 20th Century Fox" +"Cartridge.Name" "Crash Dive (PAL Conversion) (Fabrizio Zavagli)" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.YStart" "27" +"Display.YStart" "30" "" "Cartridge.MD5" "8f88309afad108936ca70f8b2b084718" @@ -11086,7 +8749,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-203" "Cartridge.Rarity" "Rare" -"Display.YStart" "48" "" "Cartridge.MD5" "8f60551db6d1535ef0030f155018c738" @@ -11094,8 +8756,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "62" "" "Cartridge.MD5" "8f613ea7c32a587d6741790e32872ddd" @@ -11107,17 +8767,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2674" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.YStart" "64" "" "Cartridge.MD5" "8fe00172e7fff4c1878dabcf11bb8dce" "Cartridge.Name" "Hili Ball (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "Display.Phosphor" "Yes" "" @@ -11138,15 +8792,12 @@ "Cartridge.MD5" "8fffc8f15bb2e6d24e211884a5479aa5" "Cartridge.Name" "Qb (V1.00) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "60" -"Display.Height" "250" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "90578a63441de4520be5324e8f015352" "Cartridge.Name" "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (PAL) [p1][!]" "Cartridge.Manufacturer" "Bitcorp" -"Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -11155,10 +8806,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-011" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "90ccf4f30a5ad8c801090b388ddd5613" @@ -11166,10 +8813,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "90b1799dddb8bf748ee286d22e609480" @@ -11181,49 +8824,34 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3400" "Cartridge.Rarity" "Rare" -"Display.Height" "213" -"Display.YStart" "64" "" "Cartridge.MD5" "914a8feaf6d0a1bbed9eb61d33817679" "Cartridge.Name" "Freeway (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "910dd9bf98cc5bc080943e5128b15bf5" "Cartridge.Name" "Gunfight 2600 - Improved AI (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "911d385ee0805ff5b8f96c5a63da7de5" -"Cartridge.Name" "Jammed (V0.1) (Demo) (2001) (TJ)" "Cartridge.Manufacturer" "Hozer Video Games" +"Cartridge.Name" "Jammed (V0.1) (Demo) (2001) (TJ)" "Cartridge.Rarity" "New Release" -"Display.YStart" "22" +"Display.YStart" "24" "" "Cartridge.MD5" "913d5d959b5021f879033c89797bab5e" "Cartridge.Name" "Robot Player Graphic (1996) (J.V. Matthews) (PD)" -"Display.YStart" "53" "" "Cartridge.MD5" "91a3749ff7b7e72b7fa09e05396a0e7b" "Cartridge.Name" "Gunfight 2600 - Final Run Part 2 (2002) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "9193b6fff6897d43274741d4f9855b6d" "Cartridge.Name" "Sub Rescue (Real Title Unknown)" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "9222b25a0875022b412e8da37e7f6887" @@ -11231,8 +8859,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "106" "Cartridge.Rarity" "Rare" -"Display.YStart" "25" -"Display.Height" "220" "Display.Phosphor" "Yes" "" @@ -11243,8 +8869,6 @@ "Cartridge.MD5" "91f0a708eeb93c133e9672ad2c8e0429" "Cartridge.Name" "Oystron (V2.9) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "91d1c82ceaf8af2add3973a3c34bc0cb" @@ -11255,8 +8879,6 @@ "Cartridge.Name" "Qb (2.15) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" "Cartridge.Rarity" "New Release" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -11265,18 +8887,12 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "60" "" "Cartridge.MD5" "929e8a84ed50601d9af8c49b0425c7ea" "Cartridge.Name" "Dancing Plates (1983) (BitCorp) (PAL)" "Cartridge.ModelNo" "PG205" "Cartridge.Rarity" "Rare" -"Display.Height" "230" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" @@ -11285,9 +8901,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-008" "Cartridge.Rarity" "Common" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "92a1a605b7ad56d863a56373a866761b" @@ -11295,15 +8908,11 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 2006" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "92d1f6ac179ebe5963868d6bc1bdda8d" "Cartridge.Name" "Smash Hit Pak - Frogr,Stampede,Seaqst,Boxng,Ski (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "230" -"Display.YStart" "45" "" "Cartridge.MD5" "92c5abb7a8bb1c3fc66c92ba353a3d21" @@ -11319,14 +8928,12 @@ "Cartridge.Manufacturer" "Gakken" "Cartridge.ModelNo" "010" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "939ce554f5c0e74cc6e4e62810ec2111" "Cartridge.Name" "Dishaster (AKA Mr. Chin) (Zimag) (PAL-M) [!]" "Cartridge.Manufacturer" "Zimag" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -11335,10 +8942,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26108" "Cartridge.Rarity" "Prototype" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "93511052bbc9423337905d4d17ecef96" @@ -11350,26 +8953,16 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2638 / 4975166" "Cartridge.Rarity" "Common" -"Display.Height" "256" -"Display.YStart" "43" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "936f555b4b1a2cd061b659ff63f4f5f2" "Cartridge.Name" "My Golf (1990) (HES) (PAL) [a1][!]" -"Display.YStart" "62" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "936ef1d6f8a57b9ff575dc195ee36b80" "Cartridge.Name" "Pac Kong (Starsoft) (NTSC Conversion)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "214" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "26" "" "Cartridge.MD5" "93acd5020ae8eb5673601e2edecbc158" @@ -11381,8 +8974,6 @@ "Cartridge.MD5" "93c9f9239a4e5c956663dd7affa70da2" "Cartridge.Name" "Billard (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "186" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" @@ -11391,8 +8982,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3213" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.YStart" "29" "" "Cartridge.MD5" "93eb1795c8b1065b1b3d62bb9ec0ccdc" @@ -11403,10 +8992,6 @@ "Cartridge.MD5" "93dc15d15e77a7b23162467f95a5f22d" "Cartridge.Name" "Sky Jinks (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "195" -"Display.YStart" "38" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "94b92a882f6dbaa6993a46e2dcc58402" @@ -11414,10 +8999,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "94102febc53b4a78342d11b645342ed4" @@ -11427,8 +9008,6 @@ "Cartridge.MD5" "9469d18238345d87768e8965f9f4a6b2" "Cartridge.Name" "Ms. Pac-Man (1982) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "195" -"Display.YStart" "35" "Emulation.HmoveBlanks" "No" "" @@ -11448,17 +9027,11 @@ "Cartridge.MD5" "98e5e4d5c4dd9a986d30fd62bd2f75ae" "Cartridge.Name" "Air-Sea Battle (1977) (Atari) [o1][h1]" -"Display.Height" "200" -"Display.YStart" "39" "" "Cartridge.MD5" "956496f81775de0b69a116a0d1ad41cc" "Cartridge.Name" "Alien (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "188" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "39" "Display.Phosphor" "Yes" "" @@ -11475,10 +9048,6 @@ "Cartridge.MD5" "95351b46fa9c45471d852d28b9b4e00b" "Cartridge.Name" "Golf (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "955c408265ad6994f61f9b66657bbae9" @@ -11490,30 +9059,18 @@ "Cartridge.Manufacturer" "TNT Games" "Cartridge.ModelNo" "CX26190" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "956b99511c0f47b3a11d18e8b7ac8d47" "Cartridge.Name" "Bones (Arcade Golf Hack)" -"Display.YStart" "41" -"Display.Height" "218" "" "Cartridge.MD5" "96670d0bf3610da2afcabd8e21d8eabf" "Cartridge.Name" "Boring Pitfall (Pitfall Hack)" -"Display.YStart" "40" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "962ffd3eaf865230a7a312b80e6c5cfd" "Cartridge.Name" "Fathom (1983) (Imagic) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -11524,7 +9081,6 @@ "Cartridge.MD5" "95e542a7467c94b1e4ab24a3ebe907f1" "Cartridge.Name" "Im Schutz der Drachen (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "242" "Display.Phosphor" "Yes" "" @@ -11540,7 +9096,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26114" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "240" "" "Cartridge.MD5" "95c4576d6a14e2debfa0fd6f6ec254ab" @@ -11548,10 +9103,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-020" "Cartridge.Rarity" "Uncommon" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "95fd6097dc27c20666f039cfe34f7c69" @@ -11563,10 +9114,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-007" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "9671b658286e276cc4a3d02aa25931d2" @@ -11575,14 +9122,10 @@ "Cartridge.MD5" "966b11d3c147d894dd9e4ebb971ea309" "Cartridge.Name" "Marble Craze Song (Paul Slocum) (PD)" -"Display.YStart" "37" -"Display.Height" "191" "" "Cartridge.MD5" "9848b5ef7a0c02fe808b920a2ac566d2" "Cartridge.Name" "Baseball (2002) (Skyworks) [!]" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "969b968383d9f0e9d8ffd1056bcaef49" @@ -11590,8 +9133,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2628 / 6699842 / 4975117" "Cartridge.Rarity" "Common" -"Display.Height" "230" -"Display.YStart" "37" "" "Cartridge.MD5" "977294ae6526c31c7f9a166ee00964ad" @@ -11599,22 +9140,15 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2677" "Cartridge.Rarity" "Uncommon" -"Display.Height" "215" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "97327d6962f8c64e6f926f79cd01c6b9" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Tigervision" -"Display.YStart" "47" "" "Cartridge.MD5" "96eccc2277043508a6c481ea432d7dd9" "Cartridge.Name" "Missile Command (CX-80 Trackball) (PAL) (2002) (TJ)" -"Display.YStart" "40" -"Display.Height" "256" "Display.Phosphor" "Yes" "" @@ -11633,10 +9167,6 @@ "Cartridge.MD5" "97933c9f20873446e4c1f8a4da21575f" "Cartridge.Name" "Hili Ball (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "60" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -11647,10 +9177,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "9813b9e4b8a6fd919c86a40c6bda8c93" @@ -11658,10 +9184,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26177" "Cartridge.Rarity" "Rare" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "97d0151beb84acbe82aa6db18cd91b98" @@ -11672,7 +9194,6 @@ "Cartridge.Name" "Robot City (V0.21) (15-09-2002) (TJ)" "Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Rarity" "New Release" -"Display.YStart" "22" "" "Cartridge.MD5" "97d079315c09796ff6d95a06e4b70171" @@ -11680,16 +9201,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-032" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "98555b95cb38e0e0b22b482b2b60a5b6" "Cartridge.Name" "Fire Spinner (Emag) (PAL) [p1][!]" -"Display.Height" "213" -"Display.YStart" "58" "Display.Phosphor" "Yes" "" @@ -11697,8 +9212,6 @@ "Cartridge.Name" "Gunfight 2600 - Cowboy Hair (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "98ba601a60172cb46c5bf9a962fd5b1f" @@ -11718,8 +9231,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3203" "Cartridge.Rarity" "Uncommon" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "9ad362179c2eea4ea115c7640b4b003e" @@ -11727,10 +9238,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-013" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "9a25b3cfe2bbb847b66a97282200cca2" @@ -11746,15 +9253,11 @@ "Cartridge.Name" "Challenge (Funvision) (PAL) [a1]" "Cartridge.Manufacturer" "Funvision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "240" -"Display.YStart" "35" "" "Cartridge.MD5" "98ef1593624b409b9fb83a1c272a0aa7" "Cartridge.Name" "Cosmic Ark (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "192" -"Display.YStart" "42" "" "Cartridge.MD5" "98e7caaab8ec237558378d2776c66616" @@ -11774,12 +9277,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26168" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "98fa3ad778a668a79449350de4b3b95b" "Cartridge.Name" "Thrust (V1.1) (2000) (TJ)" -"Display.Height" "201" "" "Cartridge.MD5" "9989f974c3cf9c641db6c8a70a2a2267" @@ -11796,8 +9297,6 @@ "Cartridge.MD5" "991d57bbcd529ad62925098e0aec1241" "Cartridge.Name" "Gunfight 2600 - The Final Kernel (MP) [a1]" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "9912d06eea42200a198dd3e2be18c601" @@ -11805,16 +9304,10 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3312" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "44" "" "Cartridge.MD5" "9945a22f60bbaf6d04a8d73b3cf3db75" "Cartridge.Name" "Kung Fu Master (1984) (Activision) (PAL) [a1][!]" -"Display.YStart" "59" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "9947f1ebabb56fd075a96c6d37351efa" @@ -11838,10 +9331,6 @@ "Cartridge.MD5" "9a21fba9ee9794e0fadd7c7eb6be4e12" "Cartridge.Name" "Ikari Warriors (1990) (Atari) [!]" -"Display.YStart" "40" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "9ab72d3fd2cc1a0c9adb504502579037" @@ -11849,10 +9338,6 @@ "Cartridge.Manufacturer" "Epyx" "Cartridge.ModelNo" "8056100286" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "9a4274409216ff09ecde799f2a56ac73" @@ -11874,14 +9359,10 @@ "Cartridge.MD5" "ab434f4c942d6472e75d5490cc4dd128" "Cartridge.Name" "2 Pak Special Light Green - Hoppy,Alien Force (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "222" -"Display.YStart" "49" "" "Cartridge.MD5" "a94b8ca630f467b574b614808d813919" "Cartridge.Name" "2 Pak Special Orange - Space Voyage,Fire Alert (1992) (HES) (PAL) [!]" -"Display.YStart" "48" -"Display.Height" "230" "" "Cartridge.MD5" "9c40bf810f761ffc9c1b69c4647a8b84" @@ -11894,14 +9375,12 @@ "Cartridge.MD5" "9b246683f44c963a50e41d6b485bee77" "Cartridge.Name" "Boring (PAL) (AD)" -"Display.YStart" "35" "" "Cartridge.MD5" "9b21d8fc78cc4308990d99a4d906ec52" "Cartridge.Name" "Immies & Aggies (CCE)" "Cartridge.ModelNo" "C-838" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "15" "" "Cartridge.MD5" "9bd4e0d5f28ba6da417c26649171f8e4" @@ -11910,10 +9389,6 @@ "Cartridge.MD5" "9bb136b62521c67ac893213e01dd338f" "Cartridge.Name" "Spike's Peak (1983) (Xonox) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "235" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "9c27ef3bd01c611cdb80182a59463a82" @@ -11921,16 +9396,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4103" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "a5b7f420ca6cc1384da0fed523920d8e" "Cartridge.Name" "Adventure (New Graphics) [h1]" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "9e01f7f95cb8596765e03b9a36e8e33c" @@ -11941,30 +9410,22 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "195" "" "Cartridge.MD5" "9d4bc7c6fe9a7c8c4aa24a237c340adb" "Cartridge.Name" "Climber 5 (For Philly Classic 4) (16-04-2003) (Dennis Debro)" -"Display.YStart" "32" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" +"Emulation.HmoveBlanks" "NO" "" "Cartridge.MD5" "9cbb07f1993a027bc2f87d5205457ec9" "Cartridge.Name" "Eckhard Stolberg's Scrolling Text Demo 1 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "191" -"Display.YStart" "38" "" "Cartridge.MD5" "9c729017dd2f9ccbadcb511187f80e6b" "Cartridge.Name" "J-Pac (Pac-Man Hack)" "Cartridge.Note" "Hack of Pac-Man (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "202" -"Display.YStart" "36" "" "Cartridge.MD5" "9c6fd6ed3599978ab7b6f900484b9be6" @@ -11975,6 +9436,7 @@ "Cartridge.MD5" "9c6d65bd3b477aace0376f705b354d68" "Cartridge.Name" "RPG Kernal (18-04-2003) (Paul Slocum) (PD)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "9c6faa4ff7f2ae549bbcb14f582b70e4" @@ -11982,21 +9444,15 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "VC 1002" "Cartridge.Rarity" "Rare" -"Display.Height" "229" -"Display.YStart" "27" "" "Cartridge.MD5" "9c7fa3cfcaaafb4e6daf1e2517d43d88" "Cartridge.Name" "PIEROXM Demo (PD)" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "9ca2deb61318eba4fb784d4bf7441d8b" "Cartridge.Name" "Purple Bar Demo 2 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "9d2f05d0fe8b2dfcf770b02eda066fc1" @@ -12005,7 +9461,6 @@ "Cartridge.MD5" "9d0befa555f003069a21d2f6847ad962" "Cartridge.Name" "Vanguard (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" "" "Cartridge.MD5" "9d2938eb2b17bb73e9a79bbc06053506" @@ -12013,8 +9468,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "EIZ-002-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "200" -"Display.YStart" "52" "" "Cartridge.MD5" "9d37a1be4a6e898026414b8fee2fc826" @@ -12022,10 +9475,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5658" "Cartridge.Rarity" "Common" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "9dec0be14d899e1aac4337acef5ab94a" @@ -12033,7 +9482,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-003" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -12042,8 +9490,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11003" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.YStart" "38" "" "Cartridge.MD5" "9d522a3759aa855668e75962c84546f7" @@ -12051,15 +9497,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2634" "Cartridge.Rarity" "Common" -"Display.Height" "227" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "" "Cartridge.MD5" "a4aa7630e4c0ad7ebb9837d2d81de801" "Cartridge.Name" "Atari 2600 Invaders (Space Invaders Hack)" -"Display.YStart" "39" "" "Cartridge.MD5" "a29fc854838e08c247553a7d883dd65b" @@ -12067,10 +9508,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-013" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "9f48eeb47836cf145a15771775f0767a" @@ -12081,10 +9518,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "221" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" @@ -12096,7 +9529,6 @@ "Cartridge.Name" "Cathouse Blues (1982) (Mystique)" "Cartridge.Manufacturer" "Mystique" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" @@ -12106,8 +9538,6 @@ "Cartridge.MD5" "9e5007131695621d06902ab3c960622a" "Cartridge.Name" "Tac Scan (1983) (Sega) [h1]" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -12116,15 +9546,11 @@ "Cartridge.Manufacturer" "Activision / Charles Morgan" "Cartridge.Note" "Hack of Freeway (Activision)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "9ed0f2aa226c34d4f55f661442e8f22a" "Cartridge.Name" "Fox & Goat (Starsoft) (PAL) [p1][!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "9eca521db1959156a115dee85a405194" @@ -12146,9 +9572,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-008" "Cartridge.Rarity" "Common" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "9f2d58dce1b81c6ba201ed103507c025" @@ -12159,15 +9582,10 @@ "Cartridge.Name" "Planet of the Apes (20th Century Fox) (Prototype) [!]" "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.Rarity" "Prototype" -"Display.Height" "173" -"Display.YStart" "45" "" "Cartridge.MD5" "9eeb40f04a27efb1c68ba1d25e606607" "Cartridge.Name" "Rambo II - Streets of Afghanistan (2003) (Kyle Pittman) (Double Dragon Hack)" -"Display.YStart" "59" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "9efa877a98dd5a075e058214da428abb" @@ -12184,8 +9602,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2628 / 6699842 / 4975117" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.YStart" "37" "" "Cartridge.MD5" "a0297c4788f9e91d43e522f4c561b4ad" @@ -12196,25 +9612,18 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "228" -"Display.YStart" "45" "" "Cartridge.MD5" "a00ee0aed5c8979add4c170f5322c706" "Cartridge.Name" "Egghead by Barry Laws Jr. (Pac-Man Hack)" "Cartridge.Manufacturer" "Barry Laws Jr." "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "208" -"Display.YStart" "33" "" "Cartridge.MD5" "9f901509f0474bf9760e6ebd80e629cd" "Cartridge.Name" "Home Run (1978) [o1]" "Cartridge.ModelNo" "CX2623 / 99819 / 75125" "Cartridge.Rarity" "Common" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "9f59eddf9ba91a7d93bce7ee4b7693bc" @@ -12222,8 +9631,6 @@ "Cartridge.Name" "Montezuma's Revenge - Starring Panama Joe (PAL60 by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" "Display.Format" "PAL60" -"Display.YStart" "38" -"Display.Height" "192" "" "Cartridge.MD5" "9f8fad4badcd7be61bbd2bcaeef3c58f" @@ -12238,10 +9645,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2688" "Cartridge.Rarity" "Uncommon" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "9f93734c68f6479eb022cab40814142e" @@ -12257,8 +9660,6 @@ "Cartridge.MD5" "a00ec89d22fcc0c1a85bb542ddcb1178" "Cartridge.Name" "Phoenix (1982) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "188" -"Display.YStart" "38" "" "Cartridge.MD5" "a0028f057d496f22b549fd8deecc6f78" @@ -12273,8 +9674,6 @@ "Cartridge.Name" "Gunfight 2600 - Descissions had to be made (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "a0185c06297b2818f786d11a3f9e42c3" @@ -12282,10 +9681,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.YStart" "61" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "a184846d8904396830951217b47d13d9" @@ -12293,10 +9688,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "a0d502dc8b90b1d7daa5f6effb10d349" @@ -12308,10 +9699,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -12320,8 +9707,6 @@ "Cartridge.Manufacturer" "Sunrise" "Cartridge.ModelNo" "6057 A227" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "a0563dd6d8215c38c488fbbd61435626" @@ -12332,8 +9717,6 @@ "Cartridge.Name" "Gunfight 2600 - The Good, The Bad, The Ugly (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "230" "" "Cartridge.MD5" "a100eff2d7ae61ca2b8e65baf7e2aae8" @@ -12341,13 +9724,10 @@ "Cartridge.Manufacturer" "David Marli" "Cartridge.Note" "Hack of Pac-Man (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "33" "" "Cartridge.MD5" "a0e2d310e3e98646268200c8f0f08f46" "Cartridge.Name" "Othello (1978) (Atari-Picture Label) (PAL) [a1][!]" -"Display.YStart" "55" -"Display.Height" "230" "" "Cartridge.MD5" "a11099b6ec24e4b00b8795744fb12005" @@ -12355,9 +9735,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-049" "Cartridge.Rarity" "Rare" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "53" "" "Cartridge.MD5" "a14d8a388083c60283e00592b18d4c6c" @@ -12372,8 +9749,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "198" -"Display.YStart" "36" "" "Cartridge.MD5" "a19215975aeca1d98328173a124c47f7" @@ -12384,14 +9759,11 @@ "Cartridge.Name" "Obelix (1983) (Atari) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Atari / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "194" -"Display.YStart" "44" "" "Cartridge.MD5" "a1ca372388b6465a693e4626cc98b865" "Cartridge.Name" "Der Vielfrass (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "64" "" "Cartridge.MD5" "a1ccf58ca588bd3e0fb35a1e2a41b423" @@ -12406,8 +9778,6 @@ "Cartridge.Name" "Motocross (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Height" "249" -"Display.YStart" "45" "" "Cartridge.MD5" "a1f9159121142d42e63e6fb807d337aa" @@ -12415,8 +9785,6 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "11003" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.YStart" "58" "" "Cartridge.MD5" "a1ead9c181d67859aa93c44e40f1709c" @@ -12430,8 +9798,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2511" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "199" -"Display.YStart" "35" "" "Cartridge.MD5" "a20d931a8fddcd6f6116ed21ff5c4832" @@ -12439,10 +9805,6 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2003" "Cartridge.Rarity" "Uncommon" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "Display.Phosphor" "Yes" "" @@ -12457,7 +9819,6 @@ "Cartridge.MD5" "a2424c1a0c783d7585d701b1c71b5fdc" "Cartridge.Name" "Video Pinball (1980) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "55" "" "Cartridge.MD5" "a29df35557f31dfea2e2ae4609c6ebb7" @@ -12465,23 +9826,17 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2630 / 4975122" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.YStart" "40" "" "Cartridge.MD5" "a2aae759e4e76f85c8afec3b86529317" "Cartridge.Name" "Boom Bang (AKA Crackpots) (Cooper Black) (PAL)" "Cartridge.Manufacturer" "Cooper Black" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "a2de0fc85548871279ed2a3c1325c13e" -"Cartridge.Name" "Cat and Mouse by George Veeder (Pac-Man Hack)" "Cartridge.Manufacturer" "George Veeder" +"Cartridge.Name" "Cat and Mouse by George Veeder (Pac-Man Hack)" "Cartridge.Note" "Hack of Pac-Man (Atari)" "Cartridge.Rarity" "New Release (Hack)" "Display.YStart" "33" @@ -12495,7 +9850,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "57" "" "Cartridge.MD5" "a422194290c64ef9d444da9d6a207807" @@ -12503,10 +9857,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5667" "Cartridge.Rarity" "Uncommon" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "a310494ad5ba2b5b221a30d7180a0336" @@ -12518,15 +9868,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "a2eb84cfeed55acd7fece7fefdc83fbb" "Cartridge.Name" "Kool Aid Man (Fixed) (15-11-2002) (CT)" -"Display.Height" "199" "" "Cartridge.MD5" "a2f296ea2d6d4b59979bac5dfbf4edf0" @@ -12534,10 +9879,9 @@ "" "Cartridge.MD5" "a3f2a0fcf74bbc5fa763b0ee979b05b1" -"Cartridge.Name" "Eishockey-Fieber (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "250" -"Display.YStart" "53" +"Cartridge.Name" "Eishockey-Fieber (Starsoft) (PAL) [!]" +"Display.YStart" "52" "" "Cartridge.MD5" "a3d7c299fbcd7b637898ee0fdcfc47fc" @@ -12547,17 +9891,10 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "52" "" "Cartridge.MD5" "a3b9d2be822eab07e7f4b10593fb5eaa" "Cartridge.Name" "GREGXM Demo (PD)" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "a35d47898b2b16ec641d1dfa8a45c2b7" @@ -12565,10 +9902,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-017" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "a3c1c70024d7aabb41381adbfb6d3b25" @@ -12576,13 +9909,11 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1005" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "44" "" "Cartridge.MD5" "a406d2f6d84e61d842f4cb13b2b1cfa7" "Cartridge.Name" "Jawbreaker (1982) (Tigervision) (PAL) [!]" "Cartridge.Manufacturer" "Tigervision" -"Display.YStart" "50" "" "Cartridge.MD5" "a412c8577b2d57b09185ae51739ac54f" @@ -12590,8 +9921,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4000" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -12601,8 +9930,6 @@ "Cartridge.MD5" "a443d8557d712845c8cd3699363a42e6" "Cartridge.Name" "Star Fire (07-01-2003) (MP)" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "a499d720e7ee35c62424de882a3351b6" @@ -12610,15 +9937,10 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "009-01" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "a537879d8e82e1061d3ad800479d3b84" "Cartridge.Name" "Brooni (PAL) (2001) (Andrew Wallace) (PD)" -"Display.YStart" "46" "" "Cartridge.MD5" "a4ab331e8768eafdc20ce8b0411ff77a" @@ -12627,14 +9949,10 @@ "Cartridge.MD5" "a511f7ee13e4b35512f9217a677b4028" "Cartridge.Name" "E.T. The Extra-Terrestrial (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "189" "" "Cartridge.MD5" "a4f1cea2c8479284e2a2292f8d51b5fa" "Cartridge.Name" "Gunfight 2600 - The Final Kernel Part 2 (MP)" -"Display.YStart" "35" -"Display.Height" "194" "" "Cartridge.MD5" "a4c08c4994eb9d24fb78be1793e82e26" @@ -12649,8 +9967,6 @@ "Cartridge.Manufacturer" "Jim Goebel" "Cartridge.Note" "Hack of Outlaw (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "225" -"Display.YStart" "33" "" "Cartridge.MD5" "a4e885726af9d97b12bb5a36792eab63" @@ -12658,9 +9974,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99001" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "a4d026a5c200ef98518ebb77719fe8dc" @@ -12669,8 +9982,6 @@ "Cartridge.MD5" "a5262fe6d01d6a1253692682a47f79dd" "Cartridge.Name" "JKH Text Scrolling Demo (PD)" -"Display.Height" "194" -"Display.YStart" "36" "" "Cartridge.MD5" "a591b5e8587aae0d984a0f6fe2cc7d1c" @@ -12680,8 +9991,6 @@ "Cartridge.MD5" "a56b642a3d3ab9bbeee63cd44eb73216" "Cartridge.Name" "Gopher (1982) (Carrere Video) (PAL) [!]" "Cartridge.Manufacturer" "Carrere Video" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "a7b584937911d60c120677fe0d47f36f" @@ -12689,8 +9998,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5661" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.YStart" "36" "" "Cartridge.MD5" "a6127f470306eed359d85eb4a9cf3c96" @@ -12698,10 +10005,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26110" "Cartridge.Rarity" "Uncommon" -"Display.Height" "174" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "a5e9ed3033fb2836e80aa7a420376788" @@ -12709,8 +10012,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637" "Cartridge.Rarity" "Uncommon" -"Display.Height" "208" -"Display.YStart" "64" "" "Cartridge.MD5" "a5c96b046d5f8b7c96daaa12f925bef8" @@ -12718,17 +10019,11 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-007" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "a60598ad7ee9c5ccad42d5b0df1570a1" "Cartridge.Name" "Surround (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "237" -"Display.YStart" "36" "" "Cartridge.MD5" "a74689a08746a667a299b0507e1e6dd9" @@ -12736,9 +10031,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "53" "" "Cartridge.MD5" "a68a396ff1f3b311712f6bdf05dcefab" @@ -12764,15 +10056,12 @@ "Cartridge.MD5" "a69f5b1761a8a11c98e706ec7204937f" "Cartridge.Name" "Pharaoh's Curse (TechnoVision) (PAL) [p1][!]" "Cartridge.Manufacturer" "TechnoVision" -"Display.YStart" "47" -"Display.Height" "230" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "a7523db9a33e9417637be0e71fa4377c" "Cartridge.Name" "Gangster (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.YStart" "64" "" "Cartridge.MD5" "a7673809068062106db8e9d10b56a5b3" @@ -12780,10 +10069,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26118" "Cartridge.Rarity" "Rare" -"Display.Height" "198" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "a779b9fa02c62d00d7c31ed51268f18a" @@ -12791,17 +10076,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4104" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "a7cf2b9afdbb3a161bf418dbcf0321dc" "Cartridge.Name" "Attack Of The Mutant Space Urchins (2002) (Barry Laws Jr.) (Alien Hack)" -"Display.YStart" "38" -"Display.Height" "190" -"Display.Width" "136" -"Display.XStart" "12" "Display.Phosphor" "Yes" "" @@ -12812,8 +10090,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "190" -"Display.YStart" "42" "" "Cartridge.MD5" "a81b29177f258494b499fbac69789cef" @@ -12826,8 +10102,6 @@ "Cartridge.MD5" "a81697b0c8bbc338ae4d0046ede0646b" "Cartridge.Name" "Gravitar (1988) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "192" -"Display.YStart" "37" "" "Cartridge.MD5" "a8101cb667e50a46165c6fb48c608b6b" @@ -12840,7 +10114,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2606" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "63" "" "Cartridge.MD5" "a7ef44ccb5b9000caf02df3e6da71a92" @@ -12848,8 +10121,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "36" "" "Cartridge.MD5" "a867b76098786c4091dba2fcee5084c3" @@ -12864,8 +10135,6 @@ "Cartridge.Name" "Pompeii (Apollo) (Prototype)" "Cartridge.Manufacturer" "Apollo" "Cartridge.Rarity" "Prototype" -"Display.Height" "219" -"Display.YStart" "37" "" "Cartridge.MD5" "a899a3e3fec8d466f45c2c3beb2961fd" @@ -12879,8 +10148,6 @@ "Cartridge.MD5" "a875f0a919129b4f1b5103ddd200d2fe" "Cartridge.Name" "SwordQuest - Earthworld (1982) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "250" -"Display.YStart" "35" "" "Cartridge.MD5" "a93e8ea1f565c3c1e86b708cf0dc2fa9" @@ -12890,16 +10157,10 @@ "Cartridge.Rarity" "New Release (Hack)" "Controller.Left" "Paddles" "Controller.Right" "None" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "a8d4a9500b18b0a067a1f272f869e094" "Cartridge.Name" "Red And White Checkerboard Demo (PD)" -"Display.Height" "192" -"Display.YStart" "37" "" "Cartridge.MD5" "a8d0a4a77cd71ac601bd71df5a060e4c" @@ -12911,31 +10172,20 @@ "Cartridge.Manufacturer" "Philip R. Frey" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "a94528ae05dd051894e945d4d2349b3b" "Cartridge.Name" "River Raid (Brazil)" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "a9cb638cd2cb2e8e0643d7a67db4281c" "Cartridge.Name" "Air Raiders (1982) (Mattel) [!]" "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5861" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "a957dbe7d85ea89133346ad56fbda03f" "Cartridge.Name" "Asteroids (1979) (Atari) (PAL) [a1][!]" -"Display.YStart" "44" -"Display.Height" "220" "Display.Phosphor" "Yes" "" @@ -12944,15 +10194,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2631 / 6699845 / 4975152" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "a97733b0852ee3096300102cb0689175" "Cartridge.Name" "Fast Eddie (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "198" -"Display.YStart" "38" "" "Cartridge.MD5" "a9784c24cddb33bd0d14442b97784f3d" @@ -12964,15 +10210,11 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3600" "Cartridge.Rarity" "Uncommon" -"Display.Height" "186" -"Display.YStart" "39" "" "Cartridge.MD5" "a98b649912b6ca19eaf5c2d2faf38562" "Cartridge.Name" "This Planet Sucks (Greg Troutman) (PAL) [!]" "Cartridge.Rarity" "New Release" -"Display.Height" "207" -"Display.YStart" "40" "" "Cartridge.MD5" "aa8e4b2cb8a78ffe6b20580033f4dec9" @@ -12982,7 +10224,6 @@ "Cartridge.MD5" "aa1c41f86ec44c0a44eb64c332ce08af" "Cartridge.Name" "Bumper Bash (1983) (Spectravideo)" "Cartridge.Manufacturer" "Spectravideo" -"Display.YStart" "21" "" "Cartridge.MD5" "aa7bb54d2c189a31bb1fa20099e42859" @@ -12990,16 +10231,12 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2656" "Cartridge.Rarity" "Rare" -"Display.Height" "236" -"Display.YStart" "35" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "aa2c4b32656bde9a75042a4d158583e1" "Cartridge.Name" "Oystron X (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "aacbf0dd6021bc5f4cee6c96ff37e84f" @@ -13009,8 +10246,6 @@ "Cartridge.MD5" "aab840db22075aa0f6a6b83a597f8890" "Cartridge.Name" "Hell Driver (ITT Family Games) (PAL) [!]" "Cartridge.Manufacturer" "ITT Family Games" -"Display.Height" "209" -"Display.YStart" "61" "" "Cartridge.MD5" "ab2ea35dcc1098c87455bb8210b018cf" @@ -13020,10 +10255,6 @@ "Cartridge.MD5" "ab10f2974dee73dab4579f0cab35fca6" "Cartridge.Name" "Lilly Adventure (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "232" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "aaea37b65db9e492798f0105a6915e96" @@ -13033,7 +10264,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.Height" "192" "" "Cartridge.MD5" "aad91be0bf78d33d29758876d999848a" @@ -13041,17 +10271,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-018" "Cartridge.Rarity" "Prototype" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "aafc79ffc32c4c9b2d73c8ada7602cfe" "Cartridge.Name" "Planet Patrol (1982) (Spectravision) (PAL) [p1][!]" -"Display.YStart" "64" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "bfa58198c6b9cd8062ee76a2b38e9b33" @@ -13070,10 +10293,6 @@ "Console.LeftDifficulty" "A" "Console.RightDifficulty" "A" "Controller.Right" "None" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "40" "" "Cartridge.MD5" "ac0ddbcff34d064009591607746e33b8" @@ -13085,10 +10304,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2624" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "ab5bf1ef5e463ad1cbb11b6a33797228" @@ -13096,8 +10311,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3204" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.YStart" "42" "" "Cartridge.MD5" "ab56f1b2542a05bebc4fbccfc4803a38" @@ -13105,10 +10318,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-048-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "" "Cartridge.MD5" "abc64037ca5d5b04ae8a7eedbca3ed74" @@ -13118,8 +10327,6 @@ "Cartridge.MD5" "abb740bea0a6842831b4f53112fb8145" "Cartridge.Name" "Qb (V1.01) (PAL) (2001) (Retroactive)" -"Display.YStart" "50" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13131,8 +10338,6 @@ "Cartridge.MD5" "abb741c83f665d73c86d90a7d9292a9b" "Cartridge.Name" "Space Attack (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "201" -"Display.YStart" "58" "" "Cartridge.MD5" "abe40542e4ff2d1c51aa2bb033f09984" @@ -13140,17 +10345,12 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-042" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "209" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "ac05c0e53a5e7009ddd75ed4b99949fc" "Cartridge.Name" "Tank Plus (1977) (Sears)" "Cartridge.ModelNo" "CX2601 / 6699801 / 4975124" "Cartridge.Rarity" "Common" -"Display.YStart" "35" "" "Cartridge.MD5" "acb6787b938079f4e74313a905ec3ceb" @@ -13163,10 +10363,6 @@ "Cartridge.ModelNo" "AZ-030" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "ac5f78bae0638cf3f2a0c8d07eb4df69" @@ -13182,8 +10378,6 @@ "Cartridge.MD5" "ac26d7d37248d1d8eac5eccacdbef8db" "Cartridge.Name" "Snail Against Squirrel (1983) (Bitcorp) (PAL) [p1][!]" -"Display.Height" "245" -"Display.YStart" "42" "" "Cartridge.MD5" "ac9adbd6de786a242e19d4bec527982b" @@ -13191,8 +10385,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-012" "Cartridge.Rarity" "Uncommon" -"Display.Height" "245" -"Display.YStart" "41" "" "Cartridge.MD5" "acaa27d214039d89d7031609aafa55c3" @@ -13204,10 +10396,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-007" "Cartridge.Rarity" "Common" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "acb962473185d7a652f90ed6591ae13b" @@ -13215,15 +10403,12 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3203" "Cartridge.Rarity" "Uncommon" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "ace319dc4f76548659876741a6690d57" "Cartridge.Name" "Championship Soccer (AKA Pele's Soccer)" "Cartridge.ModelNo" "CX2616" "Cartridge.Rarity" "Common" -"Display.Height" "192" "" "Cartridge.MD5" "b95a6274ca0e0c773bfdc06b4c3daa42" @@ -13236,29 +10421,21 @@ "Cartridge.MD5" "b0ba51723b9330797985808db598fc31" "Cartridge.Name" "Alpha Beam with Ernie (1983) (Atari) (PAL) [a1][!]" -"Display.Height" "246" "" "Cartridge.MD5" "adf1afac3bdd7b36d2eda5949f1a0fa3" "Cartridge.Name" "Angriff der Luftflotten (AKA Paris Attack) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "50" "" "Cartridge.MD5" "adb79f9ac1a633cdd44954e2eac14774" "Cartridge.Name" "Frostbite (Digivision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Digivision" -"Display.Height" "197" -"Display.YStart" "41" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "ad42e3ca3144e2159e26be123471bffc" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "adb770ff70e9adf08bbb907a7eccd240" @@ -13277,10 +10454,6 @@ "Cartridge.Rarity" "Common" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "230" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "Display.Phosphor" "Yes" "" @@ -13288,15 +10461,11 @@ "Cartridge.Name" "Bobby is Going Home (CCE) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "CCE / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "254" -"Display.YStart" "16" "" "Cartridge.MD5" "afe4eefc7d885c277fc0649507fbcd84" "Cartridge.Name" "Cosmic Swarm (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "57" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13309,8 +10478,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-210" "Cartridge.Rarity" "Rare" -"Display.Height" "208" -"Display.YStart" "36" "" "Cartridge.MD5" "ae18c11e4d7ed2437f0bf5d167c0e96c" @@ -13322,16 +10489,12 @@ "Cartridge.Manufacturer" "Atari / Charles Morgan" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "ae0d4f3396cb49de0fabdff03cb2756f" "Cartridge.Name" "Qb (V2.02) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" "Cartridge.Rarity" "New Release" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13342,7 +10505,6 @@ "Cartridge.MD5" "ae465044dfba287d344ba468820995d7" "Cartridge.Name" "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Goliath-Funvision" -"Display.YStart" "55" "" "Cartridge.MD5" "ae2f1f69bb38355395c1c75c81acc644" @@ -13361,8 +10523,6 @@ "Cartridge.MD5" "ae682886058cd6981c4b8e93e7b019cf" "Cartridge.Name" "Qb (V0.12) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "60" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13377,10 +10537,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "aed82052f7589df05a3f417bb4e45f0c" @@ -13395,7 +10551,6 @@ "Cartridge.Manufacturer" "Rob Kudla" "Cartridge.Note" "Hack of Ms. Pac-Man (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "198" "" "Cartridge.MD5" "aed0b7bd64cc384f85fdea33e28daf3b" @@ -13403,10 +10558,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2666" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "aec9b885d0e8b24e871925630884095c" @@ -13414,8 +10565,6 @@ "Cartridge.Manufacturer" "Amiga" "Cartridge.ModelNo" "3125" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "242" -"Display.YStart" "17" "" "Cartridge.MD5" "aff8cba0f2d2eb239953dd7116894a08" @@ -13423,10 +10572,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "afe88aae81d99e0947c0cfb687b16251" @@ -13434,7 +10579,6 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2006" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -13443,10 +10587,6 @@ "Cartridge.Manufacturer" "Konami" "Cartridge.ModelNo" "011" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "172" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "b00088418fc891f3faa3d4ddde6ace94" @@ -13463,10 +10603,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-048-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "59" "" "Cartridge.MD5" "b095009004df341386d22b2a3fae3c81" @@ -13474,8 +10610,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "002-01" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.YStart" "64" "" "Cartridge.MD5" "b227175699e372b8fe10ce243ad6dda5" @@ -13483,8 +10617,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2649 / 4975163" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "37" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -13519,8 +10651,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-217" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "b15026b43c6758609667468434766dd8" @@ -13535,16 +10665,11 @@ "Cartridge.Rarity" "New Release" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "212" -"Display.YStart" "37" "" "Cartridge.MD5" "b17b9cc4103844dcda54f77f44acc93a" "Cartridge.Name" "Stopp die Gangster (AKA Mafia) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "b1c4f026a854385259020744e589faa6" @@ -13554,7 +10679,6 @@ "Cartridge.MD5" "b1d1e083dc9e7d9a5dc1627869d2ade7" "Cartridge.Name" "Mario Bros (1983) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "195" "" "Cartridge.MD5" "b21ee4639476eaec8204f00c712b7497" @@ -13562,10 +10686,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-008" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "216" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "b1e2d5dc1353af6d56cd2fe7cfe75254" @@ -13573,7 +10693,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26171" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13588,10 +10707,6 @@ "Cartridge.MD5" "b4f87ce75f7329c18301a2505fe59cd3" "Cartridge.Name" "Autorennen (AKA Grand Prix) (Ariola) (PAL) [!]" "Cartridge.Manufacturer" "Ariola" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "b2761efb8a11fc59b00a3b9d78022ad6" @@ -13608,8 +10723,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2520" "Cartridge.Rarity" "Rare" -"Display.Height" "153" -"Display.YStart" "67" "" "Cartridge.MD5" "b438a6aa9d4b9b8f0b2ddb51323b21e4" @@ -13617,14 +10730,11 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "5861 A030" "Cartridge.Rarity" "Rare" -"Display.Height" "226" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "b2d1e63f7f22864096b7b6c154151d55" "Cartridge.Name" "Bounce! (17-03-2003) (Fabrizio Zavagli)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "b2b78febdbc0ac184084092c1375162a" @@ -13637,8 +10747,6 @@ "Cartridge.MD5" "b29359f7de62fed6e6ad4c948f699df8" "Cartridge.Name" "Labyrinth (Goliath) (PAL) [!]" -"Display.YStart" "52" -"Display.Height" "225" "" "Cartridge.MD5" "b2a6f31636b699aeda900f07152bab6e" @@ -13655,8 +10763,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5080" "Cartridge.Rarity" "Rare" -"Display.Height" "180" -"Display.YStart" "47" "Display.Phosphor" "Yes" "" @@ -13669,17 +10775,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26155" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "b3017e397f74efd53caf8fae0a38e3fe" "Cartridge.Name" "Qb (2.12) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -13688,16 +10788,11 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "b392964e8b1c9c2bed12246f228011b2" "Cartridge.Name" "Name This Game (AKA Octopus) (PAL) [p1][!]" "Cartridge.Manufacturer" "US Games" -"Display.YStart" "50" "" "Cartridge.MD5" "b37f0fe822b92ca8f5e330bf62d56ea9" @@ -13705,10 +10800,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99001" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "235" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "b31dc989f594764eacfa7931cead0050" @@ -13716,8 +10807,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "38" "Emulation.HmoveBlanks" "No" "" @@ -13730,15 +10819,12 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3205" "Cartridge.Rarity" "Rare" -"Display.Height" "190" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "b49331b237c8f11d5f36fe2054a7b92b" "Cartridge.Name" "Galactic (G) (Funvision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Funvision" -"Display.Height" "208" -"Display.YStart" "64" "" "Cartridge.MD5" "b4e2fd27d3180f0f4eb1065afc0d7fc9" @@ -13760,16 +10846,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "b59417d083b0be2d49a7d93769880a4b" "Cartridge.Name" "Donkey Kong (1983) (Pet Boat) (PAL) [!]" -"Display.YStart" "60" "" "Cartridge.MD5" "b56264f738b2eb2c8f7cf5a2a75e5fdc" @@ -13778,15 +10859,12 @@ "Cartridge.ModelNo" "CX2694" "Cartridge.Note" "Game crashes after car starts first turn (bad rom dump)" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.YStart" "43" "" "Cartridge.MD5" "b6812eaf87127f043e78f91f2028f9f4" "Cartridge.Name" "Eli's Ladder (Simage)" "Cartridge.Manufacturer" "Simage" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "190" "" "Cartridge.MD5" "b65d4a38d6047735824ee99684f3515e" @@ -13798,8 +10876,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "227" -"Display.YStart" "43" "Display.Phosphor" "Yes" "" @@ -13815,10 +10891,6 @@ "Cartridge.Manufacturer" "Amiga" "Cartridge.ModelNo" "3130" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "203" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "31" "" "Cartridge.MD5" "b676a9b7094e0345a76ef027091d916b" @@ -13826,8 +10898,7 @@ "Cartridge.Manufacturer" "Video Gems / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" "Console.LeftDifficulty" "A" -"Display.Width" "148" -"Display.XStart" "8" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "b6821ac51c4c1dcb283f01be2f047dc1" @@ -13843,8 +10914,6 @@ "Cartridge.MD5" "b7f184013991823fc02a6557341d2a7a" "Cartridge.Name" "Blue Rod Demo (PD)" -"Display.YStart" "36" -"Display.Height" "224" "" "Cartridge.MD5" "b7903268e235310dc346a164af4c7022" @@ -13852,8 +10921,6 @@ "Cartridge.Name" "Cat Trax (PAL60 by Thomas Jentzsch)" "Cartridge.Rarity" "New Release (Video Format Conversion)" "Display.Format" "PAL60" -"Display.YStart" "33" -"Display.Height" "200" "Display.Phosphor" "YES" "" @@ -13862,8 +10929,6 @@ "Cartridge.Manufacturer" "Ron Corcoran" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "b6d52a0cf53ad4216feb04147301f87d" @@ -13871,15 +10936,11 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3312" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "44" "" "Cartridge.MD5" "b702641d698c60bcdc922dbd8c9dd49c" "Cartridge.Name" "Space War (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "202" -"Display.YStart" "62" "" "Cartridge.MD5" "b6e40bce550672e5495a8cdde7075b8b" @@ -13887,14 +10948,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4401" "Cartridge.Rarity" "Rare" -"Display.YStart" "40" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "b7345220a0c587f3b0c47af33ebe533c" "Cartridge.Name" "Landungskommando (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "56" "" "Cartridge.MD5" "b731d35e4ac6b3b47eba5dd0991f452f" @@ -13906,15 +10965,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-005" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "b79fe32320388a197ac3a0b932cc2189" "Cartridge.Name" "Moonsweeper (1983) (Imagic) (PAL) [a1][!]" -"Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -13923,8 +10977,6 @@ "Cartridge.Manufacturer" "Bitcorp" "Cartridge.ModelNo" "PG201" "Cartridge.Rarity" "Rare" -"Display.Height" "259" -"Display.YStart" "37" "" "Cartridge.MD5" "b7a7e34e304e4b7bc565ec01ba33ea27" @@ -13944,10 +10996,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11008" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "b8865f05676e64f3bec72b9defdacfa7" @@ -13955,10 +11003,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-004" "Cartridge.Rarity" "Uncommon" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "b83df1f32b4539c324bdf94851b4db55" @@ -13966,10 +11010,6 @@ "Cartridge.Manufacturer" "Angelino" "Cartridge.Note" "Hack of Basketball (1978) (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "b816296311019ab69a21cb9e9e235d12" @@ -13979,8 +11019,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "220" -"Display.YStart" "36" "" "Cartridge.MD5" "b879e13fd99382e09bcaf1d87ad84add" @@ -13992,10 +11030,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "110" "Cartridge.Rarity" "Rare" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "b9040a7af6d0d13e7d8fea72b2fb7432" @@ -14006,7 +11040,6 @@ "Cartridge.Name" "Multi-Sprite Game V1.0 (Piero Cavina) (PD)" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Rarity" "New Release" -"Display.Height" "194" "" "Cartridge.MD5" "b9336ed6d94a5cc81a16483b0a946a73" @@ -14014,7 +11047,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2667" "Cartridge.Rarity" "Uncommon" -"Display.Height" "256" "" "Cartridge.MD5" "b9f6fa399b8cd386c235983ec45e4355" @@ -14022,9 +11054,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Note" "Uses the Paddle (left) and Joystick (right) Controllers" "Controller.Left" "Paddles" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "57" "" "Cartridge.MD5" "b9c3bc1d77f8e9d814735188bf324e40" @@ -14039,8 +11068,6 @@ "Cartridge.Name" "Kabobber (Activision) (Prototype) [!]" "Cartridge.Manufacturer" "Activision" "Cartridge.Rarity" "Prototype" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "bcef7880828a391cf6b50d5a6dcef719" @@ -14048,27 +11075,16 @@ "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-009" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "bce93984b920e9b56cf24064f740fe78" "Cartridge.Name" "Checkers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Width" "140" -"Display.XStart" "20" -"Display.YStart" "50" "" "Cartridge.MD5" "b9f9c0fed0db08c34346317f3957a945" "Cartridge.Name" "Chopper Command (1982) (Supervision) (PAL) [p1] [!]" "Cartridge.Manufacturer" "Supervision" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "ba657d940a11e807ff314bba2c8b389b" @@ -14076,10 +11092,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-038" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "ba638f02faac0878c3b0f9669923485f" @@ -14088,8 +11100,6 @@ "Cartridge.MD5" "ba317f83cdfcd58cbc65aac1ccb87bc5" "Cartridge.Name" "Jammed (2001) (XYPE) [a1]" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "ba257438f8a78862a9e014d831143690" @@ -14109,7 +11119,6 @@ "Cartridge.MD5" "ba3b0eebccc7b791107de5b4abb671b4" "Cartridge.Name" "Thrust (V0.9) (2000) (TJ)" "Cartridge.Rarity" "New Release" -"Display.Height" "201" "" "Cartridge.MD5" "bb6a5a2f7b67bee5d1f237f62f1e643f" @@ -14121,10 +11130,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-201" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.YStart" "61" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "bb579404924c40ca378b4aff6ccf302d" @@ -14140,8 +11145,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26176" "Cartridge.Rarity" "Rare" -"Display.Height" "185" -"Display.YStart" "42" "" "Cartridge.MD5" "bb07f917611cde42b7d83746ee27147d" @@ -14151,8 +11154,6 @@ "Cartridge.MD5" "bcb2967b6a9254bcccaf906468a22241" "Cartridge.Name" "Demon Attack (1983) (Activision) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "194" -"Display.YStart" "39" "" "Cartridge.MD5" "bc526185ad324241782dc68ba5d0540b" @@ -14162,10 +11163,6 @@ "Cartridge.MD5" "bb745c893999b0efc96ea9029e3c62ca" "Cartridge.Name" "Planet Patrol (1982) (Play Video) (PAL) [!]" "Cartridge.Manufacturer" "Play Video" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" -"Display.Height" "199" "" "Cartridge.MD5" "bc24440b59092559a1ec26055fd1270e" @@ -14173,7 +11170,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-034-04" "Cartridge.Rarity" "Rare" -"Display.Height" "195" "" "Cartridge.MD5" "bb9f06b288b5275bc0d38b6731b2526a" @@ -14185,10 +11181,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26136" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "bc3057a35319aae3a5cd87a203736abe" @@ -14198,8 +11190,6 @@ "Cartridge.MD5" "bc703ea6afb20bc089f04d8c9d79a2bd" "Cartridge.Name" "Gunfight 2600 - Not mergeable with Colbert wizardry... (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "bc6432cbed32c695658514c4eb41d905" @@ -14214,8 +11204,7 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2671" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "205" -"Display.YStart" "37" +"Cartridge.Type" "F8" "" "Cartridge.MD5" "bc97d544f1d4834cc72bcc92a37b8c1b" @@ -14225,7 +11214,6 @@ "Cartridge.MD5" "bce4c291d0007f16997faa5c4db0a6b8" "Cartridge.Name" "Weltraum Tunnel (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "40" "" "Cartridge.MD5" "be41463cd918daef107d249f8cde3409" @@ -14233,10 +11221,6 @@ "Cartridge.Manufacturer" "Dan Hitchens and Mike Mika" "Cartridge.Note" "Hack of Berzerk (Atari)" "Cartridge.Rarity" "New Release" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "" "Cartridge.MD5" "bd1bd6f6b928df17a702def0302f46f4" @@ -14251,10 +11235,6 @@ "Cartridge.Name" "Night Stalker (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" "Cartridge.Rarity" "Rare" -"Display.Height" "206" -"Display.YStart" "61" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "bdb4b584ddc90c9d2ec7e21632a236b6" @@ -14267,10 +11247,6 @@ "Cartridge.MD5" "bda1463e02ae3a6e1107ffe1b572efd2" "Cartridge.Name" "Snoopy and the Red Baron (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "43" -"Display.Height" "229" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "be1922bd8e09d74da471287e1e968653" @@ -14282,10 +11258,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11005" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "be060a704803446c02e6f039ab12eb91" @@ -14293,17 +11265,11 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5050" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.YStart" "41" "" "Cartridge.MD5" "bdecc81f740200780db04a107c3a1eba" "Cartridge.Name" "Super-Cowboy beim Rodeo (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "bdc381baf7c252c63739c5e9ed087a5c" @@ -14316,16 +11282,12 @@ "Cartridge.MD5" "be2870a0120fd28d25284e9ccdcbdc99" "Cartridge.Name" "Tomb Raider 2600 [REV 01] (Montezuma's Revenge Hack)" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "be35d8b37bbc03848a5f020662a99909" "Cartridge.Name" "Tank Plus (1977) (Sears) [a1]" "Cartridge.ModelNo" "CX2601 / 6699801 / 4975124" "Cartridge.Rarity" "Common" -"Display.Height" "206" -"Display.YStart" "39" "" "Cartridge.MD5" "be561b286b6432cac71bccbae68002f7" @@ -14338,8 +11300,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Controller.Left" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "bf6b753ec11acfec3b40f8a4c476e77d" @@ -14351,10 +11311,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "bedfbde71fb606601f936b5b057f26f7" @@ -14362,10 +11318,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-025" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "becd908f9d7bb361982c3dc02d6475c6" @@ -14373,10 +11325,6 @@ "Cartridge.Manufacturer" "Kyle Pittman" "Cartridge.Note" "Hack of Berserk (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "" "Cartridge.MD5" "befce0de2012b24fd6cb8b53c17c8271" @@ -14396,8 +11344,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2656" "Cartridge.Rarity" "Common" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "d2d8c4f1ea7f347c8bcc7d24f45aa338" @@ -14413,16 +11359,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26133" "Cartridge.Rarity" "Prototype" -"Display.Height" "190" -"Display.YStart" "44" "" "Cartridge.MD5" "bff8f8f53a8aeb1ee804004ccbb08313" "Cartridge.Name" "Droid Demo 22 (David Conrad Schweinsberg) (PD)" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "bfb7850e3ca39f417f8e4bd5ae39f24b" @@ -14446,8 +11386,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "ca4f8c5b4d6fb9d608bb96bc7ebd26c7" @@ -14455,17 +11393,14 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT4317" "Cartridge.Rarity" "Uncommon" -"Display.Height" "180" -"Display.YStart" "46" "" "Cartridge.MD5" "c77c35a6fc3c0f12bf9e8bae48cba54b" -"Cartridge.Name" "Artillery Duel (1983) (Xonox) [!]" "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99004" +"Cartridge.Name" "Artillery Duel (1983) (Xonox) [!]" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "186" -"Display.YStart" "27" +"Display.YStart" "20" "" "Cartridge.MD5" "c5c7cc66febf2d4e743b4459de7ed868" @@ -14473,15 +11408,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2696" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "191" -"Display.YStart" "66" "" "Cartridge.MD5" "c4bbbb0c8fe203cbd3be2e318e55bcc0" "Cartridge.Name" "Atlantis (1982) (Imagic) (PAL) [p1][!]" "Cartridge.Manufacturer" "Imagic" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "c2a37f1c7603c5fd97df47d6c562abfa" @@ -14493,10 +11424,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-015" "Cartridge.Rarity" "Uncommon" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "49" "" "Cartridge.MD5" "c17bdc7d14a36e10837d039f43ee5fa3" @@ -14504,7 +11431,6 @@ "Cartridge.Manufacturer" "Spectravision" "Cartridge.ModelNo" "SA-203" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "c16c79aad6272baffb8aae9a7fff0864" @@ -14512,7 +11438,6 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 2001" "Cartridge.Rarity" "Rare" -"Display.Height" "197" "" "Cartridge.MD5" "c033dc1d7b6fde41b9cadce9638909bb" @@ -14524,10 +11449,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.Rarity" "Prototype" "Cartridge.Type" "FE" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "c126656df6badfa519cc63e681fb3596" @@ -14536,7 +11457,6 @@ "Cartridge.MD5" "c08d0cee43077d3055febb00e5745c1d" "Cartridge.Name" "Super Hit Pak - RRaid,GPrix,Fishing,SkyJ,Chckrs (Activision) (PAL) [!]" -"Display.YStart" "54" "" "Cartridge.MD5" "c05f367fa4767ceb27abadf0066df7f4" @@ -14548,7 +11468,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "010-01" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "c150c76cbde2c9b5a97eb5399d46c64f" @@ -14560,8 +11479,6 @@ "Cartridge.Manufacturer" "Bomb" "Cartridge.ModelNo" "CA285" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "219" -"Display.YStart" "27" "" "Cartridge.MD5" "c1b1049b88bcd98437d8872d1d62ba31" @@ -14579,26 +11496,21 @@ "Cartridge.Note" "Uses Joystick (left) and Keypad (right) Controllers" "Cartridge.Rarity" "Uncommon" "Controller.Right" "Keyboard" -"Display.Height" "220" -"Display.YStart" "64" "" "Cartridge.MD5" "c221607529cabc93450ef25dbac6e8d2" "Cartridge.Name" "Color Test (26-09-2002) (Eckhard Stolberg)" "Console.LeftDifficulty" "A" -"Display.YStart" "53" "" "Cartridge.MD5" "c1fdd44efda916414be3527a47752c75" -"Cartridge.Name" "G.I. Joe - Cobra Strike (1983) (Parker Bros) [!]" "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5920" +"Cartridge.Name" "G.I. Joe - Cobra Strike (1983) (Parker Bros) [!]" "Cartridge.Note" "Uses the Paddle (left) and Joystick (right) Controllers" "Cartridge.Rarity" "Uncommon" -"Controller.Left" "Paddles" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" +"Controller.Left" "PADDLES" +"Display.YStart" "30" "" "Cartridge.MD5" "c1f209d80f0624dada5866ce05dd3399" @@ -14606,24 +11518,18 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "MT5662" "Cartridge.Rarity" "Uncommon" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "55" "" "Cartridge.MD5" "c21450c21efb7715746e9fa87ad6f145" "Cartridge.Name" "Gunfight 2600 - It could've been soooo cool, but... (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "229" "" "Cartridge.MD5" "c20f15282a1aa8724d70c117e5c9709e" "Cartridge.Name" "Surfer's Paradise - But Danger Below! (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "55" "" "Cartridge.MD5" "c2778507b83d9540e9be5713758ff945" @@ -14639,8 +11545,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2646 / 4975185" "Cartridge.Rarity" "Common" -"Display.Height" "206" -"Display.YStart" "54" "" "Cartridge.MD5" "c246e05b52f68ab2e9aee40f278cd158" @@ -14658,17 +11562,11 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" -"Display.Height" "206" -"Display.YStart" "37" "" "Cartridge.MD5" "c471b97446a85304bbac021c57c2cb49" "Cartridge.Name" "Boing! (1983) (First Star Software) (PAL) [!]" "Cartridge.Manufacturer" "First Star Software" -"Display.Height" "183" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "Display.Phosphor" "Yes" "" @@ -14677,8 +11575,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-002" "Cartridge.Rarity" "Uncommon" -"Display.Width" "140" -"Display.XStart" "8" "" "Cartridge.MD5" "c3472fa98c3b452fa2fd37d1c219fb6f" @@ -14686,23 +11582,18 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637 / 4975158" "Cartridge.Rarity" "Uncommon" -"Display.Height" "180" -"Display.YStart" "57" "" "Cartridge.MD5" "c2b5c50ccb59816867036d7cf730bf75" "Cartridge.Name" "Ghostbusters II (1992) (Salu) (PAL) [!]" "Cartridge.Manufacturer" "Salu" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "242" -"Display.YStart" "42" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "c31a17942d162b80962cb1f7571cd1d5" "Cartridge.Name" "Monster aus dem All (1983) (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.YStart" "64" "" "Cartridge.MD5" "c3205e3707f646e1a106e09c5c49c1bf" @@ -14722,10 +11613,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2663" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "44" "" "Cartridge.MD5" "c370c3268ad95b3266d6e36ff23d1f0c" @@ -14733,8 +11620,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2641 / 99807 / 75105" "Cartridge.Rarity" "Common" -"Display.Height" "226" -"Display.YStart" "45" "" "Cartridge.MD5" "c3bbc673acf2701b5275e85d9372facf" @@ -14755,8 +11640,6 @@ "Cartridge.Manufacturer" "Wizard Video" "Cartridge.ModelNo" "007" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "c446288fe62c0c2737639fd788ae4a21" @@ -14767,7 +11650,6 @@ "Cartridge.MD5" "c4060a31d61ba857e756430a0a15ed2e" "Cartridge.Name" "Pick 'n Pile (PAL Conversion) (2003) (TJ)" "Console.SwapPorts" "Yes" -"Display.YStart" "26" "Display.Phosphor" "Yes" "" @@ -14776,8 +11658,6 @@ "Cartridge.Manufacturer" "Bomb" "Cartridge.ModelNo" "13" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "c4b73c35bc2f54b66cd786f55b668a82" @@ -14785,18 +11665,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "c47244f5557ae12c61e8e01c140e2173" "Cartridge.Name" "Jungle Hunt (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "c49fe437800ad7fd9302f3a90a38fb7d" @@ -14804,8 +11676,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2697" "Cartridge.Rarity" "Uncommon" -"Display.Height" "206" -"Display.YStart" "52" "" "Cartridge.MD5" "c482f8eebd45e0b8d479d9b71dd72bb8" @@ -14823,14 +11693,10 @@ "Cartridge.Manufacturer" "Telegames" "Cartridge.ModelNo" "5861 A030" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "c5124e7d7a8c768e5a18bde8b54aeb1d" "Cartridge.Name" "Cosmic Ark (1982) (Imagic) (White Label) (PAL) [!]" -"Display.YStart" "64" "" "Cartridge.MD5" "c4be1f4024fa8840fcfcbbbc9befff11" @@ -14850,7 +11716,6 @@ "Cartridge.MD5" "c4d888bcf532e7c9c5fdeafbb145266a" "Cartridge.Name" "Robot Fight (AKA Space Robot) (HomeVision) (PAL) [b1]" -"Display.Height" "235" "Display.Phosphor" "Yes" "" @@ -14871,8 +11736,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "c58708c09ccb61625cda9d15ddcd8be6" @@ -14887,15 +11750,12 @@ "Cartridge.Name" "Sniper (Feb 30) (2001) (Prototype)" "Cartridge.Manufacturer" "Billy Eno" "Cartridge.Rarity" "Prototype" -"Display.Height" "229" -"Display.YStart" "27" "" "Cartridge.MD5" "c5387fc1aa71f11d2fa82459e189a5f0" "Cartridge.Name" "Weltraum Tunnel (Bitcorp) (PAL) [!]" "Cartridge.Manufacturer" "Bitcorp" "Display.Height" "256" -"Display.YStart" "37" "" "Cartridge.MD5" "c5930d0e8cdae3e037349bfa08e871be" @@ -14903,7 +11763,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2655 / 4975167" "Cartridge.Rarity" "Common" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -14912,10 +11771,6 @@ "Cartridge.Manufacturer" "Charles Morgan" "Cartridge.Note" "Hack of Moon Patrol (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "175" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "47" "" "Cartridge.MD5" "c738fc3f5aae1e8f86f7249f6c82ac81" @@ -14930,26 +11785,16 @@ "Cartridge.MD5" "c68a6bafb667bad2f6d020f879be1d11" "Cartridge.Name" "Crystal Castles (1984) (Atari) (NTSC) (Prototype) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "174" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "c67ff409f28f44883bd5251cea79727d" "Cartridge.Name" "Gunfight 2600 - Music & Bugfixes 1 (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "c5d2834bf98e90245e545573eb7e6bbc" "Cartridge.Name" "Snoopy and the Red Baron (CCE)" "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "CX26111" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "c6556e082aac04260596b4045bc122de" @@ -14972,9 +11817,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2695" "Cartridge.Rarity" "Prototype" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "26" "Display.Phosphor" "Yes" "" @@ -14982,24 +11824,16 @@ "Cartridge.Name" "Edtris (1994) (Ed Federmeyer)" "Cartridge.Manufacturer" "Ed Federmeyer" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "188" -"Display.YStart" "48" "" "Cartridge.MD5" "c6ae21caceaad734987cb24243793bd5" "Cartridge.Name" "Frostbite (1983) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "c6c63da3bc2e47291f63280e057061d0" "Cartridge.Name" "Human Cannonball (AKA Cannon Man) (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "128-in-1 Junior Console" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "c6cedb25b7d390b580ea8edb614b168b" @@ -15011,15 +11845,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" "" "Cartridge.MD5" "c745487828a1a6a743488ecebc55ad44" "Cartridge.Name" "Galactic (Starsoft) (PAL) [!]" -"Display.YStart" "54" "" "Cartridge.MD5" "c74bfd02c7f1877bbe712c1da5c4c194" @@ -15027,9 +11856,6 @@ "Cartridge.Manufacturer" "Activision / Thomas Jentzsch" "Cartridge.Note" "Hack of River Raid (Activision)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "c9b7afad3bfd922e006a6bfc1d4f3fe7" @@ -15037,8 +11863,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2628 / 6699842 / 4975117" "Cartridge.Rarity" "Common" -"Display.Height" "220" -"Display.YStart" "37" "" "Cartridge.MD5" "c8c7da12f087e8d16d3e6a21b371a5d3" @@ -15048,22 +11872,16 @@ "Cartridge.MD5" "c82ec00335cbb4b74494aecf31608fa1" "Cartridge.Name" "E.T. The Extra-Terrestrial (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.YStart" "36" "" "Cartridge.MD5" "c7d5819b26b480a49eb26aeb63cc831e" "Cartridge.Name" "Ice Hockey (PAL) [p1][!]" "Cartridge.ModelNo" "AX-012" "Cartridge.Rarity" "Uncommon" -"Display.Height" "245" -"Display.YStart" "41" "" "Cartridge.MD5" "c7900a7fe95a47eef3b325072ad2c232" "Cartridge.Name" "Super Congo Bongo (2003) (Larry Petit) (Congo Bongo Hack)" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "c77d3b47f2293e69419b92522c6f6647" @@ -15071,7 +11889,6 @@ "Cartridge.Manufacturer" "Panda" "Cartridge.ModelNo" "101" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "c7e43ad79c5e5c029d9f5ffde23e32cf" @@ -15091,16 +11908,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2680" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "c866c995c0d2ca7d017fef0fc0c2e268" "Cartridge.Name" "Qb (2.00) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "6" "Display.Phosphor" "Yes" "" @@ -15114,8 +11926,6 @@ "Cartridge.Name" "Sesam, Oeffne Dich (AKA Open Sesame) (Bitcorp) (NTSC by Thomas Jentzsch)" "Cartridge.Manufacturer" "Bitcorp / Thomas Jentzsch" "Cartridge.Rarity" "New Release (Video Format Conversion)" -"Display.Height" "245" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -15124,7 +11934,6 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "2653" "Cartridge.Rarity" "Rare" -"Display.YStart" "35" "" "Cartridge.MD5" "c8df076c7e4349ca8dcbdb773bf3c985" @@ -15132,25 +11941,17 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "49" "" "Cartridge.MD5" "c92cfa54b5d022637fdcbdc1ef640d82" "Cartridge.Name" "Qb (V2.05) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "c9196e28367e46f8a55e04c27743148f" "Cartridge.Name" "Stampede (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "63" "" "Cartridge.MD5" "ca09fa7406b7d2aea10d969b6fc90195" @@ -15158,10 +11959,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-024" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "c9d02d3cfeef8b48fb71cb4520a4aa84" @@ -15173,10 +11970,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-023" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "c9f6e521a49a2d15dac56b6ddb3fb4c7" @@ -15188,28 +11981,18 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "199" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "31" "" "Cartridge.MD5" "cf3a9ada2692bb42f81192897752b912" "Cartridge.Name" "Air Raiders (1982) (Mattel) (PAL) [p1][!]" "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5861" -"Display.Height" "226" -"Display.YStart" "46" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "ccbd36746ed4525821a8083b0d6d2c2c" "Cartridge.Name" "Asteroids [p1]" "Cartridge.ModelNo" "CX2649" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "37" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -15217,8 +12000,6 @@ "Cartridge.MD5" "cb8afcbc4a779b588b0428ea7af211d5" "Cartridge.Name" "Atlantis (1982) (Activision) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "185" -"Display.YStart" "49" "" "Cartridge.MD5" "ca7abc774a2fa95014688bc0849eee47" @@ -15226,32 +12007,21 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26110" "Cartridge.Rarity" "Uncommon" -"Display.Height" "174" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "50" "" "Cartridge.MD5" "ca7aaebd861a9ef47967d31c5a6c4555" "Cartridge.Name" "Home Run (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "220" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "ca53fc8fd8b3c4a7df89ac86b222eba0" "Cartridge.Name" "Pac-Man (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "206" "" "Cartridge.MD5" "ca50cc4b21b0155255e066fcd6396331" "Cartridge.Name" "Raumpatrouille (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "220" -"Display.YStart" "61" "Display.Phosphor" "Yes" "" @@ -15261,8 +12031,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "PADDLES" -"Display.Height" "213" -"Display.YStart" "27" "" "Cartridge.MD5" "cb8399dc0d409ff1f531ef86b3b34953" @@ -15274,7 +12042,6 @@ "Cartridge.Manufacturer" "Ariola" "Cartridge.ModelNo" "VG-01" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "55" "" "Cartridge.MD5" "cb0b5b8458a13a074e1fe82d3c4e8f3c" @@ -15283,14 +12050,11 @@ "Cartridge.ModelNo" "AZ-028" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "cad982c9b45bc5eff34e4ea982d5f1ca" "Cartridge.Name" "Song (17-02-2003) (Paul Slocum)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "cae8f83c06831ec7bb6a3c07e98e9342" @@ -15303,14 +12067,10 @@ "Cartridge.MD5" "cb4a7b507372c24f8b9390d22d54a918" "Cartridge.Name" "Peter Penguin (Jagt auf Diamanten-Frisco) (ITT) (PAL) [!]" "Cartridge.Manufacturer" "ITT" -"Display.Height" "200" -"Display.YStart" "64" "" "Cartridge.MD5" "cbeafd37f15e0dddb0540dbe15c545a4" "Cartridge.Name" "Black and White Fast Scolling Demo (PD)" -"Display.Height" "193" -"Display.YStart" "37" "" "Cartridge.MD5" "cb9626517b440f099c0b6b27ca65142c" @@ -15321,14 +12081,11 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "38" "" "Cartridge.MD5" "cb8bf5a0df683cbf6ce50d614b12dd20" "Cartridge.Name" "Fast Eddie (1983) (Activision)" "Cartridge.Manufacturer" "Activision" -"Display.Height" "198" -"Display.YStart" "38" "" "Cartridge.MD5" "cbad928e10aeee848786cc55394fb692" @@ -15344,10 +12101,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5060" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "55" "" "Cartridge.MD5" "cbced209dd0575a27212d3eee6aee3bc" @@ -15355,10 +12108,6 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2003" "Cartridge.Rarity" "Uncommon" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "Display.Phosphor" "Yes" "" @@ -15369,10 +12118,6 @@ "Cartridge.MD5" "cbc373fbcb1653b4c56bfabba33ea50d" "Cartridge.Name" "Super VoleyBall (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "cbd981a23c592fb9ab979223bb368cd5" @@ -15392,8 +12137,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "194" -"Display.YStart" "37" "" "Cartridge.MD5" "cc74ddb45d7bc4d04c2e6f1907416699" @@ -15409,33 +12152,23 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "cc3d942c6958bd16b1c602623f59e6e1" "Cartridge.Name" "Pigs in Space starring Miss Piggy (1986) (Atari) (PAL) [a1][!]" -"Display.Height" "240" "" "Cartridge.MD5" "ccb5fa954fb76f09caae9a8c66462190" "Cartridge.Name" "Malagai (1983) (Answer Software)" "Cartridge.ModelNo" "ASC1001" "Cartridge.Rarity" "Unbelievably Rare" -"Display.YStart" "32" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "cca33ae30a58f39e3fc5d80f94dc0362" "Cartridge.Name" "Okie Dokie (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "178" -"Display.Width" "128" -"Display.XStart" "16" -"Display.YStart" "47" "" "Cartridge.MD5" "ccb807eb79b0ed0f5fdc460445ef703a" @@ -15444,17 +12177,12 @@ "Cartridge.MD5" "ce17325834bf8b0a0d0d8de08478d436" "Cartridge.Name" "Boring Freeway (Freeway Hack)" -"Display.YStart" "38" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "cd88ef1736497288c4533bcca339f881" "Cartridge.Name" "Buck Rogers - Planet of Zoom (1983) (Sega) (PAL) [!]" -"Display.YStart" "64" -"Display.Height" "250" -"Display.Phosphor" "Yes" +"Display.Format" "PAL" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "cd38ad19f51b1048d8e5e99c86a2a655" @@ -15467,12 +12195,10 @@ "Cartridge.MD5" "ccd6ce508eee4b3fca67212833edcd85" "Cartridge.Name" "Hot Wave (Starsoft) (w-Black Label) (PAL) [!]" -"Display.YStart" "60" "" "Cartridge.MD5" "cccfe9e9a11b1dad04beba46eefb7351" "Cartridge.Name" "Poker Squares (V0.25) (PAL) (2001) (B. Watson)" -"Display.YStart" "45" "" "Cartridge.MD5" "cd34b3b3ef9e485201e841ba71beb253" @@ -15490,10 +12216,6 @@ "Cartridge.Manufacturer" "Ariola" "Cartridge.ModelNo" "MT5687" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "cd4ded1ede63c4dd09f3dd01bda7458c" @@ -15509,9 +12231,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4104" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "cd6b3dff86a55a4a6d23007ee360ea0e" @@ -15519,7 +12238,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" -"Display.Height" "206" "" "Cartridge.MD5" "cd8fa2e9f6255ef3d3b9b5a4f24a54f7" @@ -15533,9 +12251,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "52" "" "Cartridge.MD5" "cd9fea12051e414a6dfe17052067da8e" @@ -15554,7 +12269,6 @@ "Cartridge.Note" "Uses Keypad Controllers" "Cartridge.Type" "CV" "Controller.Left" "Keyboard" -"Display.YStart" "25" "" "Cartridge.MD5" "cdc1a5c61d7488eadc9aba36166b253d" @@ -15564,35 +12278,25 @@ "" "Cartridge.MD5" "ce243747bf34a2de366f846b3f4ca772" -"Cartridge.Name" "Felix Return (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Height" "247" -"Display.YStart" "44" +"Cartridge.Name" "Felix Return (Goliath) (PAL) [!]" +"Display.YStart" "37" +"Display.Height" "256" "" "Cartridge.MD5" "ce904c0ae58d36d085cd506989116b0b" "Cartridge.Name" "International Soccer (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "ce89529d6e98a13ddf3d84827bbdfe68" "Cartridge.Name" "Kung Fu Sprite Demo 2 (PD)" -"Display.Height" "208" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "ce4bbe11d682c15a490ae15a4a8716cf" "Cartridge.Name" "Okie Dokie (Older) (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "178" -"Display.Width" "128" -"Display.XStart" "16" -"Display.YStart" "30" "" "Cartridge.MD5" "ce64812eb83c95723b04fb56d816910b" @@ -15609,8 +12313,6 @@ "Cartridge.Name" "Karate (1982) (Froggo)" "Cartridge.Manufacturer" "Froggo" "Cartridge.Rarity" "Rare" -"Display.Height" "217" -"Display.YStart" "27" "" "Cartridge.MD5" "cea9f72036dc6f7af5eff52459066290" @@ -15621,8 +12323,6 @@ "Cartridge.MD5" "cef01595000627ee50863d4290372c27" "Cartridge.Name" "Many Blue Bars and Text Demo (PD)" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "cf0c593c563c84fdaf0f741adb367445" @@ -15636,31 +12336,22 @@ "Cartridge.Manufacturer" "Milton Bradley" "Cartridge.ModelNo" "4363" "Cartridge.Rarity" "Uncommon" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "d0cdafcb000b9ae04ac465f17788ad11" "Cartridge.Name" "Alice's Abenteuer (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "240" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "d0af33865512e9b6900714c26db5fa23" "Cartridge.Name" "Armor Ambush (1982) (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "195" -"Display.YStart" "60" "" "Cartridge.MD5" "d0a379946ed77b1b126230ca68461333" "Cartridge.Name" "Atari Invaders by Ataripoll (Space Invaders Hack)" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "cf3c2725f736d4bcb84ad6f42de62a41" @@ -15668,26 +12359,16 @@ "Cartridge.Manufacturer" "Rainbow Vision" "Cartridge.ModelNo" "SS-009" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "cfb3260c603b0341d49ddfc94051ec10" "Cartridge.Name" "Boxing (Dactar) (PAL) [p1][!]" "Cartridge.Manufacturer" "Dactar" -"Display.Width" "140" -"Display.XStart" "8" "" "Cartridge.MD5" "cf63ffac9da89ef09c6c973083061a47" "Cartridge.Name" "M.A.S.H. (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "cf507910d6e74568a68ac949537bccf9" @@ -15695,7 +12376,6 @@ "Cartridge.Manufacturer" "Sega" "Cartridge.ModelNo" "003-01" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -15703,9 +12383,6 @@ "Cartridge.Name" "Mission Survive (1983) (Video Gems) (PAL)" "Cartridge.Manufacturer" "Video Gems" "Console.LeftDifficulty" "A" -"Display.YStart" "60" -"Display.Width" "148" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -15714,8 +12391,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-006" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.YStart" "36" "" "Cartridge.MD5" "cfc226d04d7490b69e155abd7741e98c" @@ -15723,8 +12398,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26159" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "64" "" "Cartridge.MD5" "d05e371765929bf5d39c91c6ea189bec" @@ -15736,16 +12409,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-026" "Cartridge.Rarity" "Uncommon" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "cfdb4d0427a1ea8085c6bc6eb90259d8" "Cartridge.Name" "Gunfight 2600 - Release Candidate (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "d026716b3c5be2c951cc4c064317c524" @@ -15757,10 +12424,6 @@ "Cartridge.Manufacturer" "Paul Slocum" "Cartridge.Note" "Hack of Berzerk (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" @@ -15785,8 +12448,6 @@ "Cartridge.Note" "Hack of Adventure (Atari)" "Cartridge.Rarity" "New Release (Hack)" "Controller.Right" "None" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "d010e3dfe7366e47561c088079a59439" @@ -15804,8 +12465,6 @@ "Cartridge.Manufacturer" "Telesys" "Cartridge.ModelNo" "1006" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "187" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" @@ -15821,10 +12480,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-024" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "d09f1830fb316515b90694c45728d702" @@ -15839,7 +12494,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11002" "Cartridge.Rarity" "Rare" -"Display.Height" "195" "" "Cartridge.MD5" "d0b9f705aa5f61f47a748a66009ae2d2" @@ -15860,10 +12514,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26120" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "d1b4075925e8d3031a7616d2f02fdd1f" @@ -15875,10 +12525,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -15886,8 +12532,6 @@ "Cartridge.Name" "Gunfight 2600 - Limit broken again! (2001) (MP)" "Cartridge.Manufacturer" "Hozer Video Games" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "229" "" "Cartridge.MD5" "d0e9beb2347595c6c7d158e9d83d2da8" @@ -15902,7 +12546,6 @@ "Cartridge.MD5" "d175258b2973b917a05b46df4e1cf15d" "Cartridge.Name" "Walker (198x)" -"Display.Height" "225" "" "Cartridge.MD5" "d17a8c440d6be79fae393a4b46661164" @@ -15919,7 +12562,6 @@ "Cartridge.MD5" "d1d704a7146e95709b57b6d4cac3f788" "Cartridge.Name" "Slot Racers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "61" "" "Cartridge.MD5" "d28afe0517a046265c418181fa9dd9a1" @@ -15927,23 +12569,15 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2637" "Cartridge.Rarity" "Uncommon" -"Display.Height" "198" -"Display.YStart" "64" "" "Cartridge.MD5" "d245e2f27c84016041e9496b66b722fe" "Cartridge.Name" "Gunfight 2600 - The Final Kernel (MP)" -"Display.YStart" "35" -"Display.Height" "194" "" "Cartridge.MD5" "d223bc6f13358642f02ddacfaf4a90c9" "Cartridge.Name" "Pac Kong (AKA Inca Gold) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "215" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "51" "" "Cartridge.MD5" "d2901c34bb6496bb96c7bc78a9e6142a" @@ -15955,10 +12589,6 @@ "Cartridge.Manufacturer" "Mythicon" "Cartridge.ModelNo" "MA-1001" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "d2c305a443dfc49e8430964d7c1bd1b7" @@ -15974,15 +12604,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2618 / 4975123" "Cartridge.Rarity" "Uncommon" -"Display.Height" "230" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "45" "" "Cartridge.MD5" "dafc3945677ccc322ce323d1e9930beb" "Cartridge.Name" "A-Team, The (Atari) (Prototype) (PAL) [!]" -"Display.YStart" "59" "" "Cartridge.MD5" "d573089534ca596e64efef474be7b6bc" @@ -15990,39 +12615,26 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.Note" "Uses the Paddle (left) and Joystick (right) Controllers" "Controller.Left" "Paddles" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "57" "" "Cartridge.MD5" "d341d39774277cee6a1d378a013f92ac" "Cartridge.Name" "Artillery Duel (1983) (Xonox) (PAL) [a1][!]" -"Display.YStart" "26" -"Display.Height" "190" +"Display.YStart" "20" "" "Cartridge.MD5" "d2f713c78a9ebba9da6d10aeefc6f20f" "Cartridge.Name" "Enduro (Digivision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Digivision" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "d3171407c3a8bb401a3a62eb578f48fb" "Cartridge.Name" "Fire Spinner (Emag) (PAL)" -"Display.Height" "207" -"Display.YStart" "28" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "d339b95f273f8c3550dc4daa67a4aa94" "Cartridge.Name" "Laser Blast (1982) (Activision) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "55" "" "Cartridge.MD5" "d326db524d93fa2897ab69c42d6fb698" @@ -16030,7 +12642,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5320" "Cartridge.Rarity" "Uncommon" -"Display.Height" "206" "" "Cartridge.MD5" "d4aa6d6095258ce46aaf6f144b09eea7" @@ -16045,7 +12656,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26140" "Cartridge.Rarity" "Common" -"Display.YStart" "17" "" "Cartridge.MD5" "d3bb42228a6cd452c111c1932503cc03" @@ -16053,15 +12663,11 @@ "Cartridge.Manufacturer" "UA Limited" "Cartridge.Rarity" "Prototype" "Cartridge.Type" "UA" -"Display.Height" "213" -"Display.YStart" "36" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "d36308387241e98f813646f346e7f9f7" "Cartridge.Name" "Ghostbuster 2 (PAL) (King Atari)" -"Display.YStart" "42" -"Display.Height" "230" "Display.Phosphor" "Yes" "" @@ -16083,14 +12689,12 @@ "Cartridge.Manufacturer" "Avalon Hill" "Cartridge.ModelNo" "50030" "Cartridge.Rarity" "Extremely Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "d39e29b03af3c28641084dd1528aae05" "Cartridge.Name" "Spider Kong (AKA Karate) (Goliath-Funvision) (PAL) [!]" "Cartridge.Manufacturer" "Goliath-Funvision" -"Display.YStart" "54" "" "Cartridge.MD5" "d45ebf130ed9070ea8ebd56176e48a38" @@ -16103,23 +12707,16 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "d47387658ed450db77c3f189b969cc00" "Cartridge.Name" "Westward Ho (Playground) (PAL)" "Cartridge.Manufacturer" "Playaround" -"Display.YStart" "64" "" "Cartridge.MD5" "d4942f4b55313ff269488527d84ce35c" "Cartridge.Name" "Ms. Pac-Man (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "200" "" "Cartridge.MD5" "d483f65468d9a265661917bae1a54f3e" @@ -16139,10 +12736,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "d536a84d4e1f170305e17f7078296a50" @@ -16150,10 +12743,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "d4aa89e96d2902692f5c45f36903d336" @@ -16167,23 +12756,14 @@ "Cartridge.MD5" "d5618464dbdc2981f6aa8b955828eeb4" "Cartridge.Name" "Megamania (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "da0fb2a484d0d2d8f79d6e063c94063d" "Cartridge.Name" "Air Raiders (1982) (Mattel) [a1][!]" -"Display.YStart" "35" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "d61629bbbe035f45552e31cef7d591b2" "Cartridge.Name" "Atari Logo Demo (PD) (PAL)" -"Display.YStart" "56" "" "Cartridge.MD5" "d605ed12f4eaaaec3dcd5aa909a4bad7" @@ -16193,15 +12773,10 @@ "Cartridge.MD5" "d57eb282d7540051bc9b5427cf966f03" "Cartridge.Name" "Custer's Viagra (Atari Troll) (Custer's Revenge Hack)" "Display.YStart" "32" -"Display.Height" "200" "" "Cartridge.MD5" "d57913088e0c49ac3a716bf9837b284f" "Cartridge.Name" "Pressure Cooker (1983) (Activision) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "d5e27051512c1e7445a9bf91501bda09" @@ -16209,15 +12784,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-008" "Cartridge.Rarity" "Common" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "27" "" "Cartridge.MD5" "d5aa7472e7f2cc17e893a1a36f8dadf0" "Cartridge.Name" "Overhead Adventure Demo 5 (PD)" -"Display.Height" "180" -"Display.YStart" "64" "" "Cartridge.MD5" "d597d35c6022c590d6e75e865738558a" @@ -16235,8 +12805,6 @@ "Cartridge.MD5" "d6dc9b4508da407e2437bfa4de53d1b2" "Cartridge.Name" "Base Attack (AKA Z-Tack,Laser-Loop,Sky Scrapper) (HomeVision) (PAL) [!]" "Cartridge.Manufacturer" "HomeVision" -"Display.Height" "205" -"Display.YStart" "67" "" "Cartridge.MD5" "d62283aed0f4199adb2333de4c263e9c" @@ -16247,8 +12815,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "229" -"Display.YStart" "44" "" "Cartridge.MD5" "d632b74fea533d593af82cf16e7c5e4a" @@ -16261,22 +12827,15 @@ "Cartridge.ModelNo" "AX-016" "Cartridge.Note" "Use Color/BW switch to change between galactic chart and front views" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "64" "" "Cartridge.MD5" "d65028524761ef52fbbdebab46f79d0f" "Cartridge.Name" "Galaxian (1983) (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "d65900fefa7dc18ac3ad99c213e2fa4e" "Cartridge.Name" "Grid and Purple Dot Demo (PD)" -"Display.Height" "194" -"Display.YStart" "36" "" "Cartridge.MD5" "d6d5dd8fd322d3cf874e651e7b6c1657" @@ -16288,9 +12847,6 @@ "Cartridge.Manufacturer" "Spectravideo" "Cartridge.ModelNo" "SA-202" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "d69559f9c9dc6ef528d841bf9d91b275" @@ -16310,7 +12866,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-001" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "27" "" "Cartridge.MD5" "d74a81fcd89c5cf0bd4c88eb207ebd62" @@ -16329,10 +12884,7 @@ "Cartridge.MD5" "d82c8a58098a6b46c5b81c16180354d1" "Cartridge.Name" "Climber 5 (Prototype) (30-10-2002) (Dennis Debro)" -"Display.YStart" "32" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" +"Emulation.HmoveBlanks" "NO" "" "Cartridge.MD5" "d7f5bf138cfc7feab7b8ef1534c8b477" @@ -16354,13 +12906,10 @@ "Cartridge.MD5" "d816fea559b47f9a672604df06f9d2e3" "Cartridge.Name" "Fun with Numbers (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "22" "" "Cartridge.MD5" "d81bb6965e6c99b3be99ffd8978740e4" "Cartridge.Name" "Gunfight 2600 - The Final Kernel Part 3 (MP)" -"Display.YStart" "35" -"Display.Height" "198" "" "Cartridge.MD5" "d8295eff5dcc43360afa87221ea6021f" @@ -16371,8 +12920,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "209" -"Display.YStart" "64" "" "Cartridge.MD5" "d82675ce67caf16afe5ed6b6fac8aa37" @@ -16393,8 +12940,6 @@ "Cartridge.MD5" "d85f1e35c5445ac898746719a3d93f09" "Cartridge.Name" "Tom's Eierjagd (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "217" -"Display.YStart" "59" "" "Cartridge.MD5" "d8df256c0d89e494a9fb3e9abb8e44ac" @@ -16402,22 +12947,16 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3312" "Cartridge.Rarity" "Rare" -"Display.Height" "230" -"Display.YStart" "50" "" "Cartridge.MD5" "d8acaa980cda94b65066568dd04d9eb0" "Cartridge.Name" "Sea Hunt (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "197" -"Display.YStart" "44" "" "Cartridge.MD5" "d89fedded0436fdeda7c3c37e2fb7cf1" "Cartridge.Name" "Surround (1978) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "226" -"Display.YStart" "45" "" "Cartridge.MD5" "d88691c995008b9ab61a44bb686b32e4" @@ -16430,7 +12969,6 @@ "Cartridge.MD5" "d8e4c8e2d210270cd1e0f6d1b4582b91" "Cartridge.Name" "Subterrenea (1983) (Imagic) (PAL) [a1][!]" -"Display.YStart" "54" "" "Cartridge.MD5" "d9b49f0678776e04916fa5478685a819" @@ -16438,8 +12976,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Height" "197" -"Display.YStart" "64" "" "Cartridge.MD5" "d9548ad44e67edec202d1b8b325e5adf" @@ -16452,10 +12988,6 @@ "Cartridge.MD5" "d912312349d90e9d41a9db0d5cd3db70" "Cartridge.Name" "Star Voyager (CCE) [p1]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "d97e3d0b4575ce0b9a6132e19cfeac6e" @@ -16482,10 +13014,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26129" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "61" "Display.Phosphor" "Yes" "" @@ -16494,8 +13022,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-027" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "da64f33d0521d5c9958e5d2d4434ff95" @@ -16507,10 +13033,6 @@ "Cartridge.Manufacturer" "Absolute" "Cartridge.ModelNo" "AG-041" "Cartridge.Rarity" "Rare" -"Display.Height" "182" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "da79aad11572c80a96e261e4ac6392d0" @@ -16518,8 +13040,6 @@ "Cartridge.Manufacturer" "Salu" "Cartridge.Rarity" "Extremely Rare" "Console.SwapPorts" "Yes" -"Display.Height" "219" -"Display.YStart" "58" "Display.Phosphor" "Yes" "Console.SwapPorts" "Yes" "" @@ -16532,8 +13052,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Driving" "Controller.Right" "Driving" -"Display.Height" "205" -"Display.YStart" "30" "" "Cartridge.MD5" "dac5c0fe74531f077c105b396874a9f1" @@ -16541,8 +13059,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2680" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "daef7d8e5a09981c4aa81573d4dbb380" @@ -16550,10 +13066,6 @@ "Cartridge.Manufacturer" "Adam Thornton" "Cartridge.Note" "Hack of Dark Mage by SuperCharger" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "48" "Display.Phosphor" "Yes" "" @@ -16562,16 +13074,10 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11005" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "e2846af3e4d172b251ab77cbdd01761e" "Cartridge.Name" "Adventure Plus (2003) (Steve Engelhardt) (Adventure Hack)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "e1a51690792838c5c687da80cd764d78" @@ -16582,8 +13088,6 @@ "Cartridge.Name" "Arcade Golf (1979) (Sears)" "Cartridge.ModelNo" "CX2626 / 99829 / 75116" "Cartridge.Rarity" "Uncommon" -"Display.Height" "219" -"Display.YStart" "40" "" "Cartridge.MD5" "de78b3a064d374390ac0710f95edde92" @@ -16591,7 +13095,6 @@ "Cartridge.Manufacturer" "Bomb" "Cartridge.ModelNo" "CA281" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "203" "" "Cartridge.MD5" "dd7884b4f93cab423ac471aa1935e3df" @@ -16615,19 +13118,11 @@ "Cartridge.Name" "Dark Mage (4K) (Greg Troutman) (PD)" "Cartridge.Manufacturer" "Greg Troutman" "Cartridge.Rarity" "New Release" -"Display.Height" "190" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "48" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "db4eb44bc5d652d9192451383d3249fc" "Cartridge.Name" "Mountain King (1983) (CBS Electronics) [!]" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "47" -"Display.Height" "186" "Display.Phosphor" "Yes" "" @@ -16636,8 +13131,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.YStart" "25" "" "Cartridge.MD5" "dba2692a216cb6c262c78f8b111a813e" @@ -16658,8 +13151,6 @@ "Cartridge.Manufacturer" "Kyle Pittman" "Cartridge.Note" "Hack of Adventures of Tron (Mattel)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "180" -"Display.YStart" "46" "" "Cartridge.MD5" "dbabb80e92ff18d8eecf615c0539151e" @@ -16671,7 +13162,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2631" "Cartridge.Rarity" "Common" -"Display.YStart" "38" "" "Cartridge.MD5" "dcc2956c7a39fdbf1e861fc5c595da0d" @@ -16679,8 +13169,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5664" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.YStart" "41" "" "Cartridge.MD5" "dc13df8420ec69841a7c51e41b9fbba5" @@ -16694,17 +13182,11 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Controller.Left" "Paddles" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "dbdd21e1ee3d72119e8cd14d943c585b" "Cartridge.Name" "Slot Machine (1979) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "44" "" "Cartridge.MD5" "dca941dab5c6f859b71883b13ade9744" @@ -16713,8 +13195,6 @@ "Cartridge.MD5" "dc81c4805bf23959fcf2c649700b82bf" "Cartridge.Name" "No Escape! (1983) (Imagic) (PAL) [!]" -"Display.YStart" "50" -"Display.Height" "230" "" "Cartridge.MD5" "dc6aa0bb21a6e66e80e75ba5edc5c0dd" @@ -16726,8 +13206,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3000" "Cartridge.Rarity" "Rare" -"Display.YStart" "54" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -16743,14 +13221,10 @@ "Cartridge.MD5" "dd08e18cfee87a0e7fc19a684b36e124" "Cartridge.Name" "Kangaroo (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "64" -"Display.Height" "200" "" "Cartridge.MD5" "dd17711a30ad60109c8beace0d4a76e8" "Cartridge.Name" "Karate (1982) (PAL) [p1][!]" -"Display.YStart" "27" -"Display.Height" "217" "" "Cartridge.MD5" "dd0cbe5351551a538414fb9e37fc56e8" @@ -16758,8 +13232,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99006" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "250" -"Display.YStart" "55" "" "Cartridge.MD5" "dd10b5ee37fdbf909423f2998a1f3179" @@ -16771,8 +13243,6 @@ "Cartridge.Manufacturer" "Xonox" "Cartridge.ModelNo" "99005" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "225" -"Display.YStart" "25" "" "Cartridge.MD5" "dd4f4e0fbd81762533e39e6f5b55bb3a" @@ -16782,17 +13252,11 @@ "Cartridge.MD5" "de29e46dbea003c3c09c892d668b9413" "Cartridge.Name" "Carnival (1983) (CBS Electronics) (PAL) [!]" "Cartridge.Manufacturer" "CBS Electronics" -"Display.Height" "212" -"Display.YStart" "50" "" "Cartridge.MD5" "de1e9fb700baf8d2e5ae242bffe2dbda" "Cartridge.Name" "Commando (1988) (Activision) (PAL) [!]" "Cartridge.Manufacturer" "Activision" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "dd8a2124d4eda200df715c698a6ea887" @@ -16800,16 +13264,10 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "ddd1efc1862cd3eb3baf4cba81ff5050" "Cartridge.Name" "Max3 (2001) (Maxime Beauvais) (PD)" -"Display.YStart" "37" -"Display.Height" "191" "" "Cartridge.MD5" "dda23757407c4e217f64962c87ad0c82" @@ -16819,10 +13277,6 @@ "Cartridge.MD5" "dd92d6ad50976f881d86b52d38616118" "Cartridge.Name" "River Raid (SpkSoft) [h1]" "Cartridge.Manufacturer" "SpkSoft" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "de0173ed6be9de6fd049803811e5f1a8" @@ -16843,18 +13297,12 @@ "Cartridge.MD5" "de24f700fd28d5b8381de13abd091db9" "Cartridge.Name" "Plaque Attack (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "de61a0b171e909a5a4cfcf81d146dbcb" "Cartridge.Name" "Dschungle Boy (AKA Tom Boy) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "55" "" "Cartridge.MD5" "de4436eaa41e5d7b7609512632b90078" @@ -16862,10 +13310,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-014" "Cartridge.Rarity" "Uncommon" -"Display.Height" "189" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "46" "" "Cartridge.MD5" "de3d0e37729d85afcb25a8d052a6e236" @@ -16879,18 +13323,12 @@ "Cartridge.MD5" "de62f8a30298e2325249fe112ecb5c10" "Cartridge.Name" "Enduro (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "175" -"Display.Width" "140" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "df40af244a8d68b492bfba9e97dea4d6" "Cartridge.Name" "Asteroids 2 (Asteroids Hack)" "Cartridge.Manufacturer" "Franklin Cruz" "Cartridge.Note" "Hack of Asteroids (Atari)" -"Display.Height" "192" -"Display.YStart" "37" "Emulation.HmoveBlanks" "No" "Display.Phosphor" "Yes" "" @@ -16898,18 +13336,12 @@ "Cartridge.MD5" "dea0ade296f7093e71185e802b500db8" "Cartridge.Name" "Fishing Derby (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "de7a64108074098ba333cc0c70eef18a" "Cartridge.Name" "Nuts (Technovision) (PAL) [a1]" "Cartridge.Manufacturer" "Technovision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.YStart" "38" "" "Cartridge.MD5" "de7bca4e569ad9d3fd08ff1395e53d2d" @@ -16918,7 +13350,6 @@ "Cartridge.Note" "Won't work with Stella < V1.2, supports Booster Grip" "Cartridge.Rarity" "New Release" "Controller.Left" "Booster-Grip" -"Display.Height" "201" "" "Cartridge.MD5" "deb39482e77f984d4ce73be9fd8adabd" @@ -16926,10 +13357,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AK-048-04" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "44" "" "Cartridge.MD5" "ded26e1cb17f875a9c17515c900f9933" @@ -16939,8 +13366,6 @@ "Cartridge.MD5" "df2745d585238780101df812d00b49f4" "Cartridge.Name" "Space Tunnel (Cooper Black) (PAL) [p1]" "Cartridge.Manufacturer" "Cooper Black" -"Display.Height" "233" -"Display.YStart" "36" "" "Cartridge.MD5" "df4aea767cdf6a3f138255092e84d713" @@ -16959,10 +13384,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2624" "Cartridge.Rarity" "Common" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "e0de3773f5b867795db557be7b8a703e" @@ -16972,8 +13393,6 @@ "Cartridge.MD5" "e02156294393818ff872d4314fc2f38e" "Cartridge.Name" "Dice Puzzle (Sancho) (PAL) [!]" "Cartridge.Manufacturer" "Panda" -"Display.YStart" "40" -"Display.Height" "244" "Display.Phosphor" "Yes" "" @@ -16983,8 +13402,6 @@ "Cartridge.MD5" "dfcdd6f593bb7b05dbc2e8e1fc6ee0de" "Cartridge.Name" "Gunfight 2600 - Scenarios complete (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "df94affaece8b9a02da82e971ea9c0ca" @@ -16993,7 +13410,6 @@ "Cartridge.MD5" "df753cb87d3af4d03f694ab848638108" "Cartridge.Name" "Solar Fox (1983) (CBS Electronics) (PAL) [a1][!]" -"Display.YStart" "53" "" "Cartridge.MD5" "df6a28a89600affe36d94394ef597214" @@ -17001,15 +13417,10 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2002" "Cartridge.Rarity" "Uncommon" -"Display.Height" "183" "" "Cartridge.MD5" "dfad86dd85a11c80259f3ddb6151f48f" "Cartridge.Name" "My Golf (1990)" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "dfafa3fa58f5cc3f0342cca475df6095" @@ -17023,8 +13434,6 @@ "Cartridge.MD5" "dfe6aa7443bb813cefa35a4cf4887422" "Cartridge.Name" "This Planet Sucks (Greg Troutman) [a1]" "Cartridge.Rarity" "New Release" -"Display.Height" "205" -"Display.YStart" "40" "" "Cartridge.MD5" "e01e00504e6d4b88fa743c0bbe8a96e5" @@ -17034,7 +13443,6 @@ "Cartridge.MD5" "e020f612255e266a8a6a9795a4df0c0f" "Cartridge.Name" "Universal Chaos (Telegames) (PAL) [!]" -"Display.YStart" "46" "" "Cartridge.MD5" "e0cf2dcc4c1348c468f5bb1e421c9164" @@ -17050,22 +13458,15 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2487" "Cartridge.Rarity" "Uncommon" -"Display.YStart" "53" "" "Cartridge.MD5" "e0221c95aa657f5764eeeb64c8429258" "Cartridge.Name" "Tomb Raider 2600 [REV 02] (Montezuma's Revenge Hack)" -"Display.Height" "192" -"Display.YStart" "38" "" "Cartridge.MD5" "e0b24c3f40a46cda52e29835ab7ad660" "Cartridge.Name" "Top Gun (AKA Air Patrol) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "227" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "e0eff071f578ecf19edc2ab276644e46" @@ -17077,9 +13478,6 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "C-839" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "214" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -17088,8 +13486,6 @@ "Cartridge.Manufacturer" "Rob Kudla" "Cartridge.Note" "Hack of Space Invaders (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "e10d2c785aadb42c06390fae0d92f282" @@ -17097,8 +13493,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5910" "Cartridge.Rarity" "Uncommon" -"Display.Height" "249" -"Display.YStart" "8" "" "Cartridge.MD5" "e12e32dee68201b6765fcd0ed54d6646" @@ -17109,14 +13503,10 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "256" -"Display.YStart" "36" "" "Cartridge.MD5" "e150f0d14f013a104b032305c0ce23ef" "Cartridge.Name" "China Syndrome (1982) (Spectravideo) (PAL) [!]" -"Display.YStart" "50" -"Display.Height" "217" "Display.Phosphor" "Yes" "" @@ -17127,10 +13517,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "e18abe87035379c56b435bfe8175077b" @@ -17145,10 +13531,6 @@ "Cartridge.Name" "Tuby Bird (AKA Vogel Flieh) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.ModelNo" "SS-020" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "e171558c51bb3bac97bfa79fa2c1a19c" @@ -17169,10 +13551,6 @@ "Cartridge.MD5" "e1d5c8213e82820128fa9c4775f1e166" "Cartridge.Name" "Jungle King (2003) (Jess Ragan) (Jungle Hunt Hack)" -"Display.YStart" "38" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "e1e09e2f280e8e142121a377d0dc1b46" @@ -17180,7 +13558,6 @@ "Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Note" "Won't work with Stella < V1.2, bugfixed" "Cartridge.Rarity" "New Release" -"Display.Height" "201" "" "Cartridge.MD5" "e24d7d879281ffec0641e9c3f52e505a" @@ -17188,9 +13565,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5590" "Cartridge.Rarity" "Prototype" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "e2389c0be5b5b84e0d3ca36ec7e67514" @@ -17202,10 +13576,6 @@ "Cartridge.MD5" "e28113d10c0c14cc3b5f430b0d142fcb" "Cartridge.Name" "Keystone Kapers (CCE) [a1]" "Cartridge.Manufacturer" "CCE" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "e275cbe7d4e11e62c3bfcfb38fca3d49" @@ -17213,10 +13583,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5658" "Cartridge.Rarity" "Common" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "e2c89f270f72cd256ed667507fa038a2" @@ -17224,10 +13590,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4101" "Cartridge.Rarity" "Rare" -"Display.Height" "204" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "e2b682f6e6d76b35c180c7d847e93b4f" @@ -17236,8 +13598,6 @@ "Cartridge.MD5" "e2ca84a2bb63d1a210ebb659929747a9" "Cartridge.Name" "Cosmic Creeps (1982) (Telesys) (PAL) [!]" -"Display.YStart" "57" -"Display.Height" "212" "Display.Phosphor" "Yes" "" @@ -17246,10 +13606,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-108-04" "Cartridge.Rarity" "Rare" -"Display.Height" "187" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "48" "" "Cartridge.MD5" "e2cff4a96b91fcf5de694b7480a612ae" @@ -17257,10 +13613,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-011" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "212" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "60" "Display.Phosphor" "Yes" "" @@ -17269,23 +13621,16 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AB-035-04" "Cartridge.Rarity" "Rare" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "e923001015bedd7901569f035d9c592c" "Cartridge.Name" "Adventure II (Adventure Hack)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "e5fcc62e1d73706be7b895e887e90f84" -"Cartridge.Name" "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "39" +"Cartridge.Name" "Air-Sea Battle (1977) (Atari) (PAL) [p1][!]" +"Display.Height" "260" "" "Cartridge.MD5" "e39a13b13dc82c5fdbfbbfd55ba1230e" @@ -17299,8 +13644,6 @@ "Cartridge.MD5" "e37c8055d70979af354251ebe9f1b7dd" "Cartridge.Name" "Mega Funpak - Pac-Man, Planet Patrol, Skeet Shoot, Battles of Gorf (HES) (PAL) [!]" "Cartridge.Manufacturer" "HES" -"Display.YStart" "37" -"Display.Height" "240" "" "Cartridge.MD5" "e377c3af4f54a51b85efe37d4b7029e6" @@ -17311,8 +13654,6 @@ "Cartridge.Name" "Star Ship - Outer Space (1977)" "Cartridge.ModelNo" "CX2603 / 6699803 / 4975601" "Cartridge.Rarity" "Rare" -"Display.Height" "219" -"Display.YStart" "32" "" "Cartridge.MD5" "e5ecd78edd24326a968809decbc7b916" @@ -17332,8 +13673,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11004" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.YStart" "42" "" "Cartridge.MD5" "e4bff1d5df70163c0428a1ead309c22d" @@ -17341,13 +13680,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2609 / 4975186" "Cartridge.Rarity" "Common" -"Display.Height" "256" "" "Cartridge.MD5" "e4a0b28befaaa2915df1fa01238b1e29" "Cartridge.Name" "Gunfight 2600 - Red River (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "e45449bde2f467a52da36ddd5b427d76" @@ -17356,7 +13692,6 @@ "Cartridge.MD5" "e3c35eac234537396a865d23bafb1c84" "Cartridge.Name" "Nuts (Technovision) (PAL) [!]" -"Display.YStart" "42" "" "Cartridge.MD5" "e3c0451d29dad724231bc5818ec4bae0" @@ -17369,39 +13704,23 @@ "Cartridge.Note" "Uses Keypad Controllers" "Controller.Left" "KEYBOARD" "Cartridge.Rarity" "Prototype" -"Display.YStart" "36" "" "Cartridge.MD5" "e3ed4ba3361756970f076e46e9cad1d2" "Cartridge.Name" "Tennis (1981) (Activision) (PAL) [p1][o1]" "Cartridge.Manufacturer" "Activision" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "e42b937c30c617241ca9e01e4510c3f6" "Cartridge.Name" "Pitfall! (No Walls Hack)" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "40" "" "Cartridge.MD5" "e4519d584bb1663ff2734f16c983fa2b" "Cartridge.Name" "Sorcerer's Apprentice (1983) (Atari) (PAL) [a1][!]" -"Display.YStart" "45" -"Display.Height" "229" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "e4b12deaafd1dbf5ac31afe4b8e9c233" "Cartridge.Name" "Lord of the Rings - Fellowship of the Ring by Adam Thornton (Dark Mage Hack) (PD) [a1]" -"Display.YStart" "38" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" @@ -17411,8 +13730,6 @@ "Cartridge.MD5" "e4c2077a18e3c27f4819aa7757903aa0" "Cartridge.Name" "Many Blue Bars Demo (PD)" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "e4c666ca0c36928b95b13d33474dbb44" @@ -17420,17 +13737,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "172" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "e505bd8e59e31aaed20718d47b15c61b" "Cartridge.Name" "Condor Attack (High-Score Games) (PAL) [!]" "Cartridge.Manufacturer" "High-Score Games" -"Display.YStart" "60" "" "Cartridge.MD5" "e549f1178e038fa88dc6d657dc441146" @@ -17438,7 +13750,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2625 / 6699827 / 4975114" "Cartridge.Rarity" "Common" -"Display.YStart" "36" "" "Cartridge.MD5" "e51030251e440cffaab1ac63438b44ae" @@ -17455,10 +13766,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Prototype" "Controller.Left" "Paddles" -"Display.Height" "198" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "e556e07cc06c803f2955986f53ef63ed" @@ -17466,18 +13773,10 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2665" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "e558be88eef569f33716e8e330d2f5bc" "Cartridge.Name" "Keystone Kapers (Shock Vision) [!]" -"Display.YStart" "39" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "e56da674188ba2f02c7a0a343a01236f" @@ -17491,8 +13790,6 @@ "Cartridge.MD5" "e5d72ff8bab4450be57785cc9e83f3c0" "Cartridge.Name" "Kung Fu Superkicks (Telegames) (PAL) [!]" -"Display.YStart" "59" -"Display.Height" "195" "" "Cartridge.MD5" "e5f17b3e62a21d0df1ca9aee1aa8c7c5" @@ -17500,7 +13797,6 @@ "Cartridge.Manufacturer" "CommaVid" "Cartridge.ModelNo" "CM-003" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "Display.Phosphor" "Yes" "" @@ -17516,12 +13812,10 @@ "Cartridge.MD5" "e61210293b14c9c4ecc91705072c6a7e" "Cartridge.Name" "Bugs (1983) (Gameworld) (PAL) [!]" -"Display.YStart" "42" "" "Cartridge.MD5" "e600f5e98a20fafa47676198efe6834d" "Cartridge.Name" "Gyruss (1984) (Parker Bros) (PAL) [!]" -"Display.Height" "250" "Display.Phosphor" "YES" "" @@ -17534,7 +13828,6 @@ "Cartridge.Manufacturer" "Paul Slocum" "Cartridge.Note" "Hack of Combat (1977) (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.YStart" "35" "" "Cartridge.MD5" "e63a87c231ee9a506f9599aa4ef7dfb9" @@ -17542,23 +13835,16 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-003" "Cartridge.Rarity" "Rare" -"Display.YStart" "22" "" "Cartridge.MD5" "e64a8008812327853877a37befeb6465" "Cartridge.Name" "Gauntlet (1983) (Answer Software)" "Cartridge.ModelNo" "ASC1002" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "201" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "e6f49a1053c79211f82be4d90dc9fe3d" "Cartridge.Name" "Gunfight 2600 - Little progress... (2001) (MP)" -"Display.YStart" "35" -"Display.Height" "195" "" "Cartridge.MD5" "e6e5bb0e4f4350da573023256268313d" @@ -17570,8 +13856,6 @@ "Cartridge.MD5" "e6508b878145187b87b9cded097293e7" "Cartridge.Name" "Oystron (V2.8) (Piero Cavina) (PD)" "Cartridge.Rarity" "New Release" -"Display.YStart" "35" -"Display.Height" "197" "" "Cartridge.MD5" "e6de4ef9ab62e2196962aa6b0dedac59" @@ -17581,10 +13865,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "e66e5af5dea661d58420088368e4ef0d" @@ -17592,10 +13872,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-011" "Cartridge.Rarity" "Uncommon" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "e72ee2d6e501f07ec5e8a0efbe520bee" @@ -17603,8 +13879,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "O3211" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.YStart" "64" "" "Cartridge.MD5" "e72eb8d4410152bdcb69e7fba327b420" @@ -17612,18 +13886,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26136" "Cartridge.Rarity" "Uncommon" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "e7dd8c2e6c100044002c1086d02b366e" "Cartridge.Name" "Barnstorming (1982) (Activision) (PAL) [!]" -"Display.YStart" "64" -"Display.Width" "152" -"Display.XStart" "8" -"Display.Height" "220" "" "Cartridge.MD5" "e7864caaf9ec49ed67b1904ce8602690" @@ -17633,7 +13899,6 @@ "Cartridge.MD5" "e784a9d26707cfcd170a4c1c60422a72" "Cartridge.Name" "Gefecht im All (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.YStart" "64" "" "Cartridge.MD5" "e74022cfe31ec8908844718dfbdedf7a" @@ -17645,9 +13910,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5900" "Cartridge.Rarity" "Rare" -"Display.Height" "240" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "e79c4432c518ca3e497f673a167ee526" @@ -17656,8 +13918,6 @@ "Cartridge.MD5" "e7a758bb0b43d0f7004e92b9abf4bc83" "Cartridge.Name" "Troll's Adventure (Adventure Hack)" -"Display.YStart" "35" -"Display.Height" "194" "" "Cartridge.MD5" "e8e7b9bdf4bf04930c2bcaa0278ee637" @@ -17673,7 +13933,6 @@ "Cartridge.MD5" "e7f005ddb6902c648de098511f6ae2e5" "Cartridge.Name" "CompuMate (Spectravideo & Universum) (PAL) [!]" "Cartridge.Manufacturer" "Spectravideo & Universum" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -17683,12 +13942,12 @@ "" "Cartridge.MD5" "e8aa36e3d49e9bfa654c25dcc19c74e6" -"Cartridge.Name" "Combat (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2601" +"Cartridge.Name" "Combat (Atari) (PAL) [!]" "Cartridge.Rarity" "Common" -"Display.Height" "256" -"Display.YStart" "39" +"Display.YStart" "36" +"Display.Height" "260" "" "Cartridge.MD5" "e847e1b57a704ad9f029cc2d564bde11" @@ -17696,14 +13955,11 @@ "" "Cartridge.MD5" "e823b13751e4388f1f2a375d3560a8d7" -"Cartridge.Name" "Frogger Preview (1982) (Starpath) [a1]" "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" +"Cartridge.Name" "Frogger Preview (1982) (Starpath) [a1]" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" +"Display.YStart" "31" "" "Cartridge.MD5" "e88340f5bd2f03e2e9ce5ecfa9c644f5" @@ -17711,10 +13967,6 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5663" "Cartridge.Rarity" "Common" -"Display.Height" "196" -"Display.YStart" "64" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "e879b7093ac4cfad74c88d636ca97d00" @@ -17734,7 +13986,6 @@ "Cartridge.Name" "Mario Bros (1983) (Atari)" "Cartridge.ModelNo" "CX2697" "Cartridge.Rarity" "Uncommon" -"Display.Height" "195" "" "Cartridge.MD5" "e91d2ecf8803ae52b55bbf105af04d4b" @@ -17742,8 +13993,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2655 / 4975167" "Cartridge.Rarity" "Common" -"Display.Height" "230" -"Display.YStart" "45" "Display.Phosphor" "Yes" "" @@ -17760,16 +14009,10 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11012" "Cartridge.Rarity" "Rare" -"Display.Height" "187" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "64" "" "Cartridge.MD5" "e9be3e8e4a7e73dd63ed4235a3a1a25f" "Cartridge.Name" "MMetall (Miniature Golf Hack)" -"Display.YStart" "41" -"Display.Height" "218" "" "Cartridge.MD5" "e957eb4612d6bd5940d3492dfa749668" @@ -17801,8 +14044,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26122" "Cartridge.Rarity" "Prototype" -"Display.Height" "219" -"Display.YStart" "37" "" "Cartridge.MD5" "ea6d40db5498d6386571a76df448aa4c" @@ -17814,8 +14055,6 @@ "Cartridge.Manufacturer" "Sancho" "Cartridge.ModelNo" "TEC004" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "256" -"Display.YStart" "43" "" "Cartridge.MD5" "eae0c06ee61c63b81cd016096fc901b0" @@ -17835,8 +14074,6 @@ "Cartridge.MD5" "f8c1c4a41303bd40b0d6c81bfaf8573b" "Cartridge.Name" "2 Pak Special Blue - Dungeon Master,Creature Strike (1992) (PAL) [!]" -"Display.YStart" "42" -"Display.Height" "240" "" "Cartridge.MD5" "f6efa00ae99aaf33e427b674bcfd834d" @@ -17848,17 +14085,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2618 / 4975123" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "f066bea7ab0a37b83c83c924a87c5b67" "Cartridge.Name" "Air Raiders (1982) (Mattel) [h1]" -"Display.YStart" "35" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "ee6665683ebdb539e89ba620981cb0f6" @@ -17887,10 +14117,6 @@ "Cartridge.MD5" "eb46e99ec15858f8cd8c91cef384ce09" "Cartridge.Name" "Ground Zero (Rainbow Vision) (PAL) [!]" "Cartridge.Manufacturer" "Rainbow Vision" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "eb4252faff7a4f2ba5284a98b8f78d1a" @@ -17902,10 +14128,6 @@ "Cartridge.MD5" "eb503cc64c3560cd78b7051188b7ba56" "Cartridge.Name" "Moto Laser (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "eb6d6e22a16f30687ade526d7a6f05c5" @@ -17913,10 +14135,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26150" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "53" "" "Cartridge.MD5" "eb634650c3912132092b7aee540bbce3" @@ -17924,10 +14142,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2640" "Cartridge.Rarity" "Uncommon" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" "Display.Phosphor" "Yes" "" @@ -17936,16 +14150,10 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "AG-009" "Cartridge.Rarity" "Uncommon" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "ed014beeeb77dbb2bbcf9b5f6850b2f4" "Cartridge.Name" "Green Bar Text Demo (PD)" -"Display.Height" "194" -"Display.YStart" "35" "" "Cartridge.MD5" "ec407a206b718a0a9f69b03e920a0185" @@ -17956,14 +14164,11 @@ "Cartridge.MD5" "ebf9038e927e6a0db3e0d170c59911e6" "Cartridge.Name" "Pac-2600 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "202" "" "Cartridge.MD5" "eb9712e423b57f0b07ccd315bb9abf61" "Cartridge.Name" "Qb (V2.04) (PAL) (2001) (Retroactive)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -17972,16 +14177,11 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4102" "Cartridge.Rarity" "Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "eb9f8b84c193d9d93a58fca112aa39ed" "Cartridge.Name" "Register Twiddler Demo (PD)" -"Display.YStart" "36" "" "Cartridge.MD5" "ebcbc8a181a738e13df6216e5c329230" @@ -17989,10 +14189,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "ec26fdc87b1d35f1d60ea89cda4f4dd4" @@ -18011,19 +14207,11 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11005" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "ec5d04b7e6cc6641d74d3ba7bb41ebc9" "Cartridge.Name" "Pro Wrestling (Absolute-Activision) (PAL) [!]" "Cartridge.Manufacturer" "Absolute-Activision" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "ec5c861b487a5075876ab01155e74c6c" @@ -18031,17 +14219,12 @@ "Cartridge.Manufacturer" "Apollo" "Cartridge.ModelNo" "AP 2001" "Cartridge.Rarity" "Uncommon" -"Display.Height" "225" "" "Cartridge.MD5" "ece908d77ab944f7bac84322b9973549" "Cartridge.Name" "Tom Boy (Suntek) (PAL)" "Cartridge.Manufacturer" "Suntek" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "28" "" "Cartridge.MD5" "ed2218b3075d15eaa34e3356025ccca3" @@ -18049,29 +14232,22 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2635 / 4975157" "Cartridge.Rarity" "Uncommon" -"Display.Height" "188" -"Display.YStart" "64" "" "Cartridge.MD5" "ed0ab909cf7b30aff6fc28c3a4660b8e" "Cartridge.Name" "Nightmare (Sancho)" "Cartridge.ModelNo" "TEC004 / 105" "Cartridge.Rarity" "Rare" -"Display.Height" "205" -"Display.YStart" "37" "" "Cartridge.MD5" "ed1a784875538c7871d035b7a98c2433" "Cartridge.Name" "Save Our Ship (Technovision) [a1]" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "214" "" "Cartridge.MD5" "ed1492d4cafd7ebf064f0c933249f5b0" "Cartridge.Name" "Video Cube (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "200" -"Display.YStart" "38" "" "Cartridge.MD5" "ed5ccfc93ad4561075436ee42a15438a" @@ -18079,8 +14255,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2626" "Cartridge.Rarity" "Uncommon" -"Display.Height" "256" -"Display.YStart" "45" "" "Cartridge.MD5" "ed9999911b406dc5f75c850dcc17bdf4" @@ -18091,18 +14265,11 @@ "Cartridge.Name" "Polo (Atari) (Prototype) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "edf69b123e06eaf8663cc78d8aeba06e" "Cartridge.Name" "River Raid (SpkSoft 98) [h1]" "Cartridge.Manufacturer" "SpkSoft 98" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "30" "" "Cartridge.MD5" "ee4c186123d31a279ed7a84d3578df23" @@ -18112,10 +14279,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "234" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "35" "" "Cartridge.MD5" "ee659ae50e9df886ac4f8d7ad10d046a" @@ -18131,12 +14294,11 @@ "Cartridge.Rarity" "Prototype" "Controller.Left" "Mindlink" "Controller.Right" "None" -"Display.Height" "196" -"Display.YStart" "36" "" "Cartridge.MD5" "eeb92f3f46df841487d1504f2896d61a" "Cartridge.Name" "Corys Adventure (Cody Pittman) (PD)" +"Display.YStart" "33" "" "Cartridge.MD5" "ee84bdc5dae268e227e407c7b5e6b6b7" @@ -18146,10 +14308,6 @@ "Cartridge.MD5" "ee6cbedf6c0aac90faa0a8dbc093ffbe" "Cartridge.Name" "My Golf (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "196" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "ee67dc0b01746372d2b983d88f48e24f" @@ -18161,9 +14319,6 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-007" "Cartridge.Rarity" "Extremely Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "62" "" "Cartridge.MD5" "eea0da9b987d661264cce69a7c13c3bd" @@ -18193,10 +14348,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-005" "Cartridge.Rarity" "Uncommon" -"Display.Height" "206" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "eee7695ae3eea7818321df0b790b31f3" @@ -18207,12 +14358,11 @@ "" "Cartridge.MD5" "ef5c02c95a1e7ed24f24193935755cd3" -"Cartridge.Name" "Jammed Demo (1999) (Hozer Video Games)" "Cartridge.Manufacturer" "Thomas Jentzsch" +"Cartridge.Name" "Jammed Demo (1999) (Hozer Video Games)" "Cartridge.Note" "Won't work with Stella < V1.2" "Cartridge.Rarity" "New Release" -"Display.Height" "203" -"Display.YStart" "29" +"Display.YStart" "24" "" "Cartridge.MD5" "ef3a4f64b6494ba770862768caf04b86" @@ -18220,16 +14370,10 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-034-04" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "ef60b06fddb675b0d783afbfa5fc5232" "Cartridge.Name" "Many Blue Bars and Text Demo 4 (PD)" -"Display.Height" "194" -"Display.YStart" "36" "" "Cartridge.MD5" "efa1098c7d091b940c2543abe372f036" @@ -18237,15 +14381,12 @@ "Cartridge.Manufacturer" "Scott Stilphen" "Cartridge.Note" "Hack of E.T. The Extra-Terrestrial (Atari)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "190" -"Display.YStart" "36" "" "Cartridge.MD5" "ef71e9fb0d8d477226d8d42261fbf0a7" "Cartridge.Name" "Multi-Sprite Demo V2.0 (Piero Cavina) (PD)" "Cartridge.Manufacturer" "Piero Cavina" "Cartridge.Rarity" "New Release" -"Display.Height" "194" "" "Cartridge.MD5" "ef76ea05655a0b62cb1018c92b9b4b7d" @@ -18258,37 +14399,26 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "f032b2f2d8323404a6b4541f92dd1825" "Cartridge.Name" "Many Blue Bars and Text Demo 3 (PD)" -"Display.Height" "193" -"Display.YStart" "36" "" "Cartridge.MD5" "efd387430a35a659ff569a9a0ec22209" "Cartridge.Name" "Milpede (Atari) (Prototype)" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.YStart" "50" "" "Cartridge.MD5" "efb47d70b2965ce689e2c5757616b286" "Cartridge.Name" "Time Test Demo (Eckhard Stolberg) (PAL) (PD)" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "efffafc17b7cb01b9ca35324aa767364" "Cartridge.Name" "See Saw (Cooper Black) (PAL) [p1][!]" "Cartridge.Manufacturer" "Cooper Black" -"Display.Height" "190" -"Display.YStart" "42" "" "Cartridge.MD5" "efefc02bbc5258815457f7a5b8d8750a" @@ -18296,14 +14426,11 @@ "Cartridge.Manufacturer" "CBS Electronics" "Cartridge.ModelNo" "4L-2520" "Cartridge.Rarity" "Rare" -"Display.Height" "153" -"Display.YStart" "67" "" "Cartridge.MD5" "f02ba8b5292bf3017d10553c9b7b2861" "Cartridge.Name" "Xenophobe (1990) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "60" "" "Cartridge.MD5" "f060826626aac9e0d8cda0282f4b7fc3" @@ -18324,10 +14451,6 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11006" "Cartridge.Rarity" "Rare" -"Display.Height" "189" -"Display.Width" "136" -"Display.XStart" "12" -"Display.YStart" "39" "Display.Phosphor" "Yes" "" @@ -18340,10 +14463,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2654 / 4975141" "Cartridge.Rarity" "Common" -"Display.Height" "184" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "38" "" "Cartridge.MD5" "f0b7db930ca0e548c41a97160b9f6275" @@ -18351,10 +14470,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2645 / 6699817 / 4975181" "Cartridge.Rarity" "Uncommon" -"Display.Height" "194" -"Display.Width" "128" -"Display.XStart" "16" -"Display.YStart" "37" "" "Cartridge.MD5" "f1929bb9b5db22d98dd992aa3fe72920" @@ -18366,8 +14481,6 @@ "Cartridge.Manufacturer" "Imagic" "Cartridge.ModelNo" "IA3200" "Cartridge.Rarity" "Common" -"Display.Height" "194" -"Display.YStart" "39" "" "Cartridge.MD5" "f0daaa966199ef2b49403e9a29d12c50" @@ -18381,10 +14494,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "f1127ade54037236e75a133b1dfc389d" @@ -18392,20 +14501,12 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "" "Cartridge.MD5" "f10e3f45fb01416c87e5835ab270b53a" "Cartridge.Name" "Ski Run (Funvision) (PAL) [!]" "Cartridge.ModelNo" "TP-607" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "53" "" "Cartridge.MD5" "f16c709df0a6c52f47ff52b9d95b7d8d" @@ -18423,28 +14524,16 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26129" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "37" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "f14d5e96ec3380aef57a4b70132c6677" "Cartridge.Name" "Pac Kong (Goliath) (PAL) [!]" "Cartridge.Manufacturer" "Goliath" -"Display.Height" "215" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "52" "" "Cartridge.MD5" "f19aba18f86e415812480ad2be221425" "Cartridge.Name" "Solaris Trainer (2002) (Chris Larkin) (Solaris Hack)" -"Display.YStart" "37" -"Display.Height" "196" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "f2d40c70cf3e1d03bc112796315888d9" @@ -18455,7 +14544,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.Height" "246" "" "Cartridge.MD5" "f283cc294ece520c2badf9da20cfc025" @@ -18466,8 +14554,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Keyboard" "Controller.Right" "None" -"Display.Height" "225" -"Display.YStart" "47" "" "Cartridge.MD5" "f280976d69d6e27a48506bd6bad11dcd" @@ -18478,7 +14564,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Keyboard" "Controller.Right" "Keyboard" -"Display.YStart" "38" "" "Cartridge.MD5" "f1beca5a198cf08190487e5c27b8e540" @@ -18490,8 +14575,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2632" "Cartridge.Rarity" "Common" -"Display.Height" "230" -"Display.YStart" "47" "" "Cartridge.MD5" "f1b2ea568b3e156e3f2849dac83591f6" @@ -18516,21 +14599,15 @@ "Console.LeftDifficulty" "A" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "250" -"Display.Width" "152" -"Display.XStart" "8" "Display.Phosphor" "Yes" "" "Cartridge.MD5" "f21813aa050437f0dbc8479864acec6d" "Cartridge.Name" "Sneek 'n Peek (1982) (PAL) [p1][!]" -"Display.Height" "229" -"Display.YStart" "51" "" "Cartridge.MD5" "f240ba9f8092d2e8a4c7d82c554bf509" "Cartridge.Name" "Strahlen der Teufelsvoegel (PAL) [p1]" -"Display.YStart" "64" "" "Cartridge.MD5" "f2e4fb2d3600c0f76d05864e658cc57b" @@ -18545,8 +14622,6 @@ "Cartridge.MD5" "f69d4fcf76942fcd9bdf3fd8fde790fb" "Cartridge.Name" "Aquaventure (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "200" -"Display.YStart" "35" "Emulation.HmoveBlanks" "No" "" @@ -18555,7 +14630,6 @@ "Cartridge.Manufacturer" "Inky" "Cartridge.Note" "Hack of Beany Bopper (1982) (20th Century Fox)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "195" "" "Cartridge.MD5" "f34f08e5eb96e500e851a80be3277a56" @@ -18590,8 +14664,6 @@ "Cartridge.Manufacturer" "Zimag" "Cartridge.ModelNo" "GN-040 / 708-111" "Cartridge.Rarity" "Rare" -"Display.Height" "212" -"Display.YStart" "35" "" "Cartridge.MD5" "f3c431930e035a457fe370ed4d230659" @@ -18599,10 +14671,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-029" "Cartridge.Rarity" "Rare" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "f38358cd8f5ecfedffd5aca1aa939f18" @@ -18610,14 +14678,11 @@ "Cartridge.Manufacturer" "CosmoVision-Universal Gamex" "Cartridge.ModelNo" "GX-001" "Cartridge.Rarity" "Unbelievably Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "f3dfae774f3bd005a026e29894db40d3" "Cartridge.Name" "See Saw (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Height" "196" -"Display.YStart" "64" "" "Cartridge.MD5" "f3f92aad3a335f0a1ead24a0214ff446" @@ -18629,15 +14694,11 @@ "Cartridge.Manufacturer" "Sears" "Cartridge.ModelNo" "CX2647 / 4975412" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "f69bb58b815a6bdca548fa4d5e0d5a75" "Cartridge.Name" "Bowling (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "218" -"Display.YStart" "63" "" "Cartridge.MD5" "f457674cef449cfd85f21db2b4f631a7" @@ -18645,16 +14706,11 @@ "Cartridge.Manufacturer" "US Games" "Cartridge.ModelNo" "VC 1004" "Cartridge.Rarity" "Rare" -"Display.YStart" "32" "" "Cartridge.MD5" "f4469178cd8998cb437fa110a228eaca" "Cartridge.Name" "Frostbite (Digitel) (Brazil) (PAL) [p1][!]" "Cartridge.Manufacturer" "Digitel" -"Display.Height" "195" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "f45644ff82b533a781a1ee50f2e95f3c" @@ -18663,8 +14719,6 @@ "Cartridge.MD5" "f48735115ec302ba8bb2d2f3a442e814" "Cartridge.Name" "Dancing Plates (PAL) [p1][!]" -"Display.YStart" "50" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -18682,7 +14736,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "200" "Display.Phosphor" "Yes" "" @@ -18696,8 +14749,6 @@ "Cartridge.MD5" "f49a34f1fdd7dc147cbf96ce2ce71b76" "Cartridge.Name" "Qb (Special Edition) (PAL) (Retroactive)" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -18711,16 +14762,11 @@ "Cartridge.Manufacturer" "Mythicon" "Cartridge.ModelNo" "MA-1003" "Cartridge.Rarity" "Uncommon" -"Display.Height" "191" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "54" "" "Cartridge.MD5" "f5445b52999e229e3789c39e7ee99947" "Cartridge.Name" "Flag Capture (32-in-1) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "64" "" "Cartridge.MD5" "f542b5d0193a3959b54f3c4c803ba242" @@ -18728,29 +14774,20 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2634 / 75121" "Cartridge.Rarity" "Common" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "37" "" "Cartridge.MD5" "f5d103a9ae36d1d4ee7eef657b75d2b3" -"Cartridge.Name" "Frogger Preview (1982) (Starpath)" "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4105" +"Cartridge.Name" "Frogger Preview (1982) (Starpath)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "205" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" +"Display.YStart" "31" "" "Cartridge.MD5" "f5a2f6efa33a3e5541bc680e9dc31d5b" "Cartridge.Name" "Motocross (Starsoft) (PAL) [a1][!]" "Cartridge.Manufacturer" "Starsoft" "Cartridge.Rarity" "Rare" -"Display.Height" "249" -"Display.YStart" "45" "" "Cartridge.MD5" "f5aa6bd10f662199c42e43863a30106c" @@ -18767,18 +14804,10 @@ "Cartridge.ModelNo" "AZ-028" "Cartridge.Rarity" "Rare" "Cartridge.Type" "FE" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "f613aad84d2163d6b197b220bfec1b7e" "Cartridge.Name" "X-Doom V.27 (PD)" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "f6daebc0424fa0f8d9aaf26c86df50f4" @@ -18797,8 +14826,6 @@ "Cartridge.Name" "Missile Command (1981) (Atari) (PAL) [p1][!]" "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2638 / 4975166" -"Display.Height" "220" -"Display.YStart" "55" "Display.Phosphor" "Yes" "" @@ -18809,7 +14836,6 @@ "Cartridge.MD5" "f6d512bef1bf253dc935d0e13c3d1462" "Cartridge.Name" "Slot Racers (1978) (Atari) (PAL) [p1][o1][!]" "Cartridge.Manufacturer" "Atari" -"Display.YStart" "61" "" "Cartridge.MD5" "f8240e62d8c0a64a61e19388414e3104" @@ -18817,23 +14843,15 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-013" "Cartridge.Rarity" "Uncommon" -"Display.Height" "190" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "f714a223954c28eccf459295517dcae6" "Cartridge.Name" "Big - Move This Demo (PD)" -"Display.Height" "194" -"Display.YStart" "35" "" "Cartridge.MD5" "f6f1b27efc247a0e8d473ddb4269ff9e" "Cartridge.Name" "Schnapp die Apfeldiebe (AKA Catch Time) (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "f74ad642552385c3daa203a2a6fc2291" @@ -18847,17 +14865,11 @@ "Cartridge.Manufacturer" "CCE" "Cartridge.ModelNo" "AX-018" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "f736864442164b29235e8872013180cd" "Cartridge.Name" "Quest for Quintana Roo (Telegames) (PAL) [!]" "Cartridge.Manufacturer" "Telegames" -"Display.Height" "195" -"Display.YStart" "61" "" "Cartridge.MD5" "f724d3dd2471ed4cf5f191dbb724b69f" @@ -18865,8 +14877,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2659" "Cartridge.Rarity" "Common" -"Display.Height" "192" -"Display.YStart" "37" "Cartridge.Note" "Console ports are swapped" "Console.SwapPorts" "Yes" "" @@ -18876,16 +14886,12 @@ "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-012" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "196" -"Display.YStart" "76" "" "Cartridge.MD5" "f750b5d613796963acecab1690f554ae" "Cartridge.Name" "Gunfight 2600 (MP)" "Cartridge.Manufacturer" "Manuel Polik" "Cartridge.Rarity" "New Release" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "f777444fc21a5925e066b68b1d350575" @@ -18907,8 +14913,6 @@ "Cartridge.Name" "Farmyard Fun (Telegames) (PAL)" "Cartridge.ModelNo" "TP-617" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "212" -"Display.YStart" "37" "" "Cartridge.MD5" "f7d6592dcb773c81c278140ed4d01669" @@ -18916,10 +14920,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-108-04" "Cartridge.Rarity" "Rare" -"Display.Height" "197" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "f7af41a87533524d9a478575b0d873d0" @@ -18927,9 +14927,6 @@ "Cartridge.Manufacturer" "Parker Bros" "Cartridge.ModelNo" "PB5900" "Cartridge.Rarity" "Rare" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "51" "" "Cartridge.MD5" "f80cf77164079d774b9b0fae33dffca9" @@ -18937,18 +14934,14 @@ "" "Cartridge.MD5" "f802fa61011dd9eb6f80b271bac479d0" -"Cartridge.Name" "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]" "Cartridge.Manufacturer" "Starsoft" -"Display.Width" "152" -"Display.XStart" "8" +"Cartridge.Name" "Gefaehrliche Maeusejagt (Starsoft) (PAL) [!]" "Display.YStart" "61" "" "Cartridge.MD5" "f8bfd99163d2c4ec688357786e6fba28" "Cartridge.Name" "Eckhard Stolberg's Scrolling Text Demo 2 (PD)" "Cartridge.Rarity" "New Release" -"Display.Height" "191" -"Display.YStart" "38" "" "Cartridge.MD5" "f8ad87b3ecfc04c9e76d2cebef76a6cb" @@ -18960,25 +14953,17 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2635 / 4975157" "Cartridge.Rarity" "Uncommon" -"Display.Height" "175" -"Display.YStart" "52" "" "Cartridge.MD5" "f8648d0c6ad1266434f6c485ff69ec40" "Cartridge.Name" "Oink! (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "194" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "f8582bc6ca7046adb8e18164e8cecdbc" "Cartridge.Name" "Panda Chase (HomeVision)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "256" -"Display.YStart" "30" "" "Cartridge.MD5" "f847fb8dba6c6d66d13724dbe5d95c4d" @@ -18986,10 +14971,6 @@ "Cartridge.Manufacturer" "Absolute" "Cartridge.ModelNo" "AZ-042 / AG-042" "Cartridge.Rarity" "Rare" -"Display.Height" "209" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "33" "" "Cartridge.MD5" "f844f4c6f3baaaf5322657442d6f29eb" @@ -18997,10 +14978,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26111" "Cartridge.Rarity" "Rare" -"Display.Height" "229" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "fa529ec88eca679f6d5fd0ccb2120e46" @@ -19015,15 +14992,14 @@ "Cartridge.Name" "Bugs Bunny (Atari) (Prototype) [!]" "Cartridge.Manufacturer" "Atari" "Cartridge.Rarity" "Prototype" -"Display.Height" "205" "" "Cartridge.MD5" "f965cc981cbb0822f955641f8d84e774" -"Cartridge.Name" "Confrontation (1983) (Answer Software)" "Cartridge.Manufacturer" "Answer" -"Display.YStart" "32" +"Cartridge.Name" "Confrontation (1983) (Answer Software)" +"Display.YStart" "30" "Display.Height" "220" -"Display.Phosphor" "Yes" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "f91fb8da3223b79f1c9a07b77ebfa0b2" @@ -19033,8 +15009,6 @@ "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "195" -"Display.YStart" "35" "" "Cartridge.MD5" "f90b5da189f24d7e1a2117d8c8abc952" @@ -19042,16 +15016,12 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2653 / 99823 / 75111" "Cartridge.Rarity" "Rare" -"Display.Height" "228" -"Display.YStart" "29" "" "Cartridge.MD5" "f9655ed51462ecfc690c7b97cec649f9" "Cartridge.Name" "Laseresal 2002 (PAL) (PD)" "Cartridge.Manufacturer" "Andrew Wallace" "Cartridge.Rarity" "New Release" -"Display.YStart" "47" -"Display.Height" "218" "" "Cartridge.MD5" "f939780714db69dc69a80fbefe350e0d" @@ -19066,15 +15036,12 @@ "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11013" "Cartridge.Rarity" "Rare" -"Display.Height" "229" -"Display.YStart" "42" "" "Cartridge.MD5" "f954381f9e0f2009d1ac40dedd777b1a" "Cartridge.Name" "Robot City (V0.18) (01-09-2002) (TJ)" "Cartridge.Manufacturer" "Thomas Jentzsch" "Cartridge.Rarity" "New Release" -"Display.YStart" "22" "" "Cartridge.MD5" "f96a763ced577e383d1102c4d0949525" @@ -19086,8 +15053,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2604" "Cartridge.Rarity" "Uncommon" -"Display.Height" "202" -"Display.YStart" "60" "" "Cartridge.MD5" "fa2f5f409cff75c9b9b9a5af84bd9909" @@ -19101,10 +15066,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Uncommon" "Controller.Left" "Paddles" -"Display.Height" "200" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "f9de91d868d6ebfb0076af9063d7195e" @@ -19125,10 +15086,6 @@ "Cartridge.MD5" "f9cef637ea8e905a10e324e582dd39c2" "Cartridge.Name" "Private Eye (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "193" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "39" "" "Cartridge.MD5" "f98d869f287d2ce4f8fb36e0686929d9" @@ -19141,10 +15098,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "191" -"Display.YStart" "63" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "f9d51a4e5f8b48f68770c89ffd495ed1" @@ -19152,19 +15105,14 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2656" "Cartridge.Rarity" "Common" -"Display.Height" "191" -"Display.YStart" "41" "" "Cartridge.MD5" "fa0570561aa80896f0ead05c46351389" -"Cartridge.Name" "Miner 2049er (1982) (Tigervision)" "Cartridge.Manufacturer" "Tigervision" "Cartridge.ModelNo" "7-008" +"Cartridge.Name" "Miner 2049er (1982) (Tigervision)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "216" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "30" +"Display.YStart" "31" "" "Cartridge.MD5" "fa1b060fd8e0bca0c2a097dcffce93d3" @@ -19174,16 +15122,12 @@ "Cartridge.Rarity" "Prototype" "Controller.Left" "Keyboard" "Controller.Right" "None" -"Display.Height" "190" -"Display.YStart" "38" "" "Cartridge.MD5" "fa2be8125c3c60ab83e1c0fe56922fcb" "Cartridge.Name" "Tooth Protectors (DSD-Camelot)" "Cartridge.Manufacturer" "DSD-Camelot" "Cartridge.Rarity" "Unbelievably Rare" -"Display.Height" "220" -"Display.YStart" "26" "Display.Phosphor" "Yes" "" @@ -19196,7 +15140,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AG-019" "Cartridge.Rarity" "Rare" -"Display.Height" "195" "" "Cartridge.MD5" "faebcb2ef1f3831b2fc1dbd39d36517c" @@ -19204,17 +15147,11 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2696" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "191" -"Display.YStart" "66" "" "Cartridge.MD5" "fac28963307b6e85082ccd77c88325e7" "Cartridge.Name" "Berzerk (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "188" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "38" "" "Cartridge.MD5" "fabca526d57de46768b392f758f1a008" @@ -19226,10 +15163,6 @@ "Cartridge.Manufacturer" "Tim Snider" "Cartridge.Note" "Hack of Megamania (Activision)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "fa6fe97a10efb9e74c0b5a816e6e1958" @@ -19237,14 +15170,11 @@ "Cartridge.Manufacturer" "Zimag" "Cartridge.ModelNo" "707-111" "Cartridge.Rarity" "Rare" -"Display.YStart" "27" "" "Cartridge.MD5" "fae0b86934a7c5a362281dffebdb43a0" "Cartridge.Name" "Qb (2.07) (Retroactive) (PAL)" "Cartridge.Manufacturer" "Retroactive" -"Display.YStart" "64" -"Display.Height" "250" "Display.Phosphor" "Yes" "" @@ -19253,21 +15183,15 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2681" "Cartridge.Rarity" "Uncommon" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "4" -"Display.YStart" "62" "Emulation.HmoveBlanks" "No" "" "Cartridge.MD5" "fb88c400d602fe759ae74ef1716ee84e" -"Cartridge.Name" "Crash Dive (1983) (20th Century Fox)" "Cartridge.Manufacturer" "20th Century Fox" "Cartridge.ModelNo" "11031" +"Cartridge.Name" "Crash Dive (1983) (20th Century Fox)" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "201" -"Display.Width" "144" -"Display.XStart" "8" +"Display.YStart" "30" "" "Cartridge.MD5" "fb0c32ef7af5b45486db663510094be8" @@ -19277,16 +15201,11 @@ "Cartridge.MD5" "faffd84f3a8eceee2fa5ea5b0a3e6678" "Cartridge.Name" "Immies & Aggies (Emag) (PAL) [p1][!]" "Cartridge.Manufacturer" "Emag" -"Display.YStart" "49" "" "Cartridge.MD5" "faed2ef6b44894f8c83f2b50891c35c6" "Cartridge.Name" "Super Baseball (CCE)" "Cartridge.Manufacturer" "CCE" -"Display.Height" "199" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "32" "" "Cartridge.MD5" "fb09ee4ccd47ae74a3c314f0d8a40344" @@ -19306,9 +15225,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4104" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "198" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "fb27afe896e7c928089307b32e5642ee" @@ -19316,18 +15232,13 @@ "Cartridge.Manufacturer" "Mattel" "Cartridge.ModelNo" "MT5662" "Cartridge.Rarity" "Uncommon" -"Display.Height" "181" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "fb833ed50c865a9a505a125fc9d79a7e" "Cartridge.Name" "Zoo Fun (HomeVision)" "Cartridge.Manufacturer" "HomeVision" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "249" -"Display.YStart" "27" +"Display.YStart" "30" "" "Cartridge.MD5" "fbac6476e7b2b20d246202af81662c88" @@ -19335,10 +15246,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4400" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "189" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "59" "" "Cartridge.MD5" "fb91dfc36cddaa54b09924ae8fd96199" @@ -19348,15 +15255,10 @@ "Cartridge.MD5" "fb91da78455d9b1606913fbf8c859772" "Cartridge.Name" "Split Screen (Ballblazer) Demo (PD)" -"Display.Height" "195" -"Display.YStart" "37" "" "Cartridge.MD5" "fbb4f3debf48dc961b559384467f2057" "Cartridge.Name" "River Raid III (1985) (Digitel-Brazil) [!]" -"Display.Height" "203" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "fbb0151ea2108e33b2dbaae14a1831dd" @@ -19365,10 +15267,6 @@ "Cartridge.Note" "Uses two simultaneous Joystick Controllers, Hack of Robot Tank (Activision)" "Cartridge.Rarity" "New Release (Hack)" "Cartridge.Type" "FE" -"Display.Height" "200" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "41" "" "Cartridge.MD5" "fbd6102e17a5c02c6e1911381b7203f9" @@ -19388,8 +15286,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2646" "Cartridge.Rarity" "Common" -"Display.Height" "223" -"Display.YStart" "51" "" "Cartridge.MD5" "fc2104dd2dadf9a6176c1c1c8f87ced9" @@ -19397,8 +15293,6 @@ "Cartridge.Manufacturer" "Coleco" "Cartridge.ModelNo" "2663" "Cartridge.Rarity" "Rare" -"Display.Height" "193" -"Display.YStart" "35" "" "Cartridge.MD5" "fc24a94d4371c69bc58f5245ada43c44" @@ -19406,33 +15300,25 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26170" "Cartridge.Rarity" "Rare" -"Display.Height" "194" -"Display.Width" "136" -"Display.XStart" "8" -"Display.YStart" "42" "" "Cartridge.MD5" "fc6052438f339aea373bbc999433388a" "Cartridge.Name" "Slot Machine (1979) (Atari) (PAL) [!]" "Cartridge.Manufacturer" "Atari" -"Display.Height" "256" -"Display.YStart" "44" "" "Cartridge.MD5" "fc668a2251dd79cbd903d4fa0e558f96" "Cartridge.Name" "Thrust (V1.1) (2000) (TJ) [a1]" -"Display.Height" "201" "" "Cartridge.MD5" "fd7464edaa8cc264b97ba0d13e7f0678" "Cartridge.Name" "2 Pak Special Black - Challenge,Surfing (HES) (PAL) [a1][!]" "Cartridge.Manufacturer" "HES" -"Display.Height" "236" -"Display.YStart" "49" "" "Cartridge.MD5" "fcea12625c071ddc49f4e409f4038c60" "Cartridge.Name" "Balls! (16-09-2002) (Fabrizio Zavagli)" +"Display.Phosphor" "YES" "" "Cartridge.MD5" "fca4a5be1251927027f2c24774a02160" @@ -19440,8 +15326,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-036-04" "Cartridge.Rarity" "Rare" -"Display.Height" "190" -"Display.YStart" "49" "" "Cartridge.MD5" "fcf8e306f6615f74feba5cb25550038c" @@ -19451,9 +15335,6 @@ "Cartridge.MD5" "fd6e507b5df68beeeddeaf696b6828fa" "Cartridge.Name" "Boxing (Activision) (PAL) [p1][!]" "Cartridge.Manufacturer" "Activision" -"Display.Width" "140" -"Display.XStart" "8" -"Display.YStart" "61" "" "Cartridge.MD5" "fd4f5536fd80f35c64d365df85873418" @@ -19461,7 +15342,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX26140" "Cartridge.Rarity" "Common" -"Display.YStart" "17" "" "Cartridge.MD5" "fd0e5148162e8ec6719445d559f018a9" @@ -19469,9 +15349,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AX-022" "Cartridge.Rarity" "Rare" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "64" "" "Cartridge.MD5" "fd10915633aea4f9cd8b518a25d62b55" @@ -19488,10 +15365,6 @@ "Cartridge.Manufacturer" "Starpath" "Cartridge.ModelNo" "AR-4200" "Cartridge.Rarity" "Extremely Rare" -"Display.Height" "192" -"Display.Width" "144" -"Display.XStart" "8" -"Display.YStart" "36" "Emulation.HmoveBlanks" "No" "" @@ -19501,7 +15374,6 @@ "Cartridge.MD5" "fd8b4ee0d57605b35e236e814f706ff1" "Cartridge.Name" "Phoenix (1982) (Atari) (PAL) [a1][!]" -"Display.YStart" "55" "" "Cartridge.MD5" "fd9b321cee5fbb32c39ba3ca5d9ec7cf" @@ -19515,10 +15387,6 @@ "Cartridge.Manufacturer" "Activision" "Cartridge.ModelNo" "AZ-037-04" "Cartridge.Rarity" "Rare" -"Display.Height" "202" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "56" "" "Cartridge.MD5" "fe67087f9c22655ce519616fc6c6ef4d" @@ -19527,8 +15395,6 @@ "Cartridge.MD5" "fe0b7f27e3ad50bbf9ff468ee56d553d" "Cartridge.Name" "Lines Demo (Eckhard Stolberg) (PAL) (PD)" -"Display.Height" "192" -"Display.YStart" "36" "" "Cartridge.MD5" "fe0bc4bb92c1c4de7d5706aaa8d8c10d" @@ -19545,8 +15411,6 @@ "Cartridge.MD5" "feba8686fd0376015258d1152923958a" "Cartridge.Name" "Super Circus (PAL) [!]" -"Display.Height" "192" -"Display.YStart" "63" "" "Cartridge.MD5" "ff3bd0c684f7144aeaa18758d8281a78" @@ -19556,8 +15420,6 @@ "Cartridge.Rarity" "Rare" "Controller.Left" "Paddles" "Controller.Right" "Paddles" -"Display.Height" "240" -"Display.YStart" "49" "" "Cartridge.MD5" "feedcc20bc3ca34851cd5d9e38aa2ca6" @@ -19568,8 +15430,6 @@ "Controller.Left" "Paddles" "Controller.Right" "Paddles" "Controller.SwapPaddles" "Yes" -"Display.Height" "195" -"Display.YStart" "47" "" "Cartridge.MD5" "feeae23f2eeac44b81a43e8292d0c574" @@ -19587,7 +15447,6 @@ "Cartridge.Note" "Uses the Paddle Controllers (left only)" "Cartridge.Rarity" "Common" "Controller.Left" "Paddles" -"Display.Height" "240" "Display.Phosphor" "Yes" "" @@ -19596,12 +15455,10 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.Note" "Uses the Paddle Controllers" "Controller.Left" "Paddles" -"Display.YStart" "64" "" "Cartridge.MD5" "ff4ed162386c795b4fb434903295b571" "Cartridge.Name" "Death Derby (v0002) (2001) (Glenn Saunders) (PD)" -"Display.YStart" "48" "" "Cartridge.MD5" "ff5a9e340d96df6f5a5b6eb038e923bd" @@ -19621,7 +15478,6 @@ "Cartridge.Note" "Uses the Paddle Controllers" "Cartridge.Rarity" "Extremely Rare" "Controller.Left" "Paddles" -"Display.YStart" "50" "" "Cartridge.MD5" "ff87d58125ae517eb7b09a0475a1ccdc" @@ -19633,8 +15489,6 @@ "Cartridge.Manufacturer" "Atari" "Cartridge.ModelNo" "CX2627 / 6699841" "Cartridge.Rarity" "Uncommon" -"Display.Width" "152" -"Display.XStart" "8" "" "Cartridge.MD5" "ffc0ff4305dd46b4b459885bd1818e2e" @@ -19642,16 +15496,10 @@ "Cartridge.Manufacturer" "Barry Laws Jr." "Cartridge.Note" "Hack of Star Strike (Mattel)" "Cartridge.Rarity" "New Release (Hack)" -"Display.Height" "192" -"Display.Width" "152" -"Display.XStart" "8" -"Display.YStart" "43" "" "Cartridge.MD5" "ffebb0070689b9d322687edd9c0a2bae" "Cartridge.Name" "Spitfire Attack (1983) (Milton Bradley) [h1]" -"Display.Width" "144" -"Display.XStart" "8" "" "Cartridge.MD5" "adfbd2e8a38f96e03751717f7422851d" @@ -19692,7 +15540,6 @@ "Cartridge.Manufacturer" "John Payson" "Cartridge.Name" "Strat-O-Gems Deluxe" "Cartridge.Rarity" "Homebrew" -"Display.Height" "250" "" "Cartridge.MD5" "50dd164c77c4df579843baf838327469" diff --git a/stella/src/gp2x/FrameBufferGP2X.cxx b/stella/src/gp2x/FrameBufferGP2X.cxx index ae85d38c9..f12c0a669 100644 --- a/stella/src/gp2x/FrameBufferGP2X.cxx +++ b/stella/src/gp2x/FrameBufferGP2X.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: FrameBufferGP2X.cxx,v 1.14 2006-12-26 23:53:27 stephena Exp $ +// $Id: FrameBufferGP2X.cxx,v 1.15 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #include @@ -77,23 +77,14 @@ bool FrameBufferGP2X::createScreen() SDL_UpdateRect(myScreen, 0, 0, 0, 0); } - // Determine the best screenmode to use; we only use 320x240 or 400x300 - if(myBaseDim.w <= 320 && myBaseDim.h <= 240) - { - myScreenDim.w = 320; - myScreenDim.h = 240; - } - else - { - myScreenDim.w = 400; - myScreenDim.h = 300; - } - myScreenDim.x = myScreenDim.y = 0; + // If we got a screenmode that won't be scaled, center it vertically + // Otherwise, SDL hardware scaling kicks in, and we won't mess with it + myBaseDim.x = myBaseDim.y = 0; + if(myBaseDim.h <= 240) + myBaseDim.y = (240 - myBaseDim.h) / 2; // In software mode, the image and base dimensions are always the same myImageDim = myBaseDim; - myImageDim.x = (myScreenDim.w - myImageDim.w) / 2; - myImageDim.y = (myScreenDim.h - myImageDim.h) / 2; // The GP2X always uses a 16-bit hardware buffer myScreen = SDL_SetVideoMode(myScreenDim.w, myScreenDim.h, 16, mySDLFlags); @@ -102,8 +93,7 @@ bool FrameBufferGP2X::createScreen() cerr << "ERROR: Unable to open SDL window: " << SDL_GetError() << endl; return false; } - myBasePtr = (uInt16*) myScreen->pixels + - myImageDim.y * myScreen->pitch + myImageDim.x; + myBasePtr = (uInt16*) myScreen->pixels + myImageDim.y * myScreen->pitch; myPitch = myScreen->pitch/2; myDirtyFlag = true; @@ -230,7 +220,7 @@ void FrameBufferGP2X::hLine(uInt32 x, uInt32 y, uInt32 x2, int color) // Horizontal line tmp.x = x; - tmp.y = y; + tmp.y = y + myImageDim.y; tmp.w = (x2 - x + 1); tmp.h = 1; SDL_FillRect(myScreen, &tmp, myDefPalette[color]); @@ -242,7 +232,7 @@ void FrameBufferGP2X::vLine(uInt32 x, uInt32 y, uInt32 y2, int color) SDL_Rect tmp; // Vertical line - tmp.x = x + myImageDim.x; + tmp.x = x; tmp.y = y + myImageDim.y; tmp.w = 1; tmp.h = (y2 - y + 1); @@ -256,7 +246,7 @@ void FrameBufferGP2X::fillRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h, SDL_Rect tmp; // Fill the rectangle - tmp.x = x + myImageDim.x; + tmp.x = x; tmp.y = y + myImageDim.y; tmp.w = w; tmp.h = h; @@ -282,7 +272,7 @@ void FrameBufferGP2X::drawChar(const GUI::Font* font, uInt8 chr, chr -= desc.firstchar; const uInt16* tmp = desc.bits + (desc.offset ? desc.offset[chr] : (chr * h)); - uInt16* buffer = (uInt16*) myBasePtr + yorig * myScreen->w + xorig; + uInt16* buffer = (uInt16*) myBasePtr + yorig * myPitch + xorig; for(int y = 0; y < h; ++y) { const uInt16 ptr = *tmp++; @@ -291,7 +281,7 @@ void FrameBufferGP2X::drawChar(const GUI::Font* font, uInt8 chr, if(ptr & mask) buffer[x] = (uInt16) myDefPalette[color]; - buffer += myScreen->w; + buffer += myPitch; } } @@ -299,7 +289,7 @@ void FrameBufferGP2X::drawChar(const GUI::Font* font, uInt8 chr, void FrameBufferGP2X::drawBitmap(uInt32* bitmap, Int32 xorig, Int32 yorig, int color, Int32 h) { - uInt16* buffer = (uInt16*) myBasePtr + yorig * myScreen->w + xorig; + uInt16* buffer = (uInt16*) myBasePtr + yorig * myPitch + xorig; for(int y = 0; y < h; ++y) { uInt32 mask = 0xF0000000; @@ -307,7 +297,7 @@ void FrameBufferGP2X::drawBitmap(uInt32* bitmap, Int32 xorig, Int32 yorig, if(bitmap[y] & mask) buffer[x] = (uInt16) myDefPalette[color]; - buffer += myScreen->w; + buffer += myPitch; } } diff --git a/stella/src/gp2x/OSystemGP2X.cxx b/stella/src/gp2x/OSystemGP2X.cxx index 7e24494ba..71fc44ccd 100644 --- a/stella/src/gp2x/OSystemGP2X.cxx +++ b/stella/src/gp2x/OSystemGP2X.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: OSystemGP2X.cxx,v 1.22 2006-12-26 04:35:36 azaballa Exp $ +// $Id: OSystemGP2X.cxx,v 1.23 2006-12-28 18:31:26 stephena Exp $ // Modified on 2006/01/06 by Alex Zaballa for use on GP2X //============================================================================ @@ -76,42 +76,6 @@ OSystemGP2X::~OSystemGP2X() delete[] myCurrentEvents; } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystemGP2X::mainLoop() -{ - // These variables are common to both timing options - // and are needed to calculate the overall frames per second. - uInt32 frameTime = 0, numberOfFrames = 0; - - // Set up less accurate timing stuff - uInt32 startTime, virtualTime, currentTime; - - // Set the base for the timers - virtualTime = getTicks(); - frameTime = 0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - startTime = getTicks(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - - currentTime = getTicks(); - virtualTime += myTimePerFrame; - if(currentTime < virtualTime) - SDL_Delay((virtualTime - currentTime)/1000); - - currentTime = getTicks() - startTime; - frameTime += currentTime; - ++numberOfFrames; - } -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt32 OSystemGP2X::getTicks() { diff --git a/stella/src/gp2x/OSystemGP2X.hxx b/stella/src/gp2x/OSystemGP2X.hxx index 705d09397..8e251c294 100644 --- a/stella/src/gp2x/OSystemGP2X.hxx +++ b/stella/src/gp2x/OSystemGP2X.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: OSystemGP2X.hxx,v 1.8 2006-12-08 16:49:31 stephena Exp $ +// $Id: OSystemGP2X.hxx,v 1.9 2006-12-28 18:31:26 stephena Exp $ // Modified by Alex Zaballa on 2006/01/04 for use on GP2X //============================================================================ @@ -40,13 +40,6 @@ class OSystemGP2X : public OSystem virtual ~OSystemGP2X(); public: - /** - This method runs the main loop. Since different platforms - may use different timing methods and/or algorithms, this method has - been abstracted to each platform. - */ - void mainLoop(); - /** This method returns number of ticks in microseconds. diff --git a/stella/src/macosx/OSystemMACOSX.cxx b/stella/src/macosx/OSystemMACOSX.cxx index ba537cf3c..e990f8ed7 100644 --- a/stella/src/macosx/OSystemMACOSX.cxx +++ b/stella/src/macosx/OSystemMACOSX.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: OSystemMACOSX.cxx,v 1.13 2006-12-08 16:49:37 stephena Exp $ +// $Id: OSystemMACOSX.cxx,v 1.14 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #include @@ -112,77 +112,6 @@ OSystemMACOSX::~OSystemMACOSX() { } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystemMACOSX::mainLoop() -{ -#if 0 - double lasttime = Atari_time(); - double lastcurtime = 0; - double curtime, delaytime; - double timePerFrame = 1.0 / 60.0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - myEventHandler->poll(); - myFrameBuffer->update(); - - if (timePerFrame > 0.0) - { - curtime = Atari_time(); - delaytime = lasttime + timePerFrame - curtime; - if (delaytime > 0) - usleep((int) (delaytime * 1e6)); - curtime = Atari_time(); - - lastcurtime = curtime; - - lasttime += timePerFrame; - if ((lasttime + timePerFrame) < curtime) - lasttime = curtime; - } - } -#else - // These variables are common to both timing options - // and are needed to calculate the overall frames per second. - uInt32 frameTime = 0, numberOfFrames = 0; - - // Set up less accurate timing stuff - uInt32 startTime, virtualTime, currentTime; - - // Set the base for the timers - virtualTime = getTicks(); - frameTime = 0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - startTime = getTicks(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - - currentTime = getTicks(); - virtualTime = startTime + myTimePerFrame; - if(currentTime < virtualTime) - { - SDL_Delay((virtualTime - currentTime)/1000); - } - - currentTime = getTicks() - startTime; - frameTime += currentTime; - ++numberOfFrames; - } -#endif -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt32 OSystemMACOSX::getTicks() { diff --git a/stella/src/macosx/OSystemMACOSX.hxx b/stella/src/macosx/OSystemMACOSX.hxx index dbdb03c3e..d5f110f49 100644 --- a/stella/src/macosx/OSystemMACOSX.hxx +++ b/stella/src/macosx/OSystemMACOSX.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: OSystemMACOSX.hxx,v 1.6 2006-12-08 16:49:37 stephena Exp $ +// $Id: OSystemMACOSX.hxx,v 1.7 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #ifndef OSYSTEM_MACOSX_HXX @@ -26,7 +26,7 @@ This class defines UNIX-like OS's (Linux) system specific settings. @author Mark Grebe - @version $Id: OSystemMACOSX.hxx,v 1.6 2006-12-08 16:49:37 stephena Exp $ + @version $Id: OSystemMACOSX.hxx,v 1.7 2006-12-28 18:31:26 stephena Exp $ */ class OSystemMACOSX : public OSystem { @@ -42,13 +42,6 @@ class OSystemMACOSX : public OSystem virtual ~OSystemMACOSX(); public: - /** - This method runs the main loop. Since different platforms - may use different timing methods and/or algorithms, this method has - been abstracted to each platform. - */ - virtual void mainLoop(); - /** This method returns number of ticks in microseconds. diff --git a/stella/src/unix/OSystemUNIX.cxx b/stella/src/unix/OSystemUNIX.cxx index 9c4241442..7615a4256 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.23 2006-12-26 00:39:44 stephena Exp $ +// $Id: OSystemUNIX.cxx,v 1.24 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #include @@ -69,90 +69,6 @@ OSystemUNIX::~OSystemUNIX() { } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystemUNIX::mainLoop() -{ - // These variables are common to both timing options - // and are needed to calculate the overall frames per second. - uInt32 frameTime = 0, numberOfFrames = 0; - - if(mySettings->getBool("accurate")) // normal, CPU-intensive timing - { - // Set up accurate timing stuff - uInt32 startTime, delta; - - // Set the base for the timers - frameTime = 0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - startTime = getTicks(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - - // Now, waste time if we need to so that we are at the desired frame rate - for(;;) - { - delta = getTicks() - startTime; - - if(delta >= myTimePerFrame) - break; - } - - frameTime += getTicks() - startTime; - ++numberOfFrames; - } - } - else // less accurate, less CPU-intensive timing - { - // Set up less accurate timing stuff - uInt32 startTime, virtualTime, currentTime; - - // Set the base for the timers - virtualTime = getTicks(); - frameTime = 0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - startTime = getTicks(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - - currentTime = getTicks(); - virtualTime += myTimePerFrame; - if(currentTime < virtualTime) - { - SDL_Delay((virtualTime - currentTime)/1000); - } - - currentTime = getTicks() - startTime; - frameTime += currentTime; - ++numberOfFrames; - } - } - - // Only print console information if a console was actually created - if(mySettings->getBool("showinfo")) - { - double executionTime = (double) frameTime / 1000000.0; - double framesPerSecond = (double) numberOfFrames / executionTime; - - cout << endl; - cout << numberOfFrames << " total frames drawn\n"; - cout << framesPerSecond << " frames/second\n"; - } -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt32 OSystemUNIX::getTicks() { diff --git a/stella/src/unix/OSystemUNIX.hxx b/stella/src/unix/OSystemUNIX.hxx index c02c1d17d..7bd4c55f2 100644 --- a/stella/src/unix/OSystemUNIX.hxx +++ b/stella/src/unix/OSystemUNIX.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: OSystemUNIX.hxx,v 1.12 2006-12-08 16:49:41 stephena Exp $ +// $Id: OSystemUNIX.hxx,v 1.13 2006-12-28 18:31:26 stephena Exp $ //============================================================================ #ifndef OSYSTEM_UNIX_HXX @@ -26,7 +26,7 @@ This class defines UNIX-like OS's (Linux) system specific settings. @author Stephen Anthony - @version $Id: OSystemUNIX.hxx,v 1.12 2006-12-08 16:49:41 stephena Exp $ + @version $Id: OSystemUNIX.hxx,v 1.13 2006-12-28 18:31:26 stephena Exp $ */ class OSystemUNIX : public OSystem { @@ -42,13 +42,6 @@ class OSystemUNIX : public OSystem virtual ~OSystemUNIX(); public: - /** - This method runs the main loop. Since different platforms - may use different timing methods and/or algorithms, this method has - been abstracted to each platform. - */ - void mainLoop(); - /** This method returns number of ticks in microseconds. diff --git a/stella/src/win32/OSystemWin32.cxx b/stella/src/win32/OSystemWin32.cxx index 4cd5d4917..76b517c6e 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.15 2006-12-26 00:39:44 stephena Exp $ +// $Id: OSystemWin32.cxx,v 1.16 2006-12-28 18:31:27 stephena Exp $ //============================================================================ #include @@ -62,54 +62,6 @@ OSystemWin32::~OSystemWin32() { } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystemWin32::mainLoop() -{ - // These variables are common to both timing options - // and are needed to calculate the overall frames per second. - uInt32 frameTime = 0, numberOfFrames = 0; - - // Set up less accurate timing stuff - uInt32 startTime, virtualTime, currentTime; - - // Set the base for the timers - virtualTime = getTicks(); - frameTime = 0; - - // Main game loop - for(;;) - { - // Exit if the user wants to quit - if(myEventHandler->doQuit()) - break; - - startTime = getTicks(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - - currentTime = getTicks(); - virtualTime += myTimePerFrame; - if(currentTime < virtualTime) - { - SDL_Delay((virtualTime - currentTime)/1000); - } - - currentTime = getTicks() - startTime; - frameTime += currentTime; - ++numberOfFrames; - } - - if(mySettings->getBool("showinfo")) - { - double executionTime = (double) frameTime / 1000000.0; - double framesPerSecond = (double) numberOfFrames / executionTime; - - cout << endl; - cout << numberOfFrames << " total frames drawn\n"; - cout << framesPerSecond << " frames/second\n"; - } -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - uInt32 OSystemWin32::getTicks() { diff --git a/stella/src/win32/OSystemWin32.hxx b/stella/src/win32/OSystemWin32.hxx index 99a442f47..107d760ab 100644 --- a/stella/src/win32/OSystemWin32.hxx +++ b/stella/src/win32/OSystemWin32.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: OSystemWin32.hxx,v 1.7 2006-12-08 16:49:41 stephena Exp $ +// $Id: OSystemWin32.hxx,v 1.8 2006-12-28 18:31:27 stephena Exp $ //============================================================================ #ifndef OSYSTEM_WIN32_HXX @@ -25,7 +25,7 @@ This class defines Windows system specific settings. @author Stephen Anthony - @version $Id: OSystemWin32.hxx,v 1.7 2006-12-08 16:49:41 stephena Exp $ + @version $Id: OSystemWin32.hxx,v 1.8 2006-12-28 18:31:27 stephena Exp $ */ class OSystemWin32 : public OSystem { @@ -41,13 +41,6 @@ class OSystemWin32 : public OSystem virtual ~OSystemWin32(); public: - /** - This method runs the main loop. Since different platforms - may use different timing methods and/or algorithms, this method has - been abstracted to each platform. - */ - virtual void mainLoop(); - /** This method returns number of ticks in microseconds.