diff --git a/Algo/tp/Cpp/4_tp/bin/exe b/Algo/tp/Cpp/4_tp/bin/exe index 59b596f..d8c8091 100755 Binary files a/Algo/tp/Cpp/4_tp/bin/exe and b/Algo/tp/Cpp/4_tp/bin/exe differ diff --git a/Algo/tp/Cpp/4_tp/src/ingredient.cpp b/Algo/tp/Cpp/4_tp/src/ingredient.cpp index bd9adae..469527a 100644 --- a/Algo/tp/Cpp/4_tp/src/ingredient.cpp +++ b/Algo/tp/Cpp/4_tp/src/ingredient.cpp @@ -6,25 +6,25 @@ using namespace std; namespace appli { -Ingredient::Ingredient(const string &aliment, const Quantite &quantite) - : aliment{aliment}, quantite{quantite} -{} - -string Ingredient::getAliment() const { - return aliment; -} - -Quantite Ingredient::getQuantite() const { - return quantite; -} - -ostream &operator<<(ostream &os, const Ingredient &i) { - os << i.getQuantite() << " " << i.getAliment() << endl; - return os; -} - -bool operator==(const Ingredient &i1, const Ingredient &i2) { - return(i1.getAliment() == i2.getAliment()); -} + Ingredient::Ingredient(const string &aliment, const Quantite &quantite) + : aliment{aliment}, quantite{quantite} + {} + + string Ingredient::getAliment() const { + return aliment; + } + + Quantite Ingredient::getQuantite() const { + return quantite; + } + + ostream &operator<<(ostream &os, const Ingredient &i) { + os << i.getQuantite() << " " << i.getAliment() << endl; + return os; + } + + bool operator==(const Ingredient &i1, const Ingredient &i2) { + return(i1.getAliment() == i2.getAliment()); + } } \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/ingredient.hpp b/Algo/tp/Cpp/4_tp/src/ingredient.hpp index 42bae7e..98523b4 100644 --- a/Algo/tp/Cpp/4_tp/src/ingredient.hpp +++ b/Algo/tp/Cpp/4_tp/src/ingredient.hpp @@ -8,16 +8,21 @@ namespace appli { class Ingredient { + std::string aliment; Quantite quantite; + public: + Ingredient(const std::string &aliment, const Quantite &quantite); + std::string getAliment() const; Quantite getQuantite() const; }; std::ostream &operator<<(std::ostream &os, const Ingredient &i); bool operator==(const Ingredient &i1, const Ingredient &i2); + } namespace std { diff --git a/Algo/tp/Cpp/4_tp/src/livreRecettes.cpp b/Algo/tp/Cpp/4_tp/src/livreRecettes.cpp new file mode 100644 index 0000000..8e1cfae --- /dev/null +++ b/Algo/tp/Cpp/4_tp/src/livreRecettes.cpp @@ -0,0 +1,29 @@ +#include "livreRecettes.hpp" + +using namespace std; + +namespace appli { + + // map> LivreRecettes::rechercherRecette(const string &nomRecette) { + // for(auto it = ) + // } + + map LivreRecettes::faireListeCourses(list l) { + + } + + void LivreRecettes::ajouter(const Recette &r, list l) { + + l.push_back(r) + ajouter dans le livre la rec + } + + void LivreRecettes::afficherNomRecette() { + + } + + void LivreRecettes::afficher() { + + } + +} \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/livreRecettes.hpp b/Algo/tp/Cpp/4_tp/src/livreRecettes.hpp new file mode 100644 index 0000000..bb97859 --- /dev/null +++ b/Algo/tp/Cpp/4_tp/src/livreRecettes.hpp @@ -0,0 +1,29 @@ +#ifndef LIVRERECETTES_HPP +#define LIVRERECETTES_HPP + +#include "recette.hpp" +#include "ingredient.hpp" +#include +#include +#include + +namespace appli { + + class LivreRecettes { + + std::list livre; + + public: + + std::map> rechercherRecette(const std::string &nomRecette); + std::map faireListeCourses(std::list l); + + void ajouter(const Recette &r, std::list l); + void afficherNomRecette(); + void afficher(); + }; + +} + + +#endif // LIVRERECETTES_HPP \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/main.cpp b/Algo/tp/Cpp/4_tp/src/main.cpp index 464c0a3..cd61b21 100644 --- a/Algo/tp/Cpp/4_tp/src/main.cpp +++ b/Algo/tp/Cpp/4_tp/src/main.cpp @@ -1,11 +1,11 @@ #include -// #include +#include #include #include"unite.hpp" #include"quantite.hpp" #include"ingredient.hpp" #include"recette.hpp" -// #include"recetteAffichage.hpp" +#include"recetteAffichage.hpp" using namespace std; @@ -35,19 +35,19 @@ void testQuantite(){ cout << "1.5L => " << appli::Quantite{1.5, appli::Unite::L} << endl; // Partie 3: - // cout << "15L => " << appli::Quantite{15, appli::Unite::L}.normaliser() << endl; - // cout << "1.5L => " << appli::Quantite{15, appli::Unite::DL}.normaliser() << endl; - // cout << "0.15L => " << appli::Quantite{15, appli::Unite::CL}.normaliser() << endl; - // cout << "0.015L => " << appli::Quantite{15, appli::Unite::ML}.normaliser() << endl; - // cout << "15L => " << appli::Quantite{15, appli::Unite::L}.normaliser() << endl; - // cout << "0.8kg => " << appli::Quantite{0.8, appli::Unite::KG}.normaliser() << endl; - // cout << "0.5kg => " << appli::Quantite{500, appli::Unite::G}.normaliser() << endl; - // cout << "2 => " << appli::Quantite{2, appli::Unite::UNITE}.normaliser() << endl; - - // cout << "1.5kg => " << appli::Quantite{1, appli::Unite::KG}+appli::Quantite{500, appli::Unite::G} << endl; - // cout << "0.75L => " << appli::Quantite{5, appli::Unite::DL}+appli::Quantite{250, appli::Unite::ML} << endl; - // cout << "Détection d'erreur ?" << endl; - // cout << appli::Quantite{5, appli::Unite::DL}+appli::Quantite{250, appli::Unite::G} << endl; + cout << "15L => " << appli::Quantite{15, appli::Unite::L}.normaliser() << endl; + cout << "1.5L => " << appli::Quantite{15, appli::Unite::DL}.normaliser() << endl; + cout << "0.15L => " << appli::Quantite{15, appli::Unite::CL}.normaliser() << endl; + cout << "0.015L => " << appli::Quantite{15, appli::Unite::ML}.normaliser() << endl; + cout << "15L => " << appli::Quantite{15, appli::Unite::L}.normaliser() << endl; + cout << "0.8kg => " << appli::Quantite{0.8, appli::Unite::KG}.normaliser() << endl; + cout << "0.5kg => " << appli::Quantite{500, appli::Unite::G}.normaliser() << endl; + cout << "2 => " << appli::Quantite{2, appli::Unite::UNITE}.normaliser() << endl; + + cout << "1.5kg => " << appli::Quantite{1, appli::Unite::KG}+appli::Quantite{500, appli::Unite::G} << endl; + cout << "0.75L => " << appli::Quantite{5, appli::Unite::DL}+appli::Quantite{250, appli::Unite::ML} << endl; + cout << "Détection d'erreur ?" << endl; + cout << appli::Quantite{5, appli::Unite::DL}+appli::Quantite{250, appli::Unite::G} << endl; } @@ -76,41 +76,41 @@ void testRecette(){ appli::Recette r{"Soupe de poireaux", "Faire cuire les légumes puis mixer."}; - // unordered_set ing; - // ing.insert(appli::Ingredient{"poireaux", appli::Quantite{2, appli::Unite::UNITE}}); - // ing.insert(appli::Ingredient{"pommes de terre", appli::Quantite{300, appli::Unite::G}}); - // ing.insert(appli::Ingredient{"eau", appli::Quantite{50, appli::Unite::CL}}); + unordered_set ing; + ing.insert(appli::Ingredient{"poireaux", appli::Quantite{2, appli::Unite::UNITE}}); + ing.insert(appli::Ingredient{"pommes de terre", appli::Quantite{300, appli::Unite::G}}); + ing.insert(appli::Ingredient{"eau", appli::Quantite{50, appli::Unite::CL}}); - // cout << "Résultat attendu" << endl << "=>" << endl << "résultat" << endl << endl; - // cout << "Soupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux" << endl << "=>" << endl; - // afficherNomEtIngredients(r, ing); + cout << "Résultat attendu" << endl << "=>" << endl << "résultat" << endl << endl; + cout << "Soupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux" << endl << "=>" << endl; + afficherNomEtIngredients(r, ing); - // cout << endl; - // cout << "Soupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux\ndescription :\nFaire cuire les légumes puis mixer." << endl << "=>" << endl; - // afficherTout(r, ing); + cout << endl; + cout << "Soupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux\ndescription :\nFaire cuire les légumes puis mixer." << endl << "=>" << endl; + afficherTout(r, ing); - // appli::Recette r2{"Crêpes", "Faire fondre le beurre. Mélanger la farine, le sel et le sucre. Y ajouter les oeufs puis le lait et enfin le beurre fondu. Faire cuire à la poêle quelques minutes de chaque côté."}; - - // unordered_set ing2; - // ing2.insert(appli::Ingredient{"farine", appli::Quantite{250, appli::Unite::G}}); - // ing2.insert(appli::Ingredient{"lait", appli::Quantite{0.5, appli::Unite::L}}); - // ing2.insert(appli::Ingredient{"sucre", appli::Quantite{30, appli::Unite::G}}); - // ing2.insert(appli::Ingredient{"oeufs", appli::Quantite{4, appli::Unite::UNITE}}); - // ing2.insert(appli::Ingredient{"sel", appli::Quantite{3, appli::Unite::G}}); - // ing2.insert(appli::Ingredient{"beurre", appli::Quantite{50, appli::Unite::G}}); - - // map> recettes; - // recettes.insert(pair{r,ing}); - // recettes.insert(pair{r2,ing2}); + appli::Recette r2{"Crêpes", "Faire fondre le beurre. Mélanger la farine, le sel et le sucre. Y ajouter les oeufs puis le lait et enfin le beurre fondu. Faire cuire à la poêle quelques minutes de chaque côté."}; + + unordered_set ing2; + ing2.insert(appli::Ingredient{"farine", appli::Quantite{250, appli::Unite::G}}); + ing2.insert(appli::Ingredient{"lait", appli::Quantite{0.5, appli::Unite::L}}); + ing2.insert(appli::Ingredient{"sucre", appli::Quantite{30, appli::Unite::G}}); + ing2.insert(appli::Ingredient{"oeufs", appli::Quantite{4, appli::Unite::UNITE}}); + ing2.insert(appli::Ingredient{"sel", appli::Quantite{3, appli::Unite::G}}); + ing2.insert(appli::Ingredient{"beurre", appli::Quantite{50, appli::Unite::G}}); + + map> recettes; + recettes.insert(pair{r,ing}); + recettes.insert(pair{r2,ing2}); - // cout << endl; - // cout << "Crêpes\n\t50g beurre\n\t3g sel\n\t4 oeufs\n\t30g sucre\n\t0.5L lait\n\t250g farine\ndescription :\nFaire fondre le beurre. Mélanger la farine, le sel et le sucre. Y ajouter les oeufs puis le lait et enfin le beurre fondu. Faire cuire à la poêle quelques minutes de chaque côté.\nSoupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux\ndescription :\nFaire cuire les légumes puis mixer." << endl << "=>" << endl; - // afficherTout(recettes); + cout << endl; + cout << "Crêpes\n\t50g beurre\n\t3g sel\n\t4 oeufs\n\t30g sucre\n\t0.5L lait\n\t250g farine\ndescription :\nFaire fondre le beurre. Mélanger la farine, le sel et le sucre. Y ajouter les oeufs puis le lait et enfin le beurre fondu. Faire cuire à la poêle quelques minutes de chaque côté.\nSoupe de poireaux\n\t300g pommes de terre\n\t50cL eau\n\t2 poireaux\ndescription :\nFaire cuire les légumes puis mixer." << endl << "=>" << endl; + afficherTout(recettes); - // cout << endl; - // cout << "Crêpes\nSoupe de poireaux" << endl << "=>" << endl; - // afficherNoms(recettes); + cout << endl; + cout << "Crêpes\nSoupe de poireaux" << endl << "=>" << endl; + afficherNoms(recettes); } diff --git a/Algo/tp/Cpp/4_tp/src/quantite.cpp b/Algo/tp/Cpp/4_tp/src/quantite.cpp index 0737c46..8f24ca2 100644 --- a/Algo/tp/Cpp/4_tp/src/quantite.cpp +++ b/Algo/tp/Cpp/4_tp/src/quantite.cpp @@ -5,21 +5,62 @@ using namespace std; namespace appli { -Quantite::Quantite(double nombre, const Unite &unite) - : nombre{nombre}, unite{unite} -{} - -double Quantite::getNombre() const { - return nombre; -} - -Unite Quantite::getUnite() const { - return unite; -} - -ostream &operator<<(ostream &os, const Quantite &q) { - os << q.getNombre() << q.getUnite(); - return os; -} + Quantite::Quantite(double nombre, const Unite &unite) + : nombre{nombre}, unite{unite} + {} + + double Quantite::getNombre() const { + return nombre; + } + + Unite Quantite::getUnite() const { + return unite; + } + + Quantite Quantite::normaliser() const { + switch(unite) { + case Unite::KG : + return *this; + break; + case Unite::G : + return Quantite{nombre / 1000,Unite::KG}; + break; + case Unite::L : + return *this; + break; + case Unite::DL : + return Quantite{nombre / 10, Unite::L}; + break; + case Unite::CL : + return Quantite{nombre / 100, Unite::L}; + break; + case Unite::ML : + return Quantite{nombre / 1000, Unite::L}; + break; + case Unite::UNITE : + return Quantite{nombre / 1, Unite::UNITE}; + break; + }; + return *this; + } + + ostream &operator<<(ostream &os, const Quantite &q) { + os << q.getNombre() << q.getUnite(); + return os; + } + + Quantite operator+(const Quantite &q1, const Quantite &q2) { + if(q1.getUnite() == q2.getUnite()) return Quantite(q1.getNombre() + q2.getNombre(), q1.getUnite()); + else { + Quantite q1bis = q1.normaliser(); + Quantite q2bis = q2.normaliser(); + if(q1bis.getUnite() == q2bis.getUnite()) + return Quantite{q1bis.getNombre() + q2bis.getNombre(), q1bis.getUnite()}; + else { + cout << "Impossible d'ajouter des unités non compatibles" << endl; + return q1; + } + } + } } \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/quantite.hpp b/Algo/tp/Cpp/4_tp/src/quantite.hpp index d733bd3..b0d32e8 100644 --- a/Algo/tp/Cpp/4_tp/src/quantite.hpp +++ b/Algo/tp/Cpp/4_tp/src/quantite.hpp @@ -8,17 +8,23 @@ namespace appli { class Quantite { + double nombre; Unite unite; + public: + Quantite(double nombre=1, const Unite &unite=Unite::UNITE); + + Quantite normaliser() const; + double getNombre() const; Unite getUnite() const; - Quantite normalier(); }; std::ostream &operator<<(std::ostream &os, const Quantite &q); - // double operator+(const double &n1, const ) + Quantite operator+(const Quantite &q1, const Quantite &q2); + } diff --git a/Algo/tp/Cpp/4_tp/src/recette.cpp b/Algo/tp/Cpp/4_tp/src/recette.cpp index 499001c..8a8deb2 100644 --- a/Algo/tp/Cpp/4_tp/src/recette.cpp +++ b/Algo/tp/Cpp/4_tp/src/recette.cpp @@ -4,21 +4,25 @@ using namespace std; namespace appli { -Recette::Recette(const string &nom, const string &description) - : nom{nom}, description{description} -{} + Recette::Recette(const string &nom, const string &description) + : nom{nom}, description{description} + {} -string Recette::getNom() const { - return nom; -} + string Recette::getNom() const { + return nom; + } -string Recette::getDescription() const { - return description; -} + string Recette::getDescription() const { + return description; + } -ostream &operator<<(ostream &os, const Recette &r) { - os << r.getNom() << " " << r.getDescription(); - return os; -} + bool operator<(const Recette &r1, const Recette &r2) { + if(r1.getNom() < r2.getNom()) + return true; + if(r1.getNom() > r2.getNom()) + return false; + + return r1.getDescription() < r2.getDescription(); + } } \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/recette.hpp b/Algo/tp/Cpp/4_tp/src/recette.hpp index c8ebd29..621678c 100644 --- a/Algo/tp/Cpp/4_tp/src/recette.hpp +++ b/Algo/tp/Cpp/4_tp/src/recette.hpp @@ -8,15 +8,20 @@ namespace appli { class Recette { + std::string nom; std::string description; + public: + Recette(const std::string &nom, const std::string &description); + std::string getNom() const; std::string getDescription() const; }; -// "operateur prends deux qqt, si q1 == q2 en unité alors on peut construire un nouvelle quantite avec l'unité de q1 ou q2 -// on regarde ce que retourne q1 et q2 normalisé pas d'ajout de kg et litre et donc mettre un message d'erreur en cerr et on return q1" + + bool operator<(const Recette &r1, const Recette &r2); + } diff --git a/Algo/tp/Cpp/4_tp/src/recetteAffichage.cpp b/Algo/tp/Cpp/4_tp/src/recetteAffichage.cpp new file mode 100644 index 0000000..378df16 --- /dev/null +++ b/Algo/tp/Cpp/4_tp/src/recetteAffichage.cpp @@ -0,0 +1,35 @@ +#include "recetteAffichage.hpp" + + +using namespace std; +using namespace appli; + +void afficherNomEtIngredients(const Recette &r, const unordered_set &ingred) { + cout << r.getNom() << endl; + for(auto it = ingred.cbegin(); it != ingred.cend(); ++it) { + cout << "\t" << *it; + } + // for(Ingredient i : ingred) { //! OU CETTE FAÇON + // cout << i << endl; + // } +} + +void afficherTout(const Recette &r, const unordered_set &ingredient) { + cout << r.getNom() << endl; + for(auto it = ingredient.cbegin(); it != ingredient.cend(); ++it) { + cout << "\t" << *it; + } + cout << "description :\n" << r.getDescription() << endl; +} + +void afficherTout(const map> &recettes) { + for(auto it = recettes.cbegin(); it != recettes.cend(); ++it) { + afficherTout(it->first, it->second); + } +} + +void afficherNoms(const map> &recettes) { + for(map>::const_iterator it = recettes.cbegin(); it != recettes.cend(); ++it){ + cout << it->first.getNom() << endl; + } +} \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/recetteAffichage.hpp b/Algo/tp/Cpp/4_tp/src/recetteAffichage.hpp new file mode 100644 index 0000000..b563bdc --- /dev/null +++ b/Algo/tp/Cpp/4_tp/src/recetteAffichage.hpp @@ -0,0 +1,15 @@ +#ifndef RECETTEAFFICHAGE_HPP +#define RECETTEAFFICHAGE_HPP + +#include "recette.hpp" +#include "ingredient.hpp" +#include +#include + + +void afficherNomEtIngredients(const appli::Recette &r, const std::unordered_set &ingred); +void afficherTout(const appli::Recette &r, const std::unordered_set &ingredients); +void afficherTout(const std::map> &recettes); +void afficherNoms(const std::map> &recettes); + +#endif // RECETTEAFFICHAGE_HPP \ No newline at end of file diff --git a/Algo/tp/Cpp/4_tp/src/unite.cpp b/Algo/tp/Cpp/4_tp/src/unite.cpp index edb22f0..b5ad3c3 100644 --- a/Algo/tp/Cpp/4_tp/src/unite.cpp +++ b/Algo/tp/Cpp/4_tp/src/unite.cpp @@ -2,6 +2,7 @@ using namespace std; namespace appli { + ostream &operator<<(ostream &os, const Unite &u) { switch(u) { case Unite::KG : os << "kg"; diff --git a/Algo/tp/Cpp/4_tp/src/unite.hpp b/Algo/tp/Cpp/4_tp/src/unite.hpp index 5548cbc..3a87edc 100644 --- a/Algo/tp/Cpp/4_tp/src/unite.hpp +++ b/Algo/tp/Cpp/4_tp/src/unite.hpp @@ -4,9 +4,11 @@ #include namespace appli { + enum class Unite{KG, G, L, DL, CL, ML, UNITE}; std::ostream &operator<<(std::ostream &os, const Unite &u); + } #endif // UNITE_HPP \ No newline at end of file diff --git a/Algo/tp/Cpp/5_tp/Makefile b/Algo/tp/Cpp/5_tp/Makefile deleted file mode 100644 index 88f4002..0000000 --- a/Algo/tp/Cpp/5_tp/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -#CC : le compilateur à utiliser -CC=g++ - -#CFLAGS : les options de compilation -CFLAGS= -std=c++17 -Wall - -# les fichiers sources : tous les fichiers présents dans src/ -SRC=$(wildcard src/*.cpp) - -# les fichiers objets (.o) -OBJ=$(patsubst src/%.cpp,obj/%.o,$(SRC)) - - -#edition des liens : génération de l'exécutable à partir des .o -bin/exe: $(OBJ) - $(CC) $(OBJ) -o $@ - -# génération des .o à partir des .cpp et .hpp crrespondants : -obj/%.o: src/%.cpp - $(CC) $(CFLAGS) -c $< -o $@ - -#nettoyage : destruction des .o et de l'exécutable -clean: - rm obj/*.o bin/exe - - diff --git a/Algo/tp/Cpp/5_tp/aurevoir.cpp b/Algo/tp/Cpp/5_tp/aurevoir.cpp deleted file mode 100644 index 243a667..0000000 --- a/Algo/tp/Cpp/5_tp/aurevoir.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "aurevoir.hpp" - -#include - - -using namespace std; - -Aurevoir::Aurevoir() - : -{} - - -ostream &operator<<(ostream &os, const Aurevoir &a) { - - return os; -} - diff --git a/Algo/tp/Cpp/5_tp/aurevoir.hpp b/Algo/tp/Cpp/5_tp/aurevoir.hpp deleted file mode 100644 index 4386b20..0000000 --- a/Algo/tp/Cpp/5_tp/aurevoir.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef AUREVOIR_HPP -#define AUREVOIR_HPP - -#include - -class Aurevoir { - -public: - Aurevoir(); - - friend std::ostream &operator<<(ostream &os, const Aurevoir &a); - - ~Aurevoir()=default; - -}; - -#endif // AUREVOIR_HPP \ No newline at end of file diff --git a/Algo/tp/Cpp/5_tp/bonjour.cpp b/Algo/tp/Cpp/5_tp/bonjour.cpp deleted file mode 100644 index 86b4391..0000000 --- a/Algo/tp/Cpp/5_tp/bonjour.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "bonjour.hpp" - -#include - - -using namespace std; - -Bonjour::Bonjour() - : -{} - - -ostream &operator<<(ostream &os, const Bonjour &b) { - - return os; -} - diff --git a/Algo/tp/Cpp/5_tp/bonjour.hpp b/Algo/tp/Cpp/5_tp/bonjour.hpp deleted file mode 100644 index f83b5d8..0000000 --- a/Algo/tp/Cpp/5_tp/bonjour.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef BONJOUR_HPP -#define BONJOUR_HPP - -#include - -class Bonjour { - -public: - Bonjour(); - - friend std::ostream &operator<<(ostream &os, const Bonjour &b); - - ~Bonjour()=default; - -}; - -#endif // BONJOUR_HPP \ No newline at end of file diff --git a/Algo/tp/Cpp/5_tp/main.cpp b/Algo/tp/Cpp/5_tp/main.cpp deleted file mode 100644 index d2ae415..0000000 --- a/Algo/tp/Cpp/5_tp/main.cpp +++ /dev/null @@ -1,7 +0,0 @@ - - - -int main() { - -return 0; -} \ No newline at end of file diff --git a/Algo/tp/Cpp/tp4/.idea/workspace.xml b/Algo/tp/Cpp/tp4/.idea/workspace.xml deleted file mode 100644 index 53c7856..0000000 --- a/Algo/tp/Cpp/tp4/.idea/workspace.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1645452010045 - - - - - - \ No newline at end of file diff --git a/Anglais/Choiceof.dev.docx b/Anglais/Choiceof.dev.docx new file mode 100644 index 0000000..c24a6e0 Binary files /dev/null and b/Anglais/Choiceof.dev.docx differ diff --git a/Anglais/Choiceof.dev.pdf b/Anglais/Choiceof.dev.pdf new file mode 100644 index 0000000..1cd6030 Binary files /dev/null and b/Anglais/Choiceof.dev.pdf differ diff --git a/BDD/tp/BDDs2/tp1/tp05_06_07.pdf b/BDD/tp/BDDs2/tp1/tp05_06_07.pdf new file mode 100644 index 0000000..1bcc2d2 Binary files /dev/null and b/BDD/tp/BDDs2/tp1/tp05_06_07.pdf differ diff --git a/BDD/tp/BDDs2/tp1/vgsales.csv b/BDD/tp/BDDs2/tp1/vgsales.csv new file mode 100644 index 0000000..5934c82 --- /dev/null +++ b/BDD/tp/BDDs2/tp1/vgsales.csv @@ -0,0 +1,16600 @@ +Name,Platform,Year,Genre,Publisher,NA_Sales,EU_Sales,JP_Sales,Other_Sales,Global_Sales +Wii Sports,Wii,2006,Sports,Nintendo,41.49,29.02,3.77,8.46,82.74 +Super Mario Bros.,NES,1985,Platform,Nintendo,29.08,3.58,6.81,0.77,40.24 +Mario Kart Wii,Wii,2008,Racing,Nintendo,15.85,12.88,3.79,3.31,35.82 +Wii Sports Resort,Wii,2009,Sports,Nintendo,15.75,11.01,3.28,2.96,33 +Pokemon Red/Pokemon Blue,GB,1996,Role-Playing,Nintendo,11.27,8.89,10.22,1,31.37 +Tetris,GB,1989,Puzzle,Nintendo,23.2,2.26,4.22,0.58,30.26 +New Super Mario Bros.,DS,2006,Platform,Nintendo,11.38,9.23,6.5,2.9,30.01 +Wii Play,Wii,2006,Misc,Nintendo,14.03,9.2,2.93,2.85,29.02 +New Super Mario Bros. Wii,Wii,2009,Platform,Nintendo,14.59,7.06,4.7,2.26,28.62 +Duck Hunt,NES,1984,Shooter,Nintendo,26.93,0.63,0.28,0.47,28.31 +Nintendogs,DS,2005,Simulation,Nintendo,9.07,11,1.93,2.75,24.76 +Mario Kart DS,DS,2005,Racing,Nintendo,9.81,7.57,4.13,1.92,23.42 +Pokemon Gold/Pokemon Silver,GB,1999,Role-Playing,Nintendo,9,6.18,7.2,0.71,23.1 +Wii Fit,Wii,2007,Sports,Nintendo,8.94,8.03,3.6,2.15,22.72 +Wii Fit Plus,Wii,2009,Sports,Nintendo,9.09,8.59,2.53,1.79,22 +Kinect Adventures!,X360,2010,Misc,Microsoft Game Studios,14.97,4.94,0.24,1.67,21.82 +Grand Theft Auto V,PS3,2013,Action,Take-Two Interactive,7.01,9.27,0.97,4.14,21.4 +Grand Theft Auto: San Andreas,PS2,2004,Action,Take-Two Interactive,9.43,0.4,0.41,10.57,20.81 +Super Mario World,SNES,1990,Platform,Nintendo,12.78,3.75,3.54,0.55,20.61 +Brain Age: Train Your Brain in Minutes a Day,DS,2005,Misc,Nintendo,4.75,9.26,4.16,2.05,20.22 +Pokemon Diamond/Pokemon Pearl,DS,2006,Role-Playing,Nintendo,6.42,4.52,6.04,1.37,18.36 +Super Mario Land,GB,1989,Platform,Nintendo,10.83,2.71,4.18,0.42,18.14 +Super Mario Bros. 3,NES,1988,Platform,Nintendo,9.54,3.44,3.84,0.46,17.28 +Grand Theft Auto V,X360,2013,Action,Take-Two Interactive,9.63,5.31,0.06,1.38,16.38 +Grand Theft Auto: Vice City,PS2,2002,Action,Take-Two Interactive,8.41,5.49,0.47,1.78,16.15 +Pokemon Ruby/Pokemon Sapphire,GBA,2002,Role-Playing,Nintendo,6.06,3.9,5.38,0.5,15.85 +Pokemon Black/Pokemon White,DS,2010,Role-Playing,Nintendo,5.57,3.28,5.65,0.82,15.32 +Brain Age 2: More Training in Minutes a Day,DS,2005,Puzzle,Nintendo,3.44,5.36,5.32,1.18,15.3 +Gran Turismo 3: A-Spec,PS2,2001,Racing,Sony Computer Entertainment,6.85,5.09,1.87,1.16,14.98 +Call of Duty: Modern Warfare 3,X360,2011,Shooter,Activision,9.03,4.28,0.13,1.32,14.76 +Pokemon Yellow: Special Pikachu Edition,GB,1998,Role-Playing,Nintendo,5.89,5.04,3.12,0.59,14.64 +Call of Duty: Black Ops,X360,2010,Shooter,Activision,9.67,3.73,0.11,1.13,14.64 +Pokemon X/Pokemon Y,3DS,2013,Role-Playing,Nintendo,5.17,4.05,4.34,0.79,14.35 +Call of Duty: Black Ops 3,PS4,2015,Shooter,Activision,5.77,5.81,0.35,2.31,14.24 +Call of Duty: Black Ops II,PS3,2012,Shooter,Activision,4.99,5.88,0.65,2.52,14.03 +Call of Duty: Black Ops II,X360,2012,Shooter,Activision,8.25,4.3,0.07,1.12,13.73 +Call of Duty: Modern Warfare 2,X360,2009,Shooter,Activision,8.52,3.63,0.08,1.29,13.51 +Call of Duty: Modern Warfare 3,PS3,2011,Shooter,Activision,5.54,5.82,0.49,1.62,13.46 +Grand Theft Auto III,PS2,2001,Action,Take-Two Interactive,6.99,4.51,0.3,1.3,13.1 +Super Smash Bros. Brawl,Wii,2008,Fighting,Nintendo,6.75,2.61,2.66,1.02,13.04 +Call of Duty: Black Ops,PS3,2010,Shooter,Activision,5.98,4.44,0.48,1.83,12.73 +Animal Crossing: Wild World,DS,2005,Simulation,Nintendo,2.55,3.52,5.33,0.88,12.27 +Mario Kart 7,3DS,2011,Racing,Nintendo,4.74,3.91,2.67,0.89,12.21 +Halo 3,X360,2007,Shooter,Microsoft Game Studios,7.97,2.83,0.13,1.21,12.14 +Grand Theft Auto V,PS4,2014,Action,Take-Two Interactive,3.8,5.81,0.36,2.02,11.98 +Pokemon HeartGold/Pokemon SoulSilver,DS,2009,Action,Nintendo,4.4,2.77,3.96,0.77,11.9 +Super Mario 64,N64,1996,Platform,Nintendo,6.91,2.85,1.91,0.23,11.89 +Gran Turismo 4,PS2,2004,Racing,Sony Computer Entertainment,3.01,0.01,1.1,7.53,11.66 +Super Mario Galaxy,Wii,2007,Platform,Nintendo,6.16,3.4,1.2,0.76,11.52 +Pokemon Omega Ruby/Pokemon Alpha Sapphire,3DS,2014,Role-Playing,Nintendo,4.23,3.37,3.08,0.65,11.33 +Super Mario Land 2: 6 Golden Coins,GB,1992,Adventure,Nintendo,6.16,2.04,2.69,0.29,11.18 +Grand Theft Auto IV,X360,2008,Action,Take-Two Interactive,6.76,3.1,0.14,1.03,11.02 +Gran Turismo,PS,1997,Racing,Sony Computer Entertainment,4.02,3.87,2.54,0.52,10.95 +Super Mario 3D Land,3DS,2011,Platform,Nintendo,4.89,2.99,2.13,0.78,10.79 +Gran Turismo 5,PS3,2010,Racing,Sony Computer Entertainment,2.96,4.88,0.81,2.12,10.77 +Call of Duty: Modern Warfare 2,PS3,2009,Shooter,Activision,4.99,3.69,0.38,1.63,10.69 +Grand Theft Auto IV,PS3,2008,Action,Take-Two Interactive,4.76,3.76,0.44,1.62,10.57 +Super Mario All-Stars,SNES,1993,Platform,Nintendo,5.99,2.15,2.12,0.29,10.55 +Pokemon FireRed/Pokemon LeafGreen,GBA,2004,Role-Playing,Nintendo,4.34,2.65,3.15,0.35,10.49 +Super Mario 64,DS,2004,Platform,Nintendo,5.08,3.11,1.25,0.98,10.42 +Just Dance 3,Wii,2011,Misc,Ubisoft,6.05,3.15,0,1.07,10.26 +Call of Duty: Ghosts,X360,2013,Shooter,Activision,6.72,2.63,0.04,0.82,10.21 +Halo: Reach,X360,2010,Shooter,Microsoft Game Studios,7.03,1.98,0.08,0.78,9.88 +Mario Kart 64,N64,1996,Racing,Nintendo,5.55,1.94,2.23,0.15,9.87 +New Super Mario Bros. 2,3DS,2012,Platform,Nintendo,3.66,3.07,2.47,0.63,9.82 +Halo 4,X360,2012,Shooter,Microsoft Game Studios,6.63,2.36,0.04,0.73,9.76 +Final Fantasy VII,PS,1997,Role-Playing,Sony Computer Entertainment,3.01,2.47,3.28,0.96,9.72 +Call of Duty: Ghosts,PS3,2013,Shooter,Activision,4.09,3.73,0.38,1.38,9.59 +Just Dance 2,Wii,2010,Misc,Ubisoft,5.84,2.89,0.01,0.78,9.52 +Gran Turismo 2,PS,1999,Racing,Sony Computer Entertainment,3.88,3.42,1.69,0.5,9.49 +Call of Duty 4: Modern Warfare,X360,2007,Shooter,Activision,5.91,2.38,0.13,0.9,9.32 +Donkey Kong Country,SNES,1994,Platform,Nintendo,4.36,1.71,3,0.23,9.3 +Minecraft,X360,2013,Misc,Microsoft Game Studios,5.58,2.83,0.02,0.77,9.2 +Animal Crossing: New Leaf,3DS,2012,Simulation,Nintendo,2.01,2.32,4.36,0.41,9.09 +Mario Party DS,DS,2007,Misc,Nintendo,4.46,1.88,1.98,0.7,9.02 +The Elder Scrolls V: Skyrim,X360,2011,Role-Playing,Bethesda Softworks,5.03,2.86,0.1,0.85,8.84 +Super Mario Kart,SNES,1992,Racing,Nintendo,3.54,1.24,3.81,0.18,8.76 +FIFA 16,PS4,2015,Sports,Electronic Arts,1.11,6.06,0.06,1.26,8.49 +Wii Party,Wii,2010,Misc,Nintendo,1.79,3.53,2.49,0.68,8.49 +Halo 2,XB,2004,Shooter,Microsoft Game Studios,6.82,1.53,0.05,0.08,8.49 +Mario Party 8,Wii,2007,Misc,Nintendo,3.81,2.3,1.58,0.73,8.42 +Pokemon Black 2/Pokemon White 2,DS,2012,Role-Playing,Nintendo,2.91,1.86,3.14,0.43,8.33 +FIFA Soccer 13,PS3,2012,Action,Electronic Arts,1.06,5.05,0.13,2.01,8.24 +The Sims 3,PC,2009,Simulation,Electronic Arts,0.98,6.42,0,0.71,8.11 +GoldenEye 007,N64,1997,Shooter,Nintendo,5.8,2.01,0.13,0.15,8.09 +Mario & Sonic at the Olympic Games,Wii,2007,Sports,Sega,2.58,3.9,0.66,0.91,8.06 +Final Fantasy X,PS2,2001,Role-Playing,Sony Computer Entertainment,2.91,2.07,2.73,0.33,8.05 +Final Fantasy VIII,PS,1999,Role-Playing,SquareSoft,2.28,1.72,3.63,0.23,7.86 +Pok?mon Platinum Version,DS,2008,Role-Playing,Nintendo,2.82,1.78,2.69,0.55,7.84 +Pac-Man,2600,1982,Puzzle,Atari,7.28,0.45,0,0.08,7.81 +Grand Theft Auto: Liberty City Stories,PSP,2005,Action,Take-Two Interactive,2.9,2.83,0.24,1.75,7.72 +Super Mario Galaxy 2,Wii,2010,Platform,Nintendo,3.66,2.42,0.98,0.64,7.69 +Star Wars Battlefront (2015),PS4,2015,Shooter,Electronic Arts,2.93,3.29,0.22,1.23,7.67 +Call of Duty: Advanced Warfare,PS4,2014,Shooter,Activision,2.8,3.3,0.14,1.37,7.6 +The Legend of Zelda: Ocarina of Time,N64,1998,Action,Nintendo,4.1,1.89,1.45,0.16,7.6 +Crash Bandicoot 2: Cortex Strikes Back,PS,1997,Platform,Sony Computer Entertainment,3.78,2.17,1.31,0.31,7.58 +Super Mario Bros. 2,NES,1988,Platform,Nintendo,5.39,1.18,0.7,0.19,7.46 +Super Smash Bros. for Wii U and 3DS,3DS,2014,Fighting,Nintendo,3.24,1.35,2.42,0.43,7.45 +Call of Duty: World at War,X360,2008,Shooter,Activision,4.79,1.9,0,0.69,7.37 +Battlefield 3,X360,2011,Shooter,Electronic Arts,4.46,2.13,0.06,0.69,7.34 +The Legend of Zelda: Twilight Princess,Wii,2006,Action,Nintendo,3.83,2.19,0.6,0.7,7.31 +Call of Duty: Black Ops 3,XOne,2015,Shooter,Activision,4.52,2.09,0.01,0.67,7.3 +Just Dance,Wii,2009,Misc,Ubisoft,3.51,3.03,0,0.73,7.27 +Battlefield 3,PS3,2011,Shooter,Electronic Arts,2.85,2.93,0.35,1.1,7.23 +Need for Speed Underground,PS2,2003,Racing,Electronic Arts,3.27,2.83,0.08,1.02,7.2 +Tekken 3,PS,1998,Fighting,Sony Computer Entertainment,3.27,2.22,1.4,0.29,7.16 +Crash Bandicoot 3: Warped,PS,1998,Platform,Sony Computer Entertainment,3.68,1.75,1.42,0.28,7.13 +Super Smash Bros. Melee,GC,2001,Fighting,Nintendo,4.41,1.04,1.39,0.22,7.07 +Mario Kart 8,WiiU,2014,Racing,Nintendo,3.13,2.07,1.27,0.49,6.96 +Fallout 4,PS4,2015,Role-Playing,Bethesda Softworks,2.47,3.15,0.24,1.1,6.96 +Mario Kart: Double Dash!!,GC,2003,Racing,Nintendo,4.12,1.77,0.87,0.19,6.95 +Just Dance 4,Wii,2012,Misc,Ubisoft,4.14,2.21,0,0.56,6.91 +FIFA 14,PS3,2013,Sports,Electronic Arts,0.78,4.32,0.07,1.73,6.9 +Need for Speed Underground 2,PS2,2004,Racing,Electronic Arts,2.71,3.02,0.08,1.09,6.9 +Medal of Honor: Frontline,PS2,2002,Shooter,Electronic Arts,2.93,2.75,0.17,0.99,6.83 +Uncharted 3: Drake's Deception,PS3,2011,Action,Sony Computer Entertainment,2.77,2.8,0.19,1.06,6.83 +Crash Bandicoot,PS,1996,Platform,Sony Computer Entertainment,3.23,2.35,0.94,0.3,6.82 +Zumba Fitness,Wii,2010,Sports,505 Games,3.5,2.64,0,0.67,6.81 +Gears of War 2,X360,2008,Shooter,Microsoft Game Studios,4.15,1.92,0.06,0.64,6.76 +Uncharted 2: Among Thieves,PS3,2009,Action,Sony Computer Entertainment,3.27,2.25,0.21,1,6.73 +Call of Duty 4: Modern Warfare,PS3,2007,Shooter,Activision,3.1,2.3,0.28,1.04,6.72 +FIFA 12,PS3,2011,Sports,Electronic Arts,0.84,4.32,0.11,1.42,6.69 +Big Brain Academy,DS,2005,Misc,Nintendo,1.67,2.78,1.6,0.62,6.67 +Red Dead Redemption,PS3,2010,Action,Take-Two Interactive,2.79,2.61,0.17,1.03,6.6 +FIFA 15,PS4,2014,Sports,Electronic Arts,0.79,4.29,0.05,1.47,6.59 +Donkey Kong Country Returns,Wii,2010,Platform,Nintendo,3.25,1.84,1.03,0.47,6.59 +The Elder Scrolls V: Skyrim,PS3,2011,Role-Playing,Bethesda Softworks,2.55,2.71,0.25,1.05,6.56 +The Legend of Zelda,NES,1986,Action,Nintendo,3.74,0.93,1.69,0.14,6.51 +Assassin's Creed III,PS3,2012,Action,Ubisoft,2.64,2.56,0.16,1.14,6.5 +Halo: Combat Evolved,XB,2001,Shooter,Microsoft Game Studios,4.98,1.3,0.08,0.07,6.43 +Pok?mon Emerald Version,GBA,2004,Role-Playing,Nintendo,2.57,1.58,2.06,0.21,6.41 +Kingdom Hearts,PS2,2002,Role-Playing,Sony Computer Entertainment,3.64,1.2,1.49,0.07,6.4 +Pok?mon Crystal Version,GB,2000,Role-Playing,Nintendo,2.55,1.56,1.29,0.99,6.39 +Halo 3: ODST,X360,2009,Shooter,Microsoft Game Studios,4.34,1.35,0.06,0.61,6.36 +Red Dead Redemption,X360,2010,Action,Take-Two Interactive,3.7,1.97,0.09,0.57,6.34 +Super Mario Sunshine,GC,2002,Platform,Nintendo,4.01,1.26,0.87,0.17,6.31 +Street Fighter II: The World Warrior,SNES,1992,Fighting,Capcom,2.47,0.83,2.87,0.12,6.3 +World of Warcraft,PC,2004,Role-Playing,Activision,0.07,6.21,0,0,6.28 +Driver,PS,1999,Action,GT Interactive,3.11,2.8,0.02,0.33,6.27 +Kinect Sports,X360,2010,Sports,Microsoft Game Studios,3.92,1.78,0.03,0.51,6.24 +Gears of War 3,X360,2011,Shooter,Microsoft Game Studios,4.05,1.62,0.07,0.49,6.24 +Gears of War,X360,2006,Shooter,Microsoft Game Studios,3.54,1.9,0.07,0.6,6.11 +Metal Gear Solid 2: Sons of Liberty,PS2,2001,Action,Konami Digital Entertainment,2.45,2.01,0.87,0.72,6.05 +Sonic the Hedgehog 2,GEN,1992,Platform,Sega,4.47,1.2,0.16,0.19,6.03 +Metal Gear Solid 4: Guns of the Patriots,PS3,2008,Action,Konami Digital Entertainment,2.63,1.74,0.83,0.83,6.03 +Metal Gear Solid,PS,1998,Action,Konami Digital Entertainment,3.18,1.83,0.78,0.24,6.03 +The Last of Us,PS3,2013,Action,Sony Computer Entertainment Europe,2.41,2.28,0.28,1.01,5.99 +Final Fantasy XII,PS2,2006,Role-Playing,Square Enix,1.88,0,2.33,1.74,5.95 +LittleBigPlanet,PS3,2008,Platform,Sony Computer Entertainment,2.8,2.05,0.17,0.9,5.92 +Dragon Quest IX: Sentinels of the Starry Skies,DS,2009,Role-Playing,Nintendo,0.66,0.69,4.35,0.15,5.84 +LEGO Star Wars: The Complete Saga,Wii,2007,Action,LucasArts,3.66,1.63,0,0.53,5.83 +Resident Evil 2,PS,1998,Action,Virgin Interactive,1.88,1.47,2.02,0.45,5.82 +Tekken 2,PS,1996,Fighting,Sony Computer Entertainment,2.26,1.89,1.36,0.23,5.74 +Cooking Mama,DS,2006,Simulation,505 Games,3.13,1.94,0.07,0.58,5.72 +Destiny,PS4,2014,Shooter,Activision,2.49,2.05,0.16,0.96,5.65 +Tetris,NES,1988,Puzzle,Nintendo,2.97,0.69,1.81,0.11,5.58 +Assassin's Creed II,PS3,2009,Action,Ubisoft,2.54,1.95,0.21,0.87,5.57 +Super Smash Bros.,N64,1999,Fighting,Nintendo,2.95,0.6,1.97,0.04,5.55 +Assassin's Creed,X360,2007,Adventure,Ubisoft,3.28,1.65,0.07,0.55,5.55 +Batman: Arkham City,PS3,2011,Action,Warner Bros. Interactive Entertainment,2.7,1.91,0.11,0.8,5.53 +Forza Motorsport 3,X360,2009,Racing,Microsoft Game Studios,2.99,1.92,0.1,0.51,5.51 +Monster Hunter Freedom Unite,PSP,2008,Role-Playing,Capcom,0.47,0.57,4.13,0.34,5.5 +Super Mario Advance,GBA,2001,Platform,Nintendo,3.14,1.24,0.91,0.2,5.49 +Mario Kart: Super Circuit,GBA,2001,Racing,Nintendo,2.62,1.64,0.99,0.23,5.47 +Super Mario World,GBA,2001,Platform,Nintendo,3.21,1.11,0.95,0.2,5.46 +Pokemon Stadium,N64,1999,Strategy,Nintendo,3.18,1.24,0.94,0.09,5.45 +Call of Duty: World at War,PS3,2008,Shooter,Activision,2.72,1.87,0,0.84,5.43 +Crash Bandicoot: The Wrath of Cortex,PS2,2001,Platform,Universal Interactive,2.07,2.29,0.24,0.82,5.42 +Minecraft,PS3,2014,Misc,Sony Computer Entertainment,1.97,2.51,0,0.94,5.42 +Final Fantasy XIII,PS3,2009,Role-Playing,Square Enix,1.74,1.24,1.87,0.52,5.36 +Dr. Mario,GB,1989,Puzzle,Nintendo,2.18,0.96,2,0.2,5.34 +Pokemon Pinball,GB,1999,Misc,Nintendo,3.02,1.12,1.01,0.16,5.31 +Assassin's Creed III,X360,2012,Action,Ubisoft,3.13,1.71,0.03,0.44,5.3 +Final Fantasy IX,PS,2000,Role-Playing,SquareSoft,1.62,0.77,2.78,0.14,5.3 +Final Fantasy X-2,PS2,2003,Role-Playing,Electronic Arts,1.92,1.08,2.11,0.17,5.29 +Donkey Kong 64,N64,1999,Platform,Nintendo,3.33,0.79,1.09,0.06,5.27 +Assassin's Creed II,X360,2009,Action,Ubisoft,3.1,1.56,0.08,0.51,5.27 +Professor Layton and the Curious Village,DS,2007,Puzzle,Nintendo,1.22,2.48,1.03,0.52,5.26 +Tomb Raider II,PS,1997,Action,Eidos Interactive,2.3,2.46,0.2,0.28,5.24 +Madden NFL 2004,PS2,,Sports,Electronic Arts,4.26,0.26,0.01,0.71,5.23 +Dragon Quest VIII: Journey of the Cursed King,PS2,2004,Role-Playing,Square Enix,0.65,0.75,3.61,0.2,5.21 +Diablo III,PC,2012,Role-Playing,Activision,2.43,2.15,0,0.62,5.2 +Super Mario Bros. 3,GBA,2003,Platform,Nintendo,2.93,1.25,0.83,0.2,5.2 +New Super Mario Bros. U,WiiU,2012,Platform,Nintendo,2.32,1.3,1.27,0.31,5.19 +Super Mario Land 3: Wario Land,GB,1994,Platform,Nintendo,2.49,0.98,1.57,0.15,5.19 +FIFA Soccer 13,X360,2012,Action,Electronic Arts,1.08,3.48,0.03,0.58,5.18 +The Legend of Zelda: Phantom Hourglass,DS,2007,Action,Nintendo,1.9,1.83,0.95,0.49,5.17 +Donkey Kong Country 2: Diddy's Kong Quest,SNES,1995,Platform,Nintendo,2.1,0.74,2.2,0.11,5.15 +Tomodachi Life,3DS,2013,Simulation,Nintendo,0.96,2.02,1.89,0.28,5.15 +Mario & Sonic at the Olympic Games,DS,2008,Sports,Sega,1.64,2.48,0.44,0.58,5.14 +Medal of Honor: Rising Sun,PS2,2003,Shooter,Electronic Arts,1.98,2.23,0.13,0.8,5.13 +Kirby's Dream Land,GB,1992,Platform,Nintendo,2.71,0.61,1.7,0.11,5.13 +Fable III,X360,2010,Role-Playing,Microsoft Game Studios,3.59,1.11,0.05,0.38,5.13 +Call of Duty: Advanced Warfare,XOne,2014,Shooter,Activision,3.21,1.53,0.01,0.38,5.13 +Microsoft Flight Simulator,PC,1996,Simulation,Microsoft Game Studios,3.22,1.69,0,0.2,5.12 +Guitar Hero II,PS2,2006,Misc,RedOctane,3.81,0.63,0,0.68,5.12 +Resident Evil 5,PS3,2009,Action,Capcom,1.96,1.43,1.08,0.65,5.11 +Grand Theft Auto V,XOne,2014,Action,Take-Two Interactive,2.66,2.01,0,0.41,5.08 +Grand Theft Auto: Vice City Stories,PSP,2006,Action,Take-Two Interactive,1.7,2.02,0.16,1.21,5.08 +FIFA Soccer 11,PS3,2010,Sports,Electronic Arts,0.6,3.29,0.06,1.13,5.08 +Super Mario Bros.,GB,1999,Platform,Nintendo,3.4,1.3,0.15,0.22,5.07 +Resident Evil,PS,1996,Action,Virgin Interactive,2.05,1.16,1.11,0.73,5.05 +Tony Hawk's Pro Skater,PS,1999,Sports,Activision,3.42,1.38,0.02,0.2,5.02 +Super Smash Bros. for Wii U and 3DS,WiiU,2014,Fighting,Nintendo,2.59,1.06,0.8,0.57,5.02 +Warzone 2100,PS,1999,Strategy,Eidos Interactive,2.79,1.89,0,0.33,5.01 +Spyro the Dragon,PS,1998,Platform,Sony Computer Entertainment,3.36,1.36,0.07,0.21,5 +Link's Crossbow Training,Wii,2007,Shooter,Nintendo,3.06,1.18,0.29,0.46,5 +Guitar Hero III: Legends of Rock,PS2,2007,Misc,Activision,3.49,0.01,0.01,1.48,4.98 +Fallout 3,X360,2008,Role-Playing,Bethesda Softworks,3.39,1.03,0.09,0.44,4.96 +Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness,DS,2007,Role-Playing,Nintendo,1.85,1.2,1.54,0.37,4.96 +Uncharted: Drake's Fortune,PS3,2007,Action,Sony Computer Entertainment,2.31,1.73,0.12,0.78,4.94 +Madden NFL 06,PS2,2005,Sports,Electronic Arts,3.98,0.26,0.01,0.66,4.91 +LEGO Star Wars: The Complete Saga,DS,2007,Action,LucasArts,2.89,1.54,0,0.46,4.9 +Diddy Kong Racing,N64,1997,Racing,Nintendo,2.91,0.99,0.89,0.1,4.88 +Monster Hunter Freedom 3,PSP,2010,Role-Playing,Capcom,0,0,4.87,0,4.87 +Dr. Mario,NES,1990,Puzzle,Nintendo,2.62,0.6,1.52,0.1,4.85 +God of War III,PS3,2010,Action,Sony Computer Entertainment,2.74,1.36,0.12,0.63,4.84 +StarCraft II: Wings of Liberty,PC,2010,Strategy,Activision,2.56,1.68,0,0.59,4.83 +Assassin's Creed,PS3,2007,Adventure,Ubisoft,1.91,2,0.09,0.83,4.83 +FIFA 15,PS3,2014,Sports,Electronic Arts,0.57,3.14,0.04,1.07,4.82 +Crash Team Racing,PS,1999,Racing,Sony Computer Entertainment,2.57,1.57,0.44,0.21,4.79 +FIFA 17,PS4,2016,Sports,Electronic Arts,0.28,3.75,0.06,0.69,4.77 +Batman: Arkham City,X360,2011,Action,Warner Bros. Interactive Entertainment,2.99,1.31,0.04,0.41,4.76 +Driver 2,PS,2000,Action,Atari,2.36,2.1,0.02,0.25,4.73 +The Simpsons: Hit & Run,PS2,2003,Racing,Vivendi Games,1.73,2.19,0,0.79,4.7 +Tony Hawk's Pro Skater 2,PS,2000,Sports,Activision,3.05,1.41,0.02,0.2,4.68 +Animal Crossing: City Folk,Wii,2008,Simulation,Nintendo,1.87,1.12,1.32,0.37,4.68 +The Lord of the Rings: The Two Towers,PS2,2002,Action,Electronic Arts,1.94,1.95,0.08,0.7,4.67 +Forza Motorsport 4,X360,2011,Racing,Microsoft Game Studios,2.08,2.04,0.06,0.47,4.64 +Tomb Raider,PS,1996,Action,Eidos Interactive,2.29,1.97,0.13,0.24,4.63 +Guitar Hero III: Legends of Rock,Wii,2007,Misc,Activision,3.06,1.12,0,0.44,4.62 +The Legend of Zelda: A Link to the Past,SNES,1991,Action,Nintendo,2.42,0.91,1.15,0.13,4.61 +The Legend of Zelda: The Wind Waker,GC,2002,Action,Nintendo,2.6,0.99,0.89,0.13,4.6 +Mario & Sonic at the Olympic Winter Games,Wii,2009,Sports,Sega,1.89,1.99,0.22,0.48,4.58 +Luigi's Mansion: Dark Moon,3DS,2013,Action,Nintendo,1.78,1.39,1.1,0.3,4.58 +Splatoon,WiiU,2015,Shooter,Nintendo,1.55,1.15,1.44,0.43,4.57 +The Last of Us,PS4,2014,Action,Sony Computer Entertainment,1.78,1.87,0.07,0.82,4.55 +Guitar Hero III: Legends of Rock,X360,2007,Misc,Activision,3.19,0.92,0.01,0.42,4.53 +Madden NFL 2005,PS2,2004,Sports,Electronic Arts,4.18,0.26,0.01,0.08,4.53 +Pitfall!,2600,1981,Platform,Activision,4.21,0.24,0,0.05,4.5 +Madden NFL 07,PS2,2006,Sports,Electronic Arts,3.63,0.24,0.01,0.61,4.49 +Spider-Man: The Movie,PS2,2002,Action,Activision,2.71,1.51,0.03,0.23,4.48 +Dragon Quest VII: Warriors of Eden,PS,2000,Role-Playing,Enix Corporation,0.2,0.14,4.1,0.02,4.47 +Uncharted: The Nathan Drake Collection,PS4,2015,Action,Sony Computer Entertainment,1.96,1.69,0.08,0.74,4.47 +Call of Duty: Advanced Warfare,PS3,2014,Shooter,Activision,1.54,1.94,0.19,0.77,4.45 +God of War,PS2,2005,Action,Sony Computer Entertainment,2.71,1.29,0.02,0.43,4.45 +Nintendo Land,WiiU,2012,Misc,Nintendo,2.55,1.11,0.46,0.33,4.44 +Michael Jackson: The Experience,Wii,2010,Misc,Ubisoft,2.67,1.35,0.01,0.39,4.42 +Tony Hawk's Pro Skater 3,PS2,2001,Sports,Activision,2.66,1.29,0.01,0.46,4.41 +Winning Eleven: Pro Evolution Soccer 2007,PS2,2006,Sports,Konami Digital Entertainment,0.1,2.39,1.05,0.86,4.39 +The Elder Scrolls IV: Oblivion,X360,2006,Role-Playing,Take-Two Interactive,2.82,1.05,0.13,0.4,4.39 +Zelda II: The Adventure of Link,NES,1987,Adventure,Nintendo,2.19,0.5,1.61,0.08,4.38 +Need for Speed: Most Wanted,PS2,2005,Racing,Electronic Arts,2.03,1.79,0.08,0.47,4.37 +Resistance: Fall of Man,PS3,2006,Shooter,Sony Computer Entertainment,1.73,1.73,0.14,0.75,4.35 +Sonic the Hedgehog,GEN,1991,Platform,Sega,3.03,0.91,0.26,0.13,4.34 +Kingdom Hearts II,PS2,2005,Role-Playing,Square Enix,2.2,0.58,1.38,0.17,4.33 +FIFA 14,X360,2013,Sports,Electronic Arts,0.92,2.93,0.01,0.46,4.31 +Call of Duty: Advanced Warfare,X360,2014,Shooter,Activision,2.75,1.18,0,0.37,4.31 +Asteroids,2600,1980,Shooter,Atari,4,0.26,0,0.05,4.31 +Fable II,X360,2008,Role-Playing,Microsoft Game Studios,2.51,1.27,0.11,0.41,4.31 +Halo 5: Guardians,XOne,2015,Shooter,Microsoft Game Studios,2.64,1.2,0.03,0.39,4.26 +Super Mario 3D World,WiiU,2013,Platform,Nintendo,2.11,1.11,0.72,0.3,4.25 +Batman: Arkham Asylum,PS3,2009,Action,Eidos Interactive,2.23,1.34,0.07,0.61,4.25 +Assassin's Creed: Revelations,PS3,2011,Action,Ubisoft,1.41,2.02,0.1,0.72,4.24 +Namco Museum,GBA,2001,Misc,Namco Bandai Games,3,1.11,0.05,0.07,4.24 +Metal Gear Solid 3: Snake Eater,PS2,2004,Action,Konami Digital Entertainment,1.46,0,0.83,1.93,4.23 +Daxter,PSP,2006,Platform,Sony Computer Entertainment,2.45,1.02,0,0.75,4.22 +Warcraft II: Tides of Darkness,PC,1995,Strategy,Activision,1.7,2.27,0,0.23,4.21 +The Legend of Zelda: Ocarina of Time,3DS,2011,Action,Nintendo,2.03,1.27,0.62,0.3,4.21 +FIFA Soccer 06,PS2,2005,Sports,Electronic Arts,0.78,2.55,0.04,0.84,4.21 +EyeToy Play,PS2,2003,Misc,Sony Computer Entertainment,0.88,2.3,0.2,0.83,4.2 +Uncharted 4: A Thief's End,PS4,2016,Shooter,Sony Computer Entertainment,1.3,2.07,0.18,0.65,4.2 +Gran Turismo 5 Prologue,PS3,2007,Racing,Sony Computer Entertainment,1.28,1.83,0.57,0.53,4.2 +Assassin's Creed: Revelations,X360,2011,Action,Ubisoft,2.25,1.47,0.04,0.43,4.19 +Street Fighter IV,PS3,2009,Fighting,Capcom,2.02,1.06,0.58,0.53,4.19 +FIFA 12,X360,2011,Sports,Electronic Arts,0.84,2.79,0.02,0.53,4.19 +Teenage Mutant Ninja Turtles,NES,1989,Action,Palcom,3.38,0.44,0.31,0.04,4.17 +Excitebike,NES,1984,Racing,Nintendo,2.04,0.48,1.57,0.07,4.16 +Frogger,PS,1997,Action,Hasbro Interactive,3.79,0.27,0,0.11,4.16 +Madden NFL 2003,PS2,2002,Sports,Electronic Arts,3.36,0.21,0.01,0.56,4.14 +Watch Dogs,PS4,2014,Action,Ubisoft,1.4,1.86,0.11,0.77,4.14 +Half-Life,PC,1997,Shooter,Vivendi Games,4.03,0,0.09,0,4.12 +Super Mario World 2: Yoshi's Island,SNES,1995,Platform,Nintendo,1.65,0.61,1.76,0.09,4.12 +FIFA Soccer 07,PS2,2006,Sports,Electronic Arts,0.71,2.48,0.03,0.89,4.11 +The Legend of Zelda: Skyward Sword,Wii,2011,Action,Nintendo,2.14,1.2,0.37,0.4,4.1 +Street Fighter II Turbo,SNES,1992,Fighting,Capcom,1.42,0.51,2.1,0.07,4.1 +Carnival Games,Wii,2007,Misc,Take-Two Interactive,2.13,1.5,0.05,0.42,4.1 +Fallout 4,XOne,2015,Role-Playing,Bethesda Softworks,2.45,1.26,0.01,0.37,4.09 +World of Warcraft: The Burning Crusade,PC,2007,Role-Playing,Activision,2.57,1.52,0,0,4.09 +Fallout: New Vegas,X360,2010,Role-Playing,Bethesda Softworks,2.65,1.06,0.04,0.33,4.08 +God of War II,PS2,2007,Action,Sony Computer Entertainment,2.32,0.04,0.04,1.67,4.07 +Forza Motorsport 2,X360,2007,Racing,Microsoft Game Studios,2.35,1.28,0.03,0.41,4.06 +World Soccer Winning Eleven 9,PS2,2005,Sports,Konami Digital Entertainment,0.12,2.26,0.9,0.77,4.06 +Namco Museum Vol.3,PS,1996,Misc,Sony Computer Entertainment,2.28,1.55,0.16,0.06,4.05 +Tekken Tag Tournament,PS2,2000,Fighting,Namco Bandai Games,1.68,1.51,0.51,0.35,4.05 +Far Cry 4,PS4,2014,Shooter,Ubisoft,1.12,2.12,0.1,0.69,4.03 +Star Fox 64,N64,1997,Shooter,Nintendo,2.78,0.58,0.64,0.04,4.03 +Minecraft,PS4,2014,Misc,Sony Computer Entertainment Europe,1.38,1.87,0.12,0.65,4.02 +Golf,NES,1984,Sports,Nintendo,1.22,0.28,2.46,0.04,4.01 +Fallout 3,PS3,2008,Role-Playing,Bethesda Softworks,2.15,1.2,0.07,0.59,4.01 +Professor Layton and the Diabolical Box,DS,2007,Puzzle,Nintendo,0.92,1.78,0.92,0.37,4 +Left 4 Dead 2,X360,2009,Shooter,Electronic Arts,2.67,0.89,0.05,0.37,3.99 +Namco Museum: 50th Anniversary,PS2,2005,Misc,Namco Bandai Games,2.08,1.35,0,0.54,3.98 +EA Sports Active,Wii,2009,Sports,Electronic Arts,2.1,1.36,0.06,0.4,3.92 +Assassin's Creed: Unity,PS4,2014,Action,Ubisoft,1.18,1.96,0.08,0.7,3.92 +Donkey Kong Land,GB,1994,Platform,Nintendo,1.97,0.76,1.07,0.11,3.91 +Tony Hawk's Underground,PS2,2003,Sports,Activision,2.29,1.17,0.01,0.42,3.9 +Assassin's Creed IV: Black Flag,PS3,2013,Action,Ubisoft,1.33,1.71,0.13,0.73,3.89 +Monster Hunter 4 Ultimate,3DS,2014,Role-Playing,Nintendo,0.67,0.49,2.62,0.11,3.89 +MotorStorm,PS3,2006,Racing,Sony Computer Entertainment,1.53,1.61,0.06,0.67,3.88 +The Elder Scrolls V: Skyrim,PC,2011,Role-Playing,Bethesda Softworks,1.15,2.09,0,0.64,3.88 +Tekken 5,PS2,2005,Fighting,Namco Bandai Games,0.93,1.94,0.31,0.7,3.87 +Dragon Warrior III,NES,1988,Role-Playing,Enix Corporation,0.1,0,3.77,0,3.87 +Sports Champions,PS3,2010,Sports,Sony Computer Entertainment,2.12,1.14,0.1,0.51,3.87 +NBA 2K16,PS4,2015,Sports,Take-Two Interactive,2.48,0.65,0.03,0.69,3.85 +World Soccer Winning Eleven 8 International,PS2,2004,Sports,Konami Digital Entertainment,0.16,1.89,1.12,0.68,3.85 +Flash Focus: Vision Training in Minutes a Day,DS,2007,Misc,Nintendo,0.87,1.57,1.05,0.35,3.84 +Namco Museum Vol.1,PS,1995,Misc,Sony Computer Entertainment,2.12,1.44,0.22,0.06,3.84 +The Legend of Zelda: Link's Awakening,GB,1992,Action,Nintendo,2.21,0.96,0.54,0.13,3.83 +Mario & Luigi: Bowser's Inside Story,DS,2009,Role-Playing,Nintendo,2.26,0.48,0.81,0.27,3.83 +Big Brain Academy: Wii Degree,Wii,2007,Misc,Nintendo,1.06,1.93,0.41,0.43,3.82 +Nintendogs + cats,3DS,2011,Simulation,Nintendo,1.44,1.37,0.73,0.27,3.81 +Batman: Arkham Knight,PS4,2015,Action,Warner Bros. Interactive Entertainment,1.49,1.58,0.1,0.61,3.79 +Mario & Sonic at the London 2012 Olympic Games,Wii,2011,Sports,Sega,1.14,1.91,0.27,0.46,3.78 +LEGO Indiana Jones: The Original Adventures,X360,2008,Action,Activision,2.4,1.03,0,0.36,3.78 +Resident Evil Director's Cut,PS,1996,Action,Virgin Interactive,1.82,1.24,0.47,0.25,3.77 +Ratchet & Clank: Size Matters,PSP,2007,Platform,Sony Computer Entertainment,1.4,1.4,0.1,0.87,3.77 +Just Dance 2014,Wii,2013,Misc,Ubisoft,1.98,1.47,0,0.32,3.76 +The Sims: Unleashed,PC,2002,Simulation,Electronic Arts,2.03,1.56,0,0.17,3.76 +Super Paper Mario,Wii,2007,Platform,Nintendo,1.98,0.88,0.59,0.32,3.76 +Harry Potter and the Sorcerer's Stone,PS,2001,Action,Electronic Arts,1.37,2,0.14,0.22,3.73 +The Witcher 3: Wild Hunt,PS4,2015,Role-Playing,Namco Bandai Games,0.96,2,0.21,0.56,3.73 +Resident Evil 3: Nemesis,PS,1999,Action,Eidos Interactive,1.3,0.77,1.54,0.11,3.72 +Spyro: Year of the Dragon,PS,2000,Platform,Sony Computer Entertainment,1.93,1.58,0,0.19,3.71 +FIFA Soccer 2005,PS2,2004,Sports,Electronic Arts,0.58,2.48,0.04,0.59,3.7 +Pok?mon Trading Card Game,GB,1998,Strategy,Nintendo,1.49,0.73,1.38,0.1,3.7 +Battlefield 4,PS3,2013,Shooter,Electronic Arts,1.3,1.51,0.27,0.61,3.69 +MySims,DS,2007,Simulation,Electronic Arts,1.59,1.61,0.08,0.41,3.69 +Friend Collection,DS,2009,Misc,Nintendo,0,0,3.67,0,3.67 +Tony Hawk's Pro Skater 4,PS2,2002,Sports,Activision,2.13,1.18,0.01,0.35,3.67 +Midnight Club 3: DUB Edition,PSP,2005,Racing,Take-Two Interactive,1.65,1.22,0,0.79,3.66 +Banjo-Kazooie,N64,1998,Platform,Nintendo,1.87,1.13,0.55,0.1,3.65 +SOCOM: U.S. Navy SEALs,PS2,2002,Shooter,Sony Computer Entertainment,2.53,0.81,0.06,0.24,3.65 +Guitar Hero: World Tour,Wii,2008,Misc,Activision,2.33,0.97,0,0.35,3.65 +Gran Turismo 6,PS3,2013,Racing,Sony Computer Entertainment,0.71,1.8,0.4,0.74,3.64 +Jak and Daxter: The Precursor Legacy,PS2,2001,Platform,Sony Computer Entertainment,2.08,1.09,0.15,0.33,3.64 +Pokemon Snap,N64,1999,Simulation,Nintendo,2.23,0.68,0.66,0.06,3.63 +FIFA Soccer 10,PS3,2009,Sports,Electronic Arts,0.6,2.46,0.05,0.52,3.63 +Pro Evolution Soccer 2008,PS2,2007,Sports,Konami Digital Entertainment,0.05,0,0.64,2.93,3.63 +Call of Duty: Ghosts,PS4,2013,Shooter,Activision,1.78,1.42,0.05,0.38,3.63 +Resident Evil 4,PS2,2005,Action,Capcom,2.08,0.83,0.46,0.25,3.62 +Tom Clancy's The Division,PS4,2016,Shooter,Ubisoft,1.28,1.61,0.15,0.57,3.61 +Star Wars: Battlefront,PS2,2004,Shooter,LucasArts,1.93,1.22,0.03,0.44,3.61 +Doom II: Hell on Earth,PC,1994,Shooter,Virgin Interactive,2.05,1.4,0,0.16,3.61 +The Simpsons: Road Rage,PS2,2001,Racing,Electronic Arts,2.02,1.17,0,0.42,3.61 +Cooking Mama 2: Dinner With Friends,DS,2007,Simulation,505 Games,1.61,1.5,0.1,0.39,3.61 +Luigi's Mansion,GC,2001,Action,Nintendo,2.38,0.67,0.46,0.1,3.6 +Star Wars: Battlefront II,PS2,2005,Shooter,LucasArts,2.18,1.02,0.03,0.37,3.59 +WWF SmackDown!,PS,2000,Fighting,THQ,2.01,1.35,0.06,0.16,3.58 +Croc: Legend of the Gobbos,PS,1997,Platform,Fox Interactive,1.57,1.79,0,0.2,3.56 +Grand Theft Auto: Liberty City Stories,PS2,2006,Action,Take-Two Interactive,1.56,1.4,0.07,0.5,3.54 +The Getaway,PS2,2002,Action,Sony Computer Entertainment,1.23,1.77,0.05,0.49,3.54 +Tomb Raider III: Adventures of Lara Croft,PS,1997,Action,Eidos Interactive,1.66,1.58,0.12,0.18,3.54 +James Bond 007: Agent Under Fire,PS2,2001,Shooter,Electronic Arts,1.9,1.13,0.1,0.41,3.53 +LEGO Star Wars: The Video Game,PS2,2005,Action,Eidos Interactive,1.98,1.14,0.01,0.41,3.53 +Battlefield 4,X360,2013,Shooter,Electronic Arts,2.14,1.08,0.02,0.29,3.53 +FIFA Soccer 11,X360,2010,Sports,Electronic Arts,0.71,2.4,0.02,0.4,3.53 +Rugrats in Paris: The Movie,PS,2000,Action,THQ,1.96,1.33,0,0.23,3.52 +Spyro 2: Ripto's Rage!,PS,1999,Platform,Sony Computer Entertainment,2.14,1.21,0.01,0.17,3.52 +Left 4 Dead,X360,2008,Shooter,Electronic Arts,2.66,0.5,0.05,0.3,3.52 +Mario & Sonic at the Olympic Winter Games,DS,2009,Sports,Sega,1.22,1.66,0.27,0.38,3.52 +Resident Evil 5,X360,2009,Action,Capcom,2.11,0.94,0.12,0.34,3.51 +Donkey Kong Country 3: Dixie Kong's Double Trouble!,SNES,1996,Platform,Nintendo,1.17,0.5,1.75,0.08,3.51 +Assassin's Creed: Brotherhood,X360,2010,Action,Ubisoft,2.84,0.39,0.03,0.24,3.5 +Kung Fu,NES,1985,Action,Nintendo,1.64,0.38,1.42,0.06,3.5 +Batman: Arkham Asylum,X360,2009,Action,Eidos Interactive,2.2,0.97,0.02,0.31,3.5 +Clubhouse Games,DS,2006,Misc,Nintendo,0.59,1.83,0.73,0.35,3.5 +FIFA Soccer 2004,PS2,,Sports,Electronic Arts,0.59,2.36,0.04,0.51,3.49 +Star Wars Battlefront (2015),XOne,2015,Shooter,Electronic Arts,1.94,1.22,0.02,0.31,3.49 +Battlefield: Bad Company 2,X360,2010,Shooter,Electronic Arts,2.09,1.02,0.04,0.32,3.48 +Guitar Hero: On Tour,DS,2008,Misc,Activision,2.11,1.01,0.01,0.35,3.48 +Assassin's Creed: Unity,XOne,2014,Action,Ubisoft,2.26,0.89,0,0.3,3.46 +Far Cry 3,PS3,2012,Shooter,Ubisoft,0.88,1.75,0.1,0.72,3.45 +Monster Hunter 4,3DS,2013,Role-Playing,Capcom,0,0,3.44,0,3.44 +Borderlands,X360,2009,Shooter,Take-Two Interactive,2.39,0.73,0.03,0.29,3.44 +Tekken 4,PS2,2002,Fighting,Namco Bandai Games,1.55,1.27,0.33,0.29,3.44 +Battlefield 4,PS4,2013,Shooter,Electronic Arts,1.34,1.54,0.17,0.38,3.43 +LittleBigPlanet 2,PS3,2011,Platform,Sony Computer Entertainment,1.82,1.07,0.06,0.47,3.42 +Grand Theft Auto 2,PS,1998,Action,Take-Two Interactive,1.13,2.07,0,0.22,3.42 +Final Fantasy III,SNES,1994,Role-Playing,SquareSoft,0.86,0,2.55,0.02,3.42 +Spider-Man 2,PS2,2004,Action,Activision,1.75,1.2,0.02,0.43,3.41 +F-1 Race,GB,1990,Racing,Nintendo,1.73,0.69,0.59,0.4,3.41 +FIFA Soccer 2003,PS2,2002,Sports,Electronic Arts,0.46,2.28,0.05,0.61,3.4 +Crash Bash,PS,2000,Misc,Sony Computer Entertainment,1.56,1.47,0.19,0.17,3.39 +LEGO Batman: The Videogame,X360,2008,Action,Warner Bros. Interactive Entertainment,2.03,1.03,0,0.32,3.38 +Metal Gear Solid V: The Phantom Pain,PS4,2015,Action,Konami Digital Entertainment,1.08,1.35,0.48,0.47,3.38 +The Legend of Zelda: Spirit Tracks,DS,2009,Action,Nintendo,1.43,0.94,0.74,0.27,3.38 +WWF War Zone,PS,1998,Fighting,Acclaim Entertainment,2.47,0.76,0,0.13,3.36 +The Legend of Zelda: Majora's Mask,N64,2000,Action,Nintendo,1.9,0.67,0.73,0.06,3.36 +Professor Layton and the Unwound Future,DS,2008,Puzzle,Nintendo,0.65,1.61,0.82,0.28,3.36 +Rugrats: Search For Reptar,PS,1998,Adventure,THQ,1.63,1.53,0,0.18,3.34 +Assassin's Creed IV: Black Flag,X360,2013,Action,Ubisoft,1.9,1.14,0.01,0.29,3.34 +English Training: Have Fun Improving Your Skills!,DS,2006,Misc,Nintendo,0,0.99,2.32,0.02,3.33 +James Bond 007: Nightfire,PS2,2002,Shooter,Electronic Arts,1.45,1.29,0.12,0.46,3.33 +Ratchet & Clank,PS2,2002,Platform,Sony Computer Entertainment,1.44,1.01,0.57,0.3,3.33 +Mario Party 9,Wii,2012,Misc,Nintendo,1.15,1.17,0.76,0.24,3.32 +Star Wars Episode III: Revenge of the Sith,PS2,2005,Action,LucasArts,1.47,1.39,0.03,0.43,3.32 +Max Payne,PS2,2001,Shooter,Take-Two Interactive,1.99,1.05,0.05,0.22,3.31 +The Lord of the Rings: The Return of the King,PS2,2003,Action,Electronic Arts,1.5,1.28,0.05,0.46,3.28 +Assassin's Creed Syndicate,PS4,2015,Action,Ubisoft,0.8,1.92,0.06,0.5,3.28 +Destiny,XOne,2014,Shooter,Activision,2.13,0.92,0,0.23,3.28 +True Crime: Streets of LA,PS2,2003,Action,Activision,1.89,1.05,0.02,0.31,3.27 +Wii Music,Wii,2008,Misc,Nintendo,1.36,1.13,0.46,0.32,3.27 +Gran Turismo (PSP),PSP,2009,Racing,Sony Computer Entertainment,0.5,1.59,0.31,0.87,3.27 +Monster Hunter X,3DS,2015,Action,Capcom,0.25,0.19,2.78,0.04,3.26 +Tekken,PS,1995,Fighting,Sony Computer Entertainment,0.95,1.3,0.77,0.22,3.24 +FIFA 16,XOne,2015,Sports,Electronic Arts,0.88,2.11,0,0.23,3.23 +L.A. Noire,PS3,2011,Adventure,Take-Two Interactive,1.27,1.33,0.12,0.51,3.23 +Madden NFL 16,PS4,2015,Sports,Electronic Arts,2.33,0.3,0,0.59,3.22 +Yokai Watch 2 Ganso/Honke,3DS,2014,Role-Playing,Nintendo,0.03,0,3.18,0,3.22 +007: Tomorrow Never Dies,PS,1999,Shooter,Electronic Arts,1.72,1.33,0,0.16,3.21 +Baseball,NES,1983,Sports,Nintendo,0.73,0.1,2.35,0.02,3.2 +Killer Instinct,SNES,1995,Fighting,Nintendo,2.26,0.72,0.12,0.1,3.2 +WWF SmackDown! 2: Know Your Role,PS,2000,Fighting,THQ,1.76,1.21,0.07,0.16,3.2 +Crisis Core: Final Fantasy VII,PSP,2007,Role-Playing,Square Enix,1.35,0.6,0.8,0.44,3.19 +God of War: Chains of Olympus,PSP,2008,Action,Sony Computer Entertainment,1.48,1.01,0.04,0.66,3.19 +Dragon Quest VI: Maboroshi no Daichi,SNES,1995,Role-Playing,Enix Corporation,0,0,3.19,0,3.19 +Dance Central,X360,2010,Misc,MTV Games,2.15,0.77,0.01,0.26,3.19 +Enter the Matrix,PS2,2003,Action,Atari,1.78,1.12,0.09,0.19,3.18 +Super Mario Maker,WiiU,2015,Platform,Nintendo,1.18,0.87,0.93,0.2,3.18 +Fallout: New Vegas,PS3,2010,Role-Playing,Bethesda Softworks,1.52,1.08,0.1,0.47,3.17 +LEGO Batman: The Videogame,Wii,,Action,Warner Bros. Interactive Entertainment,1.86,1.02,0,0.29,3.17 +Rhythm Heaven,DS,2008,Misc,Nintendo,0.58,0.51,1.93,0.14,3.17 +Ace Combat 04: Shattered Skies,PS2,2001,Simulation,Sony Computer Entertainment Europe,2.06,0.56,0.38,0.17,3.17 +Club Penguin: Elite Penguin Force,DS,2008,Adventure,Disney Interactive Studios,1.88,0.98,0,0.3,3.16 +Animal Crossing,GC,2001,Simulation,Nintendo,1.92,0.16,0.99,0.09,3.15 +LEGO Batman: The Videogame,DS,2008,Action,Warner Bros. Interactive Entertainment,1.79,1.06,0,0.29,3.15 +Sonic Rush,DS,2005,Platform,Sega,1.22,1.57,0.06,0.29,3.15 +Resident Evil 6,PS3,2012,Shooter,Capcom,0.88,0.97,0.88,0.42,3.15 +Halo: The Master Chief Collection,XOne,2014,Shooter,Microsoft Game Studios,1.89,0.99,0.03,0.24,3.15 +FIFA Soccer 08,PS2,2007,Sports,Electronic Arts,0.68,0,0,2.46,3.14 +Spider-Man,PS,2000,Action,Activision,1.7,1.25,0.02,0.16,3.13 +Need for Speed III: Hot Pursuit,PS,1998,Racing,Electronic Arts,2.14,0.86,0,0.13,3.12 +Star Wars Episode I Racer,N64,1999,Racing,Nintendo,2.31,0.62,0.14,0.04,3.12 +Personal Trainer: Cooking,DS,2006,Misc,Nintendo,0.91,1,1.03,0.17,3.12 +The Elder Scrolls IV: Oblivion,PS3,2007,Role-Playing,Ubisoft,1.69,0.87,0.14,0.42,3.12 +Dragon Warrior IV,NES,1990,Role-Playing,Enix Corporation,0.08,0,3.03,0.01,3.12 +Heavy Rain,PS3,2010,Adventure,Sony Computer Entertainment,1.29,1.27,0.06,0.5,3.12 +Mass Effect 2,X360,2010,Role-Playing,Electronic Arts,1.99,0.82,0.03,0.27,3.11 +FIFA 15,X360,2014,Sports,Electronic Arts,0.78,2.02,0,0.3,3.11 +Dragon Ball Z: Budokai,PS2,2002,Fighting,Atari,2.17,0.28,0.55,0.08,3.09 +Madden NFL 2002,PS2,2001,Sports,Electronic Arts,2.5,0.16,0.01,0.42,3.08 +World Class Track Meet,NES,1986,Sports,Namco Bandai Games,1.92,0.45,0.64,0.07,3.08 +Borderlands 2,X360,2012,Shooter,Take-Two Interactive,1.89,0.91,0.04,0.24,3.07 +The Legend of Zelda: A Link Between Worlds,3DS,2013,Action,Nintendo,1.4,0.99,0.46,0.22,3.07 +Donkey Kong,GB,1994,Platform,Nintendo,1.57,0.62,0.55,0.34,3.07 +The Sims: Vacation,PC,2002,Simulation,Electronic Arts,1.72,1.21,0,0.14,3.07 +Mass Effect 3,X360,2012,Role-Playing,Electronic Arts,1.94,0.86,0.03,0.24,3.07 +Kung Fu Panda,X360,2008,Action,Activision,1.91,0.84,0,0.29,3.05 +Far Cry 3,X360,2012,Shooter,Ubisoft,1.38,1.35,0.02,0.28,3.04 +Epic Mickey,Wii,2010,Platform,Disney Interactive Studios,2.06,0.64,0.12,0.22,3.04 +Saints Row 2,X360,2008,Action,THQ,1.94,0.8,0.02,0.27,3.03 +Rayman,PS,1995,Platform,Ubisoft,1.54,1.33,0,0.16,3.03 +Killzone 2,PS3,2009,Shooter,Sony Computer Entertainment,1.4,1.07,0.08,0.47,3.02 +Tom Clancy's Splinter Cell,XB,2002,Action,Ubisoft,1.85,1.04,0,0.13,3.02 +Mike Tyson's Punch-Out!!,NES,1987,Fighting,Nintendo,2.03,0.47,0.45,0.07,3.02 +WWE SmackDown! Shut Your Mouth,PS2,2002,Sports,THQ,1.45,1.13,0.07,0.38,3.02 +Gears of War: Ultimate Edition,XOne,2015,Shooter,Microsoft Game Studios,2.38,0.32,0,0.31,3 +NBA 2K13,X360,2012,Sports,Take-Two Interactive,2.6,0.21,0.01,0.19,3 +Dragon Ball Z: Budokai Tenkaichi 3,PS2,2007,Fighting,Atari,1.15,0,0.76,1.09,3 +wwe Smackdown vs. Raw 2006,PS2,,Fighting,,1.57,1.02,0,0.41,3 +Middle-Earth: Shadow of Mordor,PS4,2014,Action,Warner Bros. Interactive Entertainment,1.01,1.41,0.05,0.53,2.99 +Star Fox,SNES,1993,Shooter,Nintendo,1.61,0.51,0.8,0.07,2.99 +The Sims: Livin Large,PC,2000,Misc,Electronic Arts,1.67,1.18,0,0.13,2.99 +World Soccer Winning Eleven 6 International,PS2,2002,Sports,Konami Digital Entertainment,0.12,1.26,1.16,0.45,2.99 +Devil May Cry,PS2,2001,Action,Capcom,1.36,0.86,0.64,0.13,2.99 +Animal Crossing: Happy Home Designer,3DS,2015,Simulation,Nintendo,0.47,1,1.39,0.12,2.98 +Battlefield: Bad Company 2,PS3,2010,Shooter,Electronic Arts,1.33,1.12,0.08,0.45,2.97 +The Sims 4,PC,2014,Simulation,Electronic Arts,0.96,1.72,0,0.29,2.97 +Star Wars: The Old Republic,PC,2011,Role-Playing,Electronic Arts,1.58,1.01,0,0.38,2.97 +Sonic Heroes,PS2,2003,Platform,Sega,1.04,1.37,0.06,0.49,2.96 +Kirby Super Star Ultra,DS,2008,Platform,Nintendo,1.57,0.04,1.19,0.15,2.96 +Hitman 2: Silent Assassin,PS2,2002,Action,Eidos Interactive,1.36,1.15,0.04,0.41,2.96 +Street Fighter IV,X360,2009,Fighting,Capcom,1.82,0.71,0.15,0.26,2.95 +Wave Race 64,N64,1996,Racing,Nintendo,1.98,0.58,0.34,0.04,2.94 +SOCOM II: U.S. Navy SEALs,PS2,2003,Shooter,Sony Computer Entertainment,2.22,0.51,0.06,0.15,2.94 +WWE SmackDown! vs. RAW 2006,PS2,2005,Fighting,THQ,1.45,1.11,0.04,0.33,2.94 +inFAMOUS,PS3,2009,Action,Sony Computer Entertainment,1.76,0.69,0.12,0.37,2.94 +Pac-Man Collection,GBA,2001,Puzzle,Atari,2.07,0.77,0.05,0.05,2.94 +Mass Effect,X360,2007,Role-Playing,Microsoft Game Studios,1.83,0.8,0.03,0.27,2.93 +WarioWare: Smooth Moves,Wii,2006,Puzzle,Nintendo,0.87,1.06,0.73,0.26,2.92 +Cooking Mama: Cook Off,Wii,2007,Simulation,505 Games,1.43,1.13,0.05,0.3,2.91 +Super Mario World 2: Yoshi's Island,GBA,2002,Platform,Nintendo,1.75,0.45,0.62,0.09,2.91 +FIFA 14,PS4,2013,Sports,Electronic Arts,0.61,1.85,0.11,0.33,2.9 +Titanfall,XOne,2014,Shooter,Electronic Arts,1.84,0.8,0.04,0.22,2.9 +Sonic Mega Collection Plus,PS2,2004,Misc,Sega,1.54,1.14,0,0.22,2.9 +Sega Superstars Tennis,X360,2008,Sports,Sega,1.75,0.86,0,0.28,2.9 +World Soccer Winning Eleven 7 International,PS2,2003,Sports,Konami Digital Entertainment,0.08,1.24,1.13,0.45,2.9 +Need for Speed: Most Wanted,PS3,2012,Racing,Electronic Arts,0.71,1.51,0.06,0.61,2.89 +Hot Shots Golf 3,PS2,2001,Sports,Sony Computer Entertainment,0.99,0.32,1.38,0.2,2.89 +Call of Duty: Finest Hour,PS2,2004,Shooter,Activision,1.51,1.12,0.01,0.24,2.89 +Zumba Fitness 2,Wii,2011,Sports,Majesco Entertainment,1.54,1.07,0,0.28,2.88 +Syphon Filter,PS,1999,Shooter,Sony Computer Entertainment,2.03,0.72,0.02,0.11,2.88 +Imagine: Babyz,DS,2007,Simulation,Ubisoft,1.3,1.27,0,0.31,2.88 +Colin McRae Rally,PS,1998,Racing,Codemasters,0.09,2.43,0.12,0.22,2.87 +Call of Duty: Ghosts,XOne,2013,Shooter,Activision,1.87,0.77,0,0.22,2.86 +Madden NFL 13,X360,2012,Sports,Electronic Arts,2.53,0.16,0,0.17,2.86 +The Elder Scrolls III: Morrowind,XB,2002,Role-Playing,Ubisoft,2.09,0.63,0.03,0.11,2.86 +Mortal Kombat,PS3,2011,Fighting,Warner Bros. Interactive Entertainment,1.98,0.55,0,0.32,2.85 +F-Zero,SNES,1990,Racing,Nintendo,1.37,0.51,0.89,0.07,2.85 +Yoshi's Story,N64,1997,Platform,Nintendo,1.29,0.53,0.98,0.05,2.85 +Command & Conquer: Red Alert,PC,1996,Strategy,Virgin Interactive,1.37,1.34,0,0.14,2.85 +Skylanders: Spyro's Adventure,Wii,2011,Action,Activision,1.4,1.14,0,0.31,2.85 +FIFA 16,PS3,2015,Sports,Electronic Arts,0.4,1.98,0.05,0.42,2.85 +Assassin's Creed: Brotherhood,PS3,2010,Action,Ubisoft,1.87,0.57,0.11,0.3,2.84 +BioShock,X360,2007,Shooter,Take-Two Interactive,1.65,0.86,0.05,0.28,2.83 +Madden NFL 10,X360,2009,Sports,Electronic Arts,2.52,0.09,0,0.22,2.83 +Medal of Honor,PS3,2010,Shooter,Electronic Arts,1.28,1.05,0.07,0.43,2.83 +WWE SmackDown! vs. Raw,PS2,2002,Fighting,THQ,1.32,1.08,0.04,0.39,2.83 +Metroid Prime,GC,2002,Shooter,Nintendo,1.96,0.67,0.1,0.09,2.82 +Finding Nemo,GBA,2003,Action,THQ,1.59,1.05,0.04,0.14,2.82 +Myst,PC,1994,Adventure,Red Orb,0.02,2.79,0,0,2.81 +Need for Speed: Hot Pursuit,PS3,2010,Racing,Electronic Arts,1.05,1.25,0.03,0.48,2.81 +Imagine: Fashion Designer,DS,2007,Simulation,Ubisoft,1.32,1.19,0,0.3,2.81 +WWE SmackDown! Here Comes the Pain,PS2,2003,Fighting,THQ,1.32,1.06,0.04,0.38,2.8 +Star Wars: The Force Unleashed,X360,2008,Action,LucasArts,1.74,0.8,0,0.26,2.8 +Yoshi's Island DS,DS,2006,Platform,Nintendo,1.47,0.07,1.1,0.15,2.8 +Hot Shots Golf,PS,1997,Sports,Sony Computer Entertainment,0.29,0.2,2.13,0.18,2.79 +Killzone 3,PS3,2011,Shooter,Sony Computer Entertainment,1.45,0.88,0.09,0.38,2.79 +A Bug's Life,PS,1998,Platform,Sony Computer Entertainment,1.96,0.72,0,0.11,2.79 +WWF SmackDown! Just Bring It,PS2,2001,Fighting,THQ,1.19,1.15,0.04,0.41,2.79 +Dragon Quest V: Tenkuu no Hanayome,SNES,1992,Role-Playing,Enix Corporation,0,0,2.78,0.01,2.79 +Mortal Kombat Trilogy,PS,1996,Fighting,GT Interactive,1.98,0.7,0,0.11,2.79 +Battlefield 3,PC,2011,Shooter,Electronic Arts,0.89,1.43,0,0.48,2.79 +NBA Street,PS2,2001,Sports,Electronic Arts,2.19,0.22,0,0.38,2.79 +Professor Layton and the Last Specter,DS,2009,Puzzle,Nintendo,0.3,1.47,0.68,0.34,2.79 +Monster Hunter Tri,3DS,2011,Role-Playing,Nintendo,0.46,0.29,1.96,0.07,2.79 +Jak II,PS2,2003,Platform,Sony Computer Entertainment,1.68,0.74,0,0.36,2.78 +inFAMOUS: Second Son,PS4,2014,Action,Sony Computer Entertainment,1.27,0.97,0.07,0.47,2.78 +Ratchet & Clank: Going Commando,PS2,2003,Platform,Sony Computer Entertainment,1.44,0.83,0.26,0.25,2.78 +Tekken 6,PS3,2009,Fighting,Namco Bandai Games,1.2,0.98,0.17,0.43,2.78 +The Sims,PS2,2003,Simulation,Electronic Arts,1.41,1.12,0,0.24,2.77 +Sonic and the Secret Rings,Wii,2007,Platform,Sega,1.24,1.2,0.04,0.3,2.77 +Saints Row: The Third,X360,2011,Action,THQ,1.25,1.15,0.07,0.3,2.77 +Missile Command,2600,1980,Shooter,Atari,2.56,0.17,0,0.03,2.76 +Mario Paint,SNES,1992,Misc,Nintendo,1.43,0.54,0.71,0.07,2.75 +Assassin's Creed IV: Black Flag,PS4,2013,Action,Ubisoft,1.07,1.31,0.06,0.31,2.74 +Assassin's Creed IV: Black Flag,PS4,2013,Action,Ubisoft,1.07,1.31,0.06,0.31,2.74 +Pok?mon Stadium 2,N64,2000,Strategy,Nintendo,1.02,0.36,1.13,0.23,2.73 +Metroid,NES,1986,Action,Nintendo,1.33,0.31,1.04,0.05,2.73 +L.A. Noire,X360,2011,Adventure,Take-Two Interactive,1.52,0.94,0.02,0.24,2.72 +Call of Duty 3,X360,2006,Shooter,Activision,1.49,0.93,0.02,0.27,2.71 +The Legend of Zelda: A Link to the Past,GBA,2002,Action,Nintendo,1.75,0.52,0.33,0.1,2.7 +Onimusha: Warlords,PS2,2001,Action,Virgin Interactive,0.99,0.48,1.09,0.14,2.7 +Mortal Kombat X,PS4,2015,Fighting,Warner Bros. Interactive Entertainment,1.47,0.76,0,0.47,2.7 +Mario Party,N64,1998,Misc,Nintendo,1.25,0.53,0.87,0.05,2.7 +Madden NFL 12,X360,2011,Sports,Electronic Arts,2.42,0.11,0,0.16,2.69 +LEGO Star Wars II: The Original Trilogy,PS2,2006,Action,LucasArts,1.85,0.64,0.01,0.19,2.69 +Madden NFL 11,X360,2010,Sports,Electronic Arts,2.38,0.12,0,0.18,2.69 +Mario vs. Donkey Kong: Mini-Land Mayhem!,DS,2010,Puzzle,Nintendo,1.63,0.52,0.35,0.18,2.69 +Skate 3,X360,2010,Sports,Electronic Arts,1.46,0.98,0,0.24,2.68 +Burnout 3: Takedown,PS2,2004,Racing,Electronic Arts,1.23,1.11,0,0.34,2.68 +Yokai Watch 2 Shinuchi,3DS,2014,Role-Playing,Level 5,0,0,2.68,0,2.68 +Need for Speed: Shift,PS3,2009,Racing,Electronic Arts,0.69,1.41,0.04,0.53,2.68 +Final Fantasy XIII-2,PS3,2011,Role-Playing,Square Enix,0.78,0.75,0.89,0.26,2.68 +Mortal Kombat,GEN,1992,Fighting,Arena Entertainment,1.95,0.63,0,0.09,2.67 +Call Of Duty 2: Big Red One,PS2,2005,Shooter,Activision,1.48,0.92,0.01,0.26,2.67 +Guitar Hero: World Tour,X360,2008,Misc,Activision,1.78,0.64,0,0.25,2.67 +Medal of Honor,PS,1998,Shooter,Electronic Arts,1.44,1.09,0,0.14,2.67 +Fable,XB,2004,Role-Playing,Microsoft Game Studios,1.99,0.58,0,0.09,2.66 +Hannah Montana,DS,2006,Action,Disney Interactive Studios,1.59,0.8,0,0.26,2.65 +Tom Clancy's Splinter Cell,PS2,2003,Action,Ubisoft,1.15,1.11,0,0.4,2.65 +Skylanders Giants,Wii,2012,Action,Activision,1.56,0.88,0,0.22,2.65 +Medal of Honor Heroes,PSP,2006,Shooter,Electronic Arts,0.86,1.11,0.01,0.66,2.65 +Super Mario Bros.: The Lost Levels,NES,1986,Platform,Nintendo,0,0,2.65,0,2.65 +Star Wars: Shadows of the Empire,N64,1996,Action,Nintendo,2,0.5,0.12,0.03,2.65 +LEGO Star Wars: The Complete Saga,X360,2007,Action,LucasArts,1.53,0.87,0,0.24,2.64 +Midnight Club: Street Racing,PS2,2000,Racing,Take-Two Interactive,2,0.47,0.02,0.14,2.63 +Pac-Man: Adventures in Time,PSP,2006,Fighting,Sony Computer Entertainment,0.76,1.1,0.12,0.65,2.63 +Halo Wars,X360,2009,Strategy,Microsoft Game Studios,1.53,0.82,0.04,0.24,2.63 +God of War Collection,PS3,2009,Action,Sony Computer Entertainment,1.7,0.46,0.06,0.41,2.63 +ESPN NFL 2K5,PS2,2004,Sports,Sega,2.15,0.12,0,0.36,2.62 +Mario Strikers Charged,Wii,2007,Sports,Nintendo,1.07,1.06,0.24,0.25,2.62 +Medal of Honor,X360,2010,Shooter,Electronic Arts,1.55,0.81,0.04,0.21,2.62 +FIFA Soccer 10,X360,2009,Sports,Electronic Arts,0.59,1.79,0.01,0.23,2.62 +NBA 2K12,X360,2011,Sports,Take-Two Interactive,2.31,0.14,0.01,0.16,2.62 +Style Savvy,DS,2008,Simulation,Nintendo,0.63,0.84,0.96,0.19,2.61 +Harry Potter and the Chamber of Secrets,PS2,2002,Action,Electronic Arts,0.9,1.22,0.04,0.44,2.61 +Super Mario All-Stars: Limited Edition,Wii,2010,Platform,Nintendo,1.02,0.52,0.92,0.14,2.6 +Streets of Rage,GEN,1990,Action,Sega,1.86,0.55,0.11,0.08,2.6 +FIFA Soccer 09,PS3,2008,Sports,Electronic Arts,0.48,1.63,0.04,0.43,2.59 +Ratchet & Clank Future: Tools of Destruction,PS3,2007,Platform,Sony Computer Entertainment,0.93,1.12,0.08,0.45,2.59 +NBA Live 2005,PS2,2004,Sports,Electronic Arts,2.03,0.21,0,0.35,2.59 +LittleBigPlanet,PSP,2009,Platform,Sony Computer Entertainment,0.64,1.24,0.01,0.69,2.58 +Killzone: Shadow Fall,PS4,2013,Shooter,Sony Computer Entertainment,0.89,1.33,0.07,0.28,2.58 +Ghostbusters: The Video Game (DS Version),X360,2009,Action,Take-Two Interactive,1.04,1.24,0.03,0.27,2.58 +Monster Hunter Freedom 2,PSP,2007,Role-Playing,Capcom,0.37,0.27,1.75,0.18,2.58 +WWE SmackDown vs. RAW 2007,PS2,2006,Fighting,THQ,1.4,0.88,0.03,0.26,2.58 +Ratchet & Clank: Up Your Arsenal,PS2,2004,Platform,Sony Computer Entertainment,1.31,0.74,0.31,0.22,2.57 +Art Academy,DS,2010,Misc,Nintendo,0.28,1.68,0.33,0.28,2.57 +Dragon Age: Origins,X360,2009,Role-Playing,Electronic Arts,1.76,0.56,0.03,0.22,2.57 +Madden NFL 08,PS2,2007,Sports,Electronic Arts,2.14,0.08,0,0.35,2.57 +Sonic Adventure 2 Battle,GC,2001,Platform,Sega,1.7,0.59,0.21,0.07,2.56 +Dragon Warrior II,NES,1987,Role-Playing,Enix Corporation,0.15,0,2.41,0,2.56 +Madden NFL 13,PS3,2012,Sports,Electronic Arts,2.11,0.23,0,0.22,2.56 +Pok?mon Colosseum,GC,2003,Role-Playing,Nintendo,1.21,0.57,0.7,0.07,2.54 +Deca Sports,Wii,2008,Sports,Konami Digital Entertainment,1.13,0.87,0.29,0.25,2.54 +Madden NFL 09,X360,2008,Sports,Electronic Arts,2.21,0.12,0,0.2,2.54 +Space Invaders,2600,,Shooter,Atari,2.36,0.14,0,0.03,2.53 +Crazy Taxi,PS2,2001,Racing,Acclaim Entertainment,1.13,1.12,0.06,0.22,2.52 +Perfect Dark,N64,2000,Action,Nintendo,1.55,0.75,0.16,0.06,2.52 +Game Party,Wii,2007,Misc,Midway Games,1.5,0.78,0,0.24,2.52 +Dragon Warrior,NES,1986,Role-Playing,Capcom,0.49,0,0.52,1.51,2.52 +Tomb Raider (2013),PS3,2013,Action,Square Enix,0.6,1.31,0.08,0.52,2.51 +Marvel: Ultimate Alliance,X360,2006,Role-Playing,Activision,2.29,0.02,0,0.19,2.5 +PES 2009: Pro Evolution Soccer,PS2,2008,Sports,Konami Digital Entertainment,0.13,0.07,0.26,2.05,2.5 +Mario Party 2,N64,1999,Misc,Nintendo,1.28,0.14,1.08,0.01,2.5 +Saints Row: The Third,PS3,2011,Action,THQ,0.86,1.06,0.18,0.39,2.49 +Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City,XB,2003,Action,Take-Two Interactive,1.84,0.56,0,0.09,2.49 +LEGO Harry Potter: Years 1-4,Wii,2010,Action,Warner Bros. Interactive Entertainment,1.29,0.97,0,0.23,2.49 +Mortal Kombat: Deadly Alliance,PS2,2002,Fighting,Midway Games,1.81,0.52,0,0.15,2.49 +Resistance 2,PS3,2008,Shooter,Sony Computer Entertainment,1.15,0.85,0.1,0.39,2.48 +Pure,X360,2008,Racing,Disney Interactive Studios,1.38,0.85,0,0.25,2.48 +Tomb Raider: The Last Revelation,PS,1998,Action,Eidos Interactive,1.15,1.14,0.06,0.13,2.48 +NBA 2K13,PS3,2012,Sports,Take-Two Interactive,1.72,0.44,0.05,0.27,2.48 +Rock Band,X360,,Misc,Electronic Arts,1.93,0.34,0,0.21,2.48 +NBA 2K14,X360,2013,Sports,Take-Two Interactive,2.1,0.2,0,0.17,2.47 +Mario Party 4,GC,2002,Misc,Nintendo,1.13,0.36,0.92,0.07,2.47 +uDraw Studio,Wii,2010,Misc,THQ,1.67,0.58,0,0.2,2.46 +Midnight Club: Los Angeles,PS3,2008,Racing,Take-Two Interactive,1.55,0.54,0.05,0.31,2.45 +Final Fantasy V,SNES,1992,Role-Playing,SquareSoft,0,0,2.43,0.02,2.45 +Final Fantasy Tactics,PS,1997,Role-Playing,SquareSoft,0.93,0.12,1.34,0.06,2.45 +Twisted Metal 2,PS,1996,Racing,Sony Computer Entertainment,2.12,0.25,0,0.07,2.44 +Halo: Combat Evolved Anniversary,X360,2011,Shooter,Microsoft Game Studios,1.44,0.73,0.04,0.22,2.44 +Need for Speed Carbon: Own the City,PSP,2006,Racing,Electronic Arts,0.87,0.98,0,0.59,2.44 +The Sims: Bustin' Out,PS2,2003,Simulation,Electronic Arts,1.07,1.19,0,0.18,2.43 +Riven: The Sequel to Myst,PC,1997,Adventure,Red Orb,1.52,0.82,0,0.1,2.43 +Tom Clancy's Rainbow Six: Vegas 2,X360,2008,Shooter,Ubisoft,1.56,0.61,0.02,0.23,2.42 +Sonic Adventure,DC,1998,Platform,Sega,1.26,0.61,0.46,0.08,2.42 +Ice Hockey,NES,1988,Sports,Nintendo,1.27,0.32,0.78,0.05,2.42 +pro evolution soccer 2011,PS3,2010,Sports,Konami Digital Entertainment,0.29,1.18,0.54,0.41,2.42 +Dragon Ball Z: Budokai 2,PS2,2003,Fighting,Atari,1.63,0.22,0.51,0.06,2.41 +ATV Offroad Fury,PS2,2001,Racing,Sony Computer Entertainment,2.07,0.26,0,0.08,2.41 +Dino Crisis,PS,1998,Action,Capcom,0.81,0.76,0.7,0.14,2.41 +Minecraft,XOne,2014,Misc,Microsoft Game Studios,1.43,0.76,0,0.22,2.41 +Need for Speed: ProStreet,PS2,2007,Racing,Electronic Arts,0.69,0,0.04,1.68,2.41 +Madden NFL 16,XOne,2015,Sports,Electronic Arts,2.07,0.08,0,0.26,2.4 +Tetris Plus,PS,1996,Puzzle,JVC,2.1,0.24,0,0.07,2.4 +Pro Wrestling,NES,1987,Fighting,Nintendo,0.77,0.18,1.42,0.03,2.4 +Theme Hospital,PC,1997,Strategy,Electronic Arts,2.3,0.1,0,0,2.4 +Frogger's Adventures: Temple of the Frog,GBA,,Adventure,Konami Digital Entertainment,2.15,0.18,0,0.07,2.39 +Need for Speed (2015),PS4,2015,Racing,Electronic Arts,0.49,1.49,0.05,0.36,2.39 +Zumba Fitness,X360,2010,Sports,505 Games,1.74,0.48,0,0.18,2.39 +LEGO Indiana Jones: The Original Adventures,Wii,,Action,LucasArts,1.54,0.63,0,0.22,2.39 +Monopoly,PC,1994,Misc,Hasbro Interactive,1.49,0.81,0,0.1,2.39 +Batman: Arkham Origins,PS3,2013,Action,Warner Bros. Interactive Entertainment,1.07,0.87,0.04,0.4,2.39 +Dead Island,X360,2011,Action,Deep Silver,1.48,0.71,0,0.2,2.39 +Guitar Hero,PS2,2005,Misc,RedOctane,1.67,0.61,0.03,0.07,2.38 +LEGO Star Wars: The Complete Saga,PS3,2007,Action,LucasArts,1.02,0.97,0,0.39,2.38 +Kinect: Disneyland Adventures,X360,2011,Misc,Microsoft Game Studios,1.73,0.46,0.02,0.18,2.38 +WCW/nWo Revenge,N64,1998,Fighting,THQ,1.94,0.39,0.03,0.02,2.38 +Bloodborne,PS4,2015,Action,Sony Computer Entertainment,1,0.76,0.26,0.36,2.38 +NBA 2K15,PS4,2014,Sports,Take-Two Interactive,1.46,0.54,0.01,0.37,2.38 +Madden NFL 11,PS3,2010,Sports,Electronic Arts,2.04,0.15,0,0.19,2.38 +Yu-Gi-Oh! The Duelists of the Roses,PS2,2001,Misc,Konami Digital Entertainment,1.16,0.91,0,0.3,2.38 +Madden NFL 08,X360,2007,Sports,Electronic Arts,2.18,0.01,0,0.18,2.37 +Half-Life 2,PC,2004,Shooter,Vivendi Games,2.28,0.02,0.08,0,2.37 +The Incredibles,PS2,2004,Action,THQ,0.96,1.08,0.04,0.3,2.37 +Tony Hawk's Underground 2,PS2,2004,Sports,Activision,1.25,0.86,0.01,0.26,2.37 +Madden NFL 10,PS3,2009,Sports,Electronic Arts,2.03,0.13,0,0.21,2.37 +Kinect Sports: Season Two,X360,2011,Sports,Microsoft Game Studios,1.38,0.74,0.02,0.22,2.36 +Kirby's Dream Land 2,GB,1995,Platform,Nintendo,0.69,0.14,1.48,0.05,2.36 +LEGO Harry Potter: Years 1-4,DS,2010,Action,Warner Bros. Interactive Entertainment,1.07,1.05,0,0.23,2.35 +Donkey Kong Land II,GB,1996,Platform,Nintendo,1.39,0.48,0.4,0.08,2.35 +Dragon Warrior Monsters,GB,1998,Role-Playing,Eidos Interactive,0,0,2.34,0.01,2.35 +Midnight Club: Los Angeles,X360,2008,Racing,Take-Two Interactive,1.68,0.46,0.01,0.2,2.35 +Skylanders SWAP Force,Wii,2013,Platform,Activision,1.32,0.83,0,0.2,2.34 +WWE SmackDown vs Raw 2008,PS2,2007,Fighting,THQ,0.92,0,0.01,1.41,2.34 +My Fitness Coach,Wii,2008,Sports,Ubisoft,1.2,0.9,0,0.24,2.34 +Resident Evil - Code: Veronica X,PS2,2001,Action,Capcom,1.08,0.7,0.34,0.21,2.34 +The Sims 3,X360,2010,Simulation,Electronic Arts,1.27,0.86,0,0.2,2.33 +The Legend of Zelda: Majora's Mask 3D,3DS,2015,Action,Nintendo,1.14,0.54,0.47,0.17,2.32 +NBA 2K16,XOne,2015,Sports,Take-Two Interactive,1.93,0.14,0,0.24,2.32 +Just Dance Kids,Wii,2010,Misc,Ubisoft,1.57,0.56,0,0.19,2.32 +Mario Tennis,N64,2000,Sports,Nintendo,0.78,0.4,1.06,0.07,2.32 +Grand Theft Auto,PS,1997,Action,Take-Two Interactive,0.79,1.35,0.04,0.14,2.32 +James Bond 007: Everything or Nothing,PS2,2004,Shooter,Electronic Arts,0.85,1.06,0.09,0.32,2.31 +WarioWare Touched!,DS,2004,Puzzle,Nintendo,0.52,0.45,1.21,0.13,2.31 +Need For Speed: High Stakes,PS,1999,Racing,Electronic Arts,1.58,0.64,0,0.09,2.31 +Chrono Trigger,SNES,1995,Role-Playing,SquareSoft,0.28,0,2.02,0.01,2.31 +Cool Boarders 3,PS,1998,Sports,989 Studios,1.65,0.46,0.1,0.1,2.31 +LEGO Marvel Super Heroes,X360,2013,Action,Warner Bros. Interactive Entertainment,1.24,0.85,0,0.21,2.3 +Guild Wars 2,PC,2012,Action,NCSoft,0.95,1.06,0,0.29,2.3 +Pokemon Ranger: Shadows of Almia,DS,2008,Role-Playing,Nintendo,0.95,0.54,0.62,0.18,2.3 +Dead Island,PS3,2011,Action,Deep Silver,1.08,0.75,0.15,0.31,2.29 +Tomb Raider II,PC,1997,Action,Eidos Interactive,0.91,1.25,0,0.13,2.29 +God of War: Ascension,PS3,2013,Action,Sony Computer Entertainment,1.23,0.68,0.04,0.34,2.29 +Need for Speed Underground 2,XB,2004,Racing,Electronic Arts,1.38,0.8,0,0.1,2.28 +Pro Evolution Soccer 2010,PS3,2009,Sports,Konami Digital Entertainment,0.3,1.27,0.46,0.26,2.28 +Just Dance 2015,Wii,2014,Misc,Ubisoft,1.11,0.98,0,0.2,2.28 +Yokai Watch Busters,3DS,2015,Action,Level 5,0,0,2.28,0,2.28 +Mario Bros.,NES,1983,Platform,Nintendo,0.51,0.12,1.63,0.02,2.28 +FIFA Soccer 09,PS2,2008,Sports,Electronic Arts,0.38,0.07,0.01,1.82,2.28 +Star Wars: The Force Unleashed,PS3,2008,Action,LucasArts,1.01,0.9,0,0.37,2.28 +Borderlands 2,PS3,2012,Shooter,Take-Two Interactive,1.05,0.77,0.1,0.36,2.28 +TOCA Touring Car Championship,PS,1997,Racing,Codemasters,0.07,2,0.02,0.18,2.28 +Paper Mario: Sticker Star,3DS,2012,Role-Playing,Nintendo,1.12,0.39,0.64,0.12,2.27 +Sonic's Ultimate Genesis Collection,PS3,2009,Misc,Sega,1.34,0.62,0,0.31,2.27 +Super Monkey Ball: Banana Blitz,Wii,2006,Misc,Sega,1.07,0.92,0.04,0.24,2.27 +Kirby: Nightmare in Dream Land,GBA,2002,Platform,Nintendo,1.22,0.1,0.91,0.04,2.27 +Wario Land 4,GBA,2001,Platform,Nintendo,0.9,0.73,0.54,0.09,2.26 +Guitar Hero III: Legends of Rock,PS3,2007,Misc,Activision,1.4,0.54,0.02,0.3,2.26 +Call of Duty 3,Wii,,Shooter,Activision,1.19,0.84,0,0.23,2.26 +Resident Evil 4,Wii,2007,Action,Capcom,1.34,0.57,0.14,0.21,2.26 +Minecraft,PSV,2014,Misc,Sony Computer Entertainment Europe,0.28,0.79,0.87,0.32,2.25 +Onimusha 2: Samurai's Destiny,PS2,2002,Adventure,Capcom,0.62,0.44,1.06,0.13,2.25 +Cool Boarders 2,PS,1997,Sports,UEP Systems,1.52,0.46,0.2,0.08,2.25 +Paper Mario: The Thousand-Year Door,GC,2004,Role-Playing,Nintendo,1.48,0.25,0.46,0.06,2.25 +Madden NFL 12,PS3,2011,Sports,Electronic Arts,1.93,0.15,0,0.17,2.25 +Monster Hunter Tri,Wii,2009,Role-Playing,Nintendo,0.67,0.41,1.05,0.11,2.25 +Dissidia: Final Fantasy,PSP,2008,Fighting,Square Enix,0.51,0.51,0.91,0.32,2.25 +Sonic Advance,GBA,2001,Platform,Sega,1.19,0.71,0.22,0.13,2.24 +Spyro: Season of Ice,GBA,2001,Platform,Vivendi Games,1.29,0.83,0,0.11,2.23 +Teenage Mutant Ninja Turtles II: The Arcade Game,NES,1990,Action,Konami Digital Entertainment,1.74,0.25,0.21,0.03,2.23 +LEGO Indiana Jones: The Original Adventures,DS,2008,Action,Activision,1.42,0.61,0,0.21,2.23 +Dance Dance Revolution X2,PS2,2009,Simulation,Konami Digital Entertainment,1.09,0.85,0,0.28,2.23 +New Super Luigi U,WiiU,2013,Platform,Nintendo,1.27,0.62,0.18,0.16,2.22 +Prince of Persia: The Sands of Time,PS2,2003,Action,Ubisoft,0.88,1.03,0,0.31,2.22 +Scribblenauts,DS,2009,Puzzle,Warner Bros. Interactive Entertainment,1.71,0.32,0.02,0.18,2.22 +The Legend of Zelda: Link's Awakening DX,GB,1998,Adventure,Nintendo,1,0.63,0.45,0.13,2.22 +Need for Speed: Hot Pursuit,X360,2010,Racing,Electronic Arts,1.03,0.98,0,0.21,2.22 +BioShock 2,X360,2010,Shooter,Take-Two Interactive,1.45,0.55,0.02,0.19,2.21 +Assassin's Creed IV: Black Flag,XOne,2013,Action,Ubisoft,1.47,0.55,0,0.19,2.21 +Devil May Cry 3: Dante's Awakening Special Edition,PS2,2006,Action,Capcom,1.06,0.82,0.05,0.28,2.21 +Rock Band 2,X360,2008,Misc,Electronic Arts,1.78,0.24,0,0.18,2.2 +Frogger,2600,1981,Action,Parker Bros.,2.06,0.12,0,0.02,2.2 +Guitar Hero II,X360,2007,Misc,Activision,2.01,0.02,0,0.17,2.2 +Wario Land 3,GB,2000,Platform,Nintendo,1.11,0.51,0.34,0.23,2.2 +Pro Yakyuu Family Stadium,NES,1986,Sports,Namco Bandai Games,0.15,0,2.05,0,2.2 +Sonic Unleashed,Wii,2008,Platform,Sega,1.28,0.68,0.02,0.21,2.2 +High School Musical: Makin' the Cut!,DS,2007,Puzzle,Disney Interactive Studios,1.06,0.91,0,0.23,2.2 +Pro Evolution Soccer 2012,PS3,2011,Action,Konami Digital Entertainment,0.34,0.97,0.55,0.33,2.19 +Saints Row,X360,2006,Action,THQ,1.17,0.78,0.02,0.22,2.19 +Star Wars: Knights of the Old Republic,XB,2003,Role-Playing,Activision,1.68,0.44,0,0.08,2.19 +Kirby's Pinball Land,GB,1992,Misc,Nintendo,0.87,0.17,1.1,0.05,2.19 +Donkey Kong Country,GB,2000,Platform,Nintendo,1.04,0.72,0.3,0.13,2.19 +Hitman: Absolution,PS3,2012,Action,Square Enix,0.59,1.07,0.07,0.45,2.19 +Yu-Gi-Oh: Duel Monsters 4,GB,2000,Role-Playing,Konami Digital Entertainment,0,0,2.17,0.01,2.18 +ATV Offroad Fury 2,PS2,2002,Racing,THQ,1.92,0.2,0,0.06,2.18 +Forza Motorsport 5,XOne,2013,Racing,Microsoft Game Studios,1.21,0.78,0.01,0.17,2.18 +Madden NFL 25,X360,2013,Sports,Electronic Arts,1.97,0.07,0,0.13,2.18 +Pokemon Ranger,DS,2006,Role-Playing,Nintendo,1.29,0.04,0.73,0.12,2.18 +Mario & Luigi: Superstar Saga,GBA,2003,Role-Playing,Nintendo,1.48,0.17,0.47,0.06,2.17 +Final Fantasy XIII,X360,2010,Role-Playing,Square Enix,1.27,0.68,0.01,0.2,2.17 +Star Wars: Rogue Squadron,N64,1998,Simulation,Nintendo,1.6,0.46,0.08,0.03,2.17 +Tennis,NES,1984,Sports,Nintendo,0.48,0.11,1.56,0.02,2.17 +The Sims: House Party,PC,2001,Simulation,Electronic Arts,1.23,0.83,0,0.1,2.16 +Your Shape featuring Jenny McCarthy,Wii,2009,Sports,Ubisoft,1.51,0.47,0,0.18,2.16 +Syphon Filter 2,PS,2000,Shooter,Sony Computer Entertainment,1.5,0.55,0.02,0.08,2.15 +Tom Clancy's Rainbow Six: Siege,PS4,2015,Shooter,Ubisoft,0.54,1.16,0.13,0.32,2.15 +Volleyball,NES,1987,Sports,Nintendo,0.14,0.03,1.98,0,2.15 +FIFA 15,XOne,2014,Sports,Electronic Arts,0.6,1.41,0,0.14,2.15 +Call of Duty: Roads to Victory,PSP,2007,Shooter,Activision,0.52,1.03,0,0.59,2.14 +Super Mario RPG: Legend of the Seven Stars,SNES,1996,Role-Playing,Nintendo,0.66,0,1.45,0.03,2.14 +Mahjong,NES,1983,Misc,Nintendo,0.01,0,2.13,0,2.14 +R.C. Pro-Am,NES,1988,Racing,Nintendo,1.47,0.38,0.19,0.1,2.14 +SimCity 2000,PC,1992,Simulation,Maxis,1.2,0.84,0,0.1,2.14 +Demon Attack,2600,1981,Shooter,Imagic,1.99,0.12,0,0.02,2.13 +Dance Dance Revolution Extreme,PS2,2004,Simulation,Konami Digital Entertainment,1.04,0.81,0,0.27,2.13 +Tetris DS,DS,2006,Puzzle,Nintendo,0.64,0.07,1.35,0.08,2.13 +Final Fantasy Tactics Advance,GBA,2003,Role-Playing,SquareSoft,0.82,0.37,0.89,0.05,2.13 +Far Cry: Primal,PS4,2016,Action,Ubisoft,0.59,1.16,0.06,0.33,2.13 +Toy Story 3: The Video Game,DS,2010,Action,Disney Interactive Studios,0.93,0.97,0.02,0.21,2.12 +Final Fantasy III,DS,2006,Role-Playing,Square Enix,0.91,0.05,1.07,0.09,2.12 +Kirby's Epic Yarn,Wii,2010,Platform,Nintendo,1.47,0.09,0.45,0.11,2.12 +Project Gotham Racing,XB,2001,Racing,Microsoft Game Studios,1.37,0.61,0.05,0.09,2.12 +Golf,GB,1989,Sports,Nintendo,0.83,0.33,0.92,0.04,2.12 +NBA 2K12,PS3,2011,Sports,Take-Two Interactive,1.61,0.27,0.05,0.18,2.11 +Borderlands,PS3,2009,Shooter,Take-Two Interactive,1.2,0.62,0,0.29,2.11 +Tony Hawk's Pro Skater,N64,2000,Sports,Activision,1.68,0.4,0,0.03,2.11 +PES 2009: Pro Evolution Soccer,PS3,2008,Sports,Konami Digital Entertainment,0.11,1.34,0.4,0.26,2.11 +Need for Speed: Hot Pursuit 2,PS2,2002,Racing,Electronic Arts,1.68,0.31,0.02,0.09,2.11 +Mario Sports Mix,Wii,2010,Sports,Nintendo,0.9,0.45,0.63,0.13,2.11 +Rock Band,Wii,,Misc,MTV Games,1.35,0.56,0,0.2,2.11 +Dynasty Warriors 4,PS2,2003,Action,Tecmo Koei,0.63,0.21,1.13,0.13,2.11 +Mortal Kombat,X360,2011,Fighting,Warner Bros. Interactive Entertainment,1.63,0.33,0,0.15,2.11 +Parasite Eve,PS,1998,Role-Playing,SquareSoft,0.94,0.07,1.05,0.04,2.1 +Scooby-Doo! Night of 100 Frights,PS2,2002,Platform,THQ,1.17,0.72,0,0.22,2.1 +Project Gotham Racing (JP weekly sales),XB,2002,Action,Microsoft Game Studios,1.54,0.44,0.04,0.07,2.1 +Need for Speed: Most Wanted 5-1-0,PSP,2005,Racing,Electronic Arts,1.77,0.13,0.02,0.18,2.1 +Portal 2,X360,2011,Shooter,Valve Software,1.41,0.51,0.01,0.17,2.1 +Devil May Cry 3: Dante's Awakening,PS2,2005,Action,Capcom,0.99,0.63,0.29,0.19,2.09 +Derby Stallion,PS,1997,Sports,ASCII Entertainment,0,0,1.96,0.14,2.09 +Dead Rising,X360,2006,Action,Capcom,1.16,0.65,0.08,0.2,2.09 +Finding Nemo,PS2,2003,Action,THQ,1.26,0.6,0.05,0.18,2.09 +NBA 2K11,X360,2010,Action,Take-Two Interactive,1.84,0.12,0.01,0.13,2.09 +Wipeout: The Game,Wii,2009,Misc,Mindscape,1.97,0,0,0.12,2.09 +The Sims 2: Pets,DS,2006,Simulation,Electronic Arts,0.92,0.94,0,0.22,2.09 +Battlefield: Hardline,PS4,2015,Shooter,Electronic Arts,0.7,0.93,0.14,0.32,2.09 +Metal Gear Solid: Peace Walker,PSP,2010,Action,Konami Digital Entertainment,0.46,0.42,0.96,0.25,2.09 +World of Warcraft: Cataclysm,PC,2010,Role-Playing,Activision,1.77,0.32,0,0,2.08 +Tetris Worlds,PS2,2002,Puzzle,THQ,1.11,0.71,0,0.27,2.08 +Need For Speed: Undercover,PS3,2008,Racing,Electronic Arts,0.63,1.02,0.05,0.39,2.08 +Dance Dance Revolution: Hottest Party,Wii,2007,Simulation,Konami Digital Entertainment,1.36,0.52,0,0.2,2.08 +Mario Party 5,GC,2003,Misc,Nintendo,0.97,0.33,0.73,0.06,2.08 +Ghostbusters: The Video Game (DS Version),PS3,2010,Action,Take-Two Interactive,0.59,0.99,0.13,0.36,2.08 +Sim Theme Park,PC,1998,Strategy,Electronic Arts,2.04,0.04,0,0,2.08 +Warcraft: Orcs & Humans,PC,1994,Strategy,Activision,0.89,1.08,0,0.11,2.08 +Skate 3,PS3,2010,Sports,Electronic Arts,0.79,0.94,0,0.35,2.08 +Spec Ops: Airborne Commando,PS,2002,Shooter,Take-Two Interactive,1.54,0.46,0,0.08,2.07 +Kingdom Hearts: Birth by Sleep,PSP,2010,Role-Playing,Square Enix,0.63,0.42,0.75,0.26,2.07 +UFC 2009 Undisputed,X360,2009,Fighting,THQ,1.48,0.39,0,0.19,2.07 +Dark Souls,PS3,2011,Role-Playing,Namco Bandai Games,0.75,0.54,0.54,0.23,2.07 +Yu-Gi-Oh! The Eternal Duelist Soul,GBA,2001,Strategy,Konami Digital Entertainment,1.64,0.36,0,0.07,2.07 +Need for Speed: ProStreet,X360,2007,Racing,Electronic Arts,1.04,0.8,0.01,0.22,2.06 +The Sims 3,PS3,2010,Simulation,Electronic Arts,0.73,0.97,0.02,0.34,2.06 +Tom Clancy's Splinter Cell: Conviction,X360,2010,Action,Ubisoft,1.2,0.63,0.04,0.19,2.06 +Pokemon Mystery Dungeon: Red/Blue Rescue Team,GBA,2005,Role-Playing,Nintendo,0.71,0.52,0.74,0.08,2.06 +The Incredibles,GBA,2004,Action,THQ,1.15,0.77,0.04,0.1,2.06 +R4: Ridge Racer Type 4,PS,1998,Racing,Namco Bandai Games,0.68,0.46,0.79,0.13,2.06 +SoulCalibur II,PS2,2003,Fighting,Namco Bandai Games,1.06,0.62,0.13,0.25,2.06 +Mario & Luigi: Dream Team,3DS,2013,Role-Playing,Nintendo,0.89,0.57,0.46,0.13,2.06 +Need for Speed: ProStreet,PS3,2007,Racing,Electronic Arts,0.73,0.92,0.04,0.37,2.05 +Carnival Games,DS,2008,Misc,Take-Two Interactive,1.23,0.64,0,0.19,2.05 +NBA 2K14,PS3,2013,Sports,Take-Two Interactive,1.43,0.33,0.04,0.25,2.05 +Pok?mon Mystery Dungeon: Blue Rescue Team,DS,2005,Role-Playing,Nintendo,1.16,0.06,0.83,0,2.05 +Sonic Mega Collection,GC,2002,Misc,Infogrames,1.47,0.48,0.05,0.06,2.05 +Diablo III,PS3,2013,Role-Playing,Activision,0.71,0.83,0.15,0.35,2.05 +NBA Jam,GEN,1992,Sports,Arena Entertainment,1.75,0.25,0,0.05,2.05 +PGR4 - Project Gotham Racing 4,X360,2007,Racing,Microsoft Game Studios,0.48,1.29,0.02,0.25,2.05 +Kingdom Hearts 358/2 Days,DS,2009,Role-Playing,Square Enix,1.11,0.27,0.53,0.14,2.04 +Dance Central 2,X360,2011,Misc,Microsoft Game Studios,1.45,0.42,0.01,0.16,2.04 +Rayman Raving Rabbids: TV Party,Wii,2008,Misc,Ubisoft,0.73,1.09,0,0.23,2.04 +SOCOM: U.S. Navy SEALs: Combined Assault,PS2,2006,Shooter,Sony Computer Entertainment,1.74,0.02,0,0.28,2.04 +Peter Jackson's King Kong: The Official Game of the Movie,PS2,2005,Action,Ubisoft,0.71,1.02,0,0.31,2.04 +Donkey Kong Country,GBA,2003,Platform,Nintendo,1.2,0.48,0.29,0.07,2.04 +Need for Speed: The Run,PS3,2011,Action,Electronic Arts,0.58,1.06,0.03,0.37,2.04 +Madden NFL 15,PS4,2014,Sports,Electronic Arts,1.53,0.25,0,0.25,2.03 +1080?: TenEighty Snowboarding,N64,1998,Sports,Nintendo,1.25,0.61,0.13,0.05,2.03 +Just Dance 3,X360,2011,Misc,Ubisoft,1.47,0.4,0,0.16,2.03 +NBA Live 2004,PS2,2003,Sports,Electronic Arts,1.57,0.18,0,0.27,2.03 +Dead Space,PS3,2008,Action,Electronic Arts,1.05,0.67,0,0.3,2.02 +Call of Duty 2,X360,2005,Shooter,Activision,1.81,0.05,0.01,0.15,2.02 +Madden NFL 15,X360,2014,Sports,Electronic Arts,1.76,0.09,0,0.17,2.02 +Forza Horizon,X360,2012,Racing,Microsoft Game Studios,0.82,0.98,0.04,0.18,2.02 +TouchMaster,DS,2007,Puzzle,Midway Games,0.49,1.27,0,0.25,2.01 +Tom Clancy's The Division,XOne,2016,Shooter,Ubisoft,1.2,0.62,0,0.18,2.01 +LEGO Marvel Super Heroes,PS3,2013,Action,Warner Bros. Interactive Entertainment,0.77,0.85,0.01,0.37,2 +Fire Emblem: Awakening,3DS,2012,Role-Playing,Nintendo,0.89,0.45,0.53,0.13,2 +DriveClub,PS4,2014,Racing,Sony Computer Entertainment,0.35,1.31,0.02,0.33,2 +Super Street Fighter II,SNES,1993,Fighting,Nintendo,0.52,0.16,1.29,0.03,2 +Mortal Kombat vs. DC Universe,PS3,2008,Fighting,Midway Games,1.48,0.3,0,0.22,2 +Tenchu: Stealth Assassins,PS,1997,Action,Activision,0.95,0.64,0.27,0.13,1.99 +Tennis,GB,1989,Sports,Nintendo,0.75,0.3,0.9,0.04,1.99 +Harry Potter and the Chamber of Secrets,GBA,2002,Action,Electronic Arts,1.21,0.64,0.05,0.09,1.99 +Harry Potter and the Chamber of Secrets,PS,2002,Action,Electronic Arts,0.75,1.09,0.02,0.12,1.98 +SimCity,SNES,1991,Simulation,Nintendo,0.93,0.27,0.75,0.04,1.98 +Battlefield 4,XOne,2013,Shooter,Electronic Arts,1.25,0.58,0,0.16,1.98 +Resident Evil 6,X360,2012,Shooter,Capcom,1.11,0.63,0.07,0.16,1.98 +Dragon Age: Inquisition,PS4,2014,Role-Playing,Electronic Arts,0.72,0.86,0.08,0.32,1.97 +Sonic Classic Collection,DS,2010,Platform,Sega,0.99,0.8,0,0.18,1.97 +Spyro: Enter the Dragonfly,PS2,2002,Platform,Universal Interactive,0.74,0.95,0,0.28,1.97 +Call of Duty: World at War,Wii,2008,Shooter,Activision,1.2,0.59,0,0.19,1.97 +Devil May Cry 2,PS2,2003,Action,Capcom,0.71,0.58,0.51,0.17,1.97 +Burnout Paradise,PS3,2008,Racing,Electronic Arts,1.01,0.64,0.02,0.3,1.97 +E.T.: The Extra Terrestrial,2600,1981,Action,Atari,1.84,0.11,0,0.02,1.97 +BioShock Infinite,X360,2013,Shooter,Take-Two Interactive,1.22,0.57,0.02,0.15,1.96 +Hot Shots Golf: Open Tee,PSP,2004,Sports,Sony Computer Entertainment,0.5,0.5,0.63,0.33,1.96 +Rad Racer,NES,1986,Racing,Nintendo,1.13,0.37,0.41,0.05,1.96 +Soccer,NES,1985,Sports,Nintendo,0.18,0.23,1.53,0.02,1.96 +Kirby Squeak Squad,DS,2006,Platform,Nintendo,0.79,0.03,1.05,0.08,1.96 +Tom Clancy's Rainbow Six: Vegas,X360,2006,Shooter,Ubisoft,1.09,0.65,0.02,0.2,1.96 +Destiny,X360,2014,Shooter,Activision,1.3,0.49,0,0.16,1.95 +Crash Nitro Kart,PS2,2003,Racing,Vivendi Games,0.74,1.01,0,0.2,1.95 +Grand Theft Auto: San Andreas,XB,2005,Action,Take-Two Interactive,1.26,0.61,0,0.09,1.95 +Star Wars: Dark Forces,PC,1994,Shooter,LucasArts,1.09,0.77,0,0.09,1.95 +NBA Street Vol. 2,PS2,2003,Sports,Electronic Arts,1.69,0.2,0,0.06,1.95 +Def Jam Vendetta,PS2,2003,Fighting,Electronic Arts,0.95,0.74,0,0.25,1.94 +FIFA Soccer 09,X360,2008,Sports,Electronic Arts,0.49,1.26,0.01,0.18,1.94 +Who wants to be a millionaire,PC,1999,Misc,Disney Interactive Studios,1.94,0,0,0,1.94 +Scooby Doo and the Cyber Chase,PS,2001,Adventure,THQ,0.59,1.23,0,0.13,1.94 +Alleyway,GB,1989,Puzzle,Nintendo,0.96,0.38,0.55,0.05,1.94 +Dragon Ball Z: Budokai 3,PS2,2004,Fighting,Atari,1.09,0.15,0.65,0.04,1.94 +Jet Moto 2,PS,1997,Racing,Sony Computer Entertainment,1.41,0.42,0.03,0.07,1.94 +Tom Clancy's Ghost Recon,PS2,2002,Shooter,Ubisoft,1.42,0.4,0,0.12,1.94 +X-Men Legends,PS2,2004,Role-Playing,Activision,1,0.72,0,0.21,1.93 +Batman: Arkham Origins,X360,2013,Action,Warner Bros. Interactive Entertainment,1.15,0.61,0,0.17,1.93 +Guitar Hero: World Tour,PS3,2008,Misc,Activision,1.1,0.56,0,0.27,1.93 +Mortal Kombat II,SNES,1993,Fighting,Acclaim Entertainment,1.48,0.39,0,0.06,1.93 +Virtua Fighter 2,SAT,1995,Fighting,Sega,0.34,0.26,1.3,0.03,1.93 +Tetris DX,GB,1998,Puzzle,Nintendo,1.06,0.6,0.2,0.07,1.93 +Mortal Kombat vs. DC Universe,X360,2008,Fighting,Midway Games,1.53,0.24,0,0.16,1.93 +Watch Dogs,PS3,2014,Action,Ubisoft,0.56,0.89,0.1,0.37,1.93 +Mario Super Sluggers,Wii,2008,Sports,Nintendo,1.51,0,0.29,0.12,1.93 +Tomb Raider (2013),X360,2013,Action,Square Enix,0.86,0.87,0.01,0.17,1.92 +The Legend of Zelda: Oracle of Ages,GB,2001,Action,Nintendo,0.92,0.53,0.41,0.06,1.92 +Need for Speed: Shift,X360,2009,Racing,Electronic Arts,0.73,0.97,0.01,0.22,1.92 +Monopoly,Wii,2008,Misc,Electronic Arts,0.87,0.85,0,0.2,1.92 +Red Faction,PS2,2001,Shooter,THQ,0.76,0.96,0,0.2,1.92 +The Sims: Makin' Magic,PC,2003,Simulation,Electronic Arts,1.03,0.8,0,0.09,1.92 +MX Unleashed,PS2,2004,Racing,THQ,0.94,0.73,0,0.25,1.92 +PaRappa The Rapper,PS,1996,Misc,Sony Computer Entertainment,0.26,0.16,1.46,0.03,1.92 +Toy Story Mania!,Wii,2009,Misc,Disney Interactive Studios,1.06,0.67,0,0.18,1.92 +Mario Party 3,N64,2000,Misc,Nintendo,0.72,0.16,1.01,0.02,1.91 +Star Wars: The Force Unleashed,Wii,2008,Action,LucasArts,1.14,0.57,0,0.19,1.91 +Game Party 2,Wii,2008,Misc,Midway Games,1.3,0.44,0,0.17,1.91 +Destiny: The Taken King,PS4,2015,Shooter,Activision,0.77,0.78,0.04,0.31,1.91 +LEGO Star Wars III: The Clone Wars,Wii,2011,Action,LucasArts,1.08,0.66,0,0.17,1.91 +Star Wars Rogue Leader: Rogue Squadron II,GC,2001,Simulation,LucasArts,1.03,0.75,0.03,0.09,1.9 +Max Payne 3,PS3,2012,Shooter,Take-Two Interactive,0.59,0.92,0.06,0.32,1.9 +Need for Speed Rivals,PS4,2013,Racing,Electronic Arts,0.73,0.91,0.03,0.22,1.89 +Madden NFL 09,PS3,2008,Sports,Electronic Arts,1.56,0.15,0,0.18,1.89 +Yokai Watch,3DS,2013,Role-Playing,Nintendo,0.21,0.3,1.33,0.04,1.89 +Ratchet & Clank Future: A Crack in Time,PS3,2009,Platform,Sony Computer Entertainment,1.05,0.54,0.03,0.26,1.88 +Yu-Gi-Oh! Forbidden Memories,PS,1999,Role-Playing,Konami Digital Entertainment,1.37,0.44,0,0.08,1.88 +Mortal Kombat: Deception,PS2,2004,Fighting,Midway Games,0.92,0.72,0,0.24,1.88 +Hot Shots Golf 2,PS,1999,Sports,Sony Computer Entertainment,0.25,0.12,1.48,0.03,1.88 +Medal of Honor: European Assault (All Region sales),PS2,2005,Shooter,Electronic Arts,0.89,0.69,0.09,0.21,1.88 +WCW Nitro,PS,1998,Fighting,THQ,1.42,0.36,0.03,0.07,1.88 +High School Musical: Sing It!,PS2,2007,Misc,Disney Interactive Studios,0.47,0.08,0,1.33,1.87 +Star Fox Adventures,GC,2002,Adventure,Nintendo,0.96,0.53,0.3,0.09,1.87 +FIFA 2000,PS,1998,Sports,Electronic Arts,0.22,1.47,0.04,0.14,1.87 +Dynasty Warriors 3,PS2,2001,Action,THQ,0.53,0.16,1.07,0.1,1.87 +Donkey Kong Country Returns,3DS,2013,Platform,Nintendo,0.73,0.62,0.4,0.12,1.87 +The Legend of Zelda: Oracle of Seasons,GB,2001,Adventure,Nintendo,0.87,0.52,0.41,0.06,1.86 +Madden NFL 06,XB,2005,Sports,Electronic Arts,1.75,0.03,0,0.08,1.86 +Shrek 2,PS2,2004,Platform,Activision,1.12,0.69,0.03,0.02,1.86 +The Legend of Dragoon,PS,1999,Role-Playing,Sony Computer Entertainment,0.94,0.44,0.39,0.1,1.86 +Turok 2: Seeds of Evil,N64,1997,Platform,Acclaim Entertainment,1.37,0.41,0.04,0.04,1.86 +SingStar,PS2,2004,Misc,Sony Computer Entertainment,0,1.37,0,0.49,1.86 +LittleBigPlanet 3,PS4,2014,Platform,Sony Computer Entertainment,0.64,0.92,0.01,0.29,1.86 +NBA Live 2002,PS2,2001,Sports,Electronic Arts,0.91,0.71,0,0.24,1.86 +Phineas and Ferb,DS,2009,Action,Disney Interactive Studios,1.34,0.37,0,0.15,1.86 +Chrono Cross,PS,1999,Role-Playing,SquareSoft,0.62,0.42,0.69,0.12,1.86 +GoldenEye 007 (2010),Wii,2010,Action,Activision,0.85,0.71,0.13,0.16,1.86 +Mario Party: Island Tour,3DS,2013,Misc,Nintendo,0.61,0.59,0.55,0.11,1.85 +Jak 3,PS2,2004,Platform,Sony Computer Entertainment,1.33,0.49,0,0.03,1.85 +Rayman Raving Rabbids 2,Wii,2007,Misc,Ubisoft,0.83,0.82,0,0.2,1.85 +Kingdom Hearts: Chain of Memories,GBA,2004,Role-Playing,Square Enix,1.26,0.18,0.35,0.06,1.85 +Pinball,NES,1984,Action,Nintendo,0.8,0.19,0.83,0.03,1.85 +inFAMOUS 2,PS3,2011,Action,Sony Computer Entertainment,1.05,0.49,0.08,0.23,1.85 +Gran Turismo Concept 2001 Tokyo,PS2,2001,Racing,Unknown,0,1.1,0.42,0.33,1.84 +Demon's Souls,PS3,2009,Role-Playing,Namco Bandai Games,0.97,0.34,0.35,0.18,1.84 +NCAA Football 06,PS2,2005,Sports,Electronic Arts,1.53,0.05,0,0.25,1.84 +"Hey You, Pikachu!",N64,1998,Simulation,Nintendo,0.83,0.06,0.93,0,1.83 +2 Games in 1: Sonic Advance & ChuChu Rocket!,GBA,2005,Misc,THQ,1.31,0.49,0,0.03,1.83 +World of Warcraft: Mists of Pandaria,PC,2012,Role-Playing,Activision,0.84,0.76,0,0.23,1.83 +Jet Moto,PS,1996,Racing,Sony Computer Entertainment,1.33,0.4,0.03,0.07,1.83 +Just Cause 3,PS4,2015,Action,Square Enix,0.46,1.02,0.07,0.28,1.83 +Secret of Mana,SNES,1993,Role-Playing,SquareSoft,0.25,0.07,1.49,0.02,1.83 +The Orange Box,X360,2007,Shooter,Electronic Arts,1.09,0.54,0.02,0.17,1.83 +Air Combat,PS,1995,Simulation,Sony Computer Entertainment,0.92,0.33,0.52,0.05,1.83 +Kirby: Triple Deluxe,3DS,2014,Platform,Nintendo,0.61,0.34,0.79,0.09,1.82 +Sonic & Knuckles,GEN,1994,Platform,Sega,1.24,0.43,0.03,0.12,1.82 +Namco Museum,PS2,2001,Misc,Namco Bandai Games,1.73,0.07,0,0.02,1.82 +The Sims: Hot Date,PC,2001,Simulation,Electronic Arts,1.81,0,0,0,1.82 +Metroid Prime 3: Corruption,Wii,2007,Shooter,Nintendo,0.91,0.74,0.07,0.09,1.82 +Dragon Quest VI: Realms of Revelation,DS,2010,Role-Playing,Nintendo,0.22,0.21,1.35,0.03,1.81 +The Evil Within,PS4,2014,Action,Bethesda Softworks,0.55,0.84,0.11,0.31,1.81 +DDRMAX2: Dance Dance Revolution,PS2,2003,Simulation,Konami Digital Entertainment,1.05,0.59,0,0.18,1.81 +Crazy Taxi,DC,2000,Racing,Sega,1.1,0.51,0.12,0.08,1.81 +Virtua Fighter 4,PS2,2002,Fighting,Sega,0.78,0.44,0.56,0.04,1.81 +Sly 2: Band of Thieves,PS2,2004,Platform,Sony Computer Entertainment,0.88,0.69,0,0.23,1.81 +Guitar Hero: World Tour,PS2,2008,Misc,Activision,1,0.03,0,0.77,1.8 +Sonic Advance 2,GBA,2002,Platform,Sega,0.93,0.59,0.21,0.07,1.8 +Madden NFL 07,X360,2006,Sports,Electronic Arts,1.66,0,0.01,0.13,1.8 +NBA 2K11,PS3,2010,Action,Take-Two Interactive,1.41,0.21,0.03,0.16,1.8 +NFL GameDay 2000,PS,1999,Sports,989 Studios,1,0.68,0,0.12,1.8 +Call of Duty: Black Ops 3,PS3,2015,Shooter,Activision,0.49,0.96,0.07,0.27,1.79 +Disney's The Lion King,SNES,1994,Platform,Virgin Interactive,1.26,0.39,0.08,0.06,1.79 +Beyond: Two Souls,PS3,2013,Adventure,Sony Computer Entertainment,0.52,0,0.06,0.34,1.79 +Kinect Star Wars,X360,2012,Action,Microsoft Game Studios,1.05,0.57,0.03,0.14,1.78 +Midnight Club II,PS2,2003,Racing,Take-Two Interactive,1.25,0.29,0,0.24,1.78 +Dragon Quest Monsters: Joker,DS,2006,Role-Playing,Square Enix,0.23,0.03,1.49,0.03,1.78 +SpongeBob SquarePants: SuperSponge,PS,2001,Action,THQ,1.12,0.58,0,0.08,1.78 +The Getaway: Black Monday,PS2,2004,Action,Sony Computer Entertainment,0.39,1.01,0.02,0.36,1.78 +Professor Layton and the Mask of Miracle,3DS,2011,Puzzle,Nintendo,0.32,0,0.36,0.14,1.78 +Just Cause 2,PS3,2010,Action,Square Enix,0.45,0.94,0.06,0.33,1.78 +Dragon's Dogma,PS3,2012,Role-Playing,Capcom,0.41,0.46,0.72,0.19,1.78 +The Legend of Zelda: The Wind Waker,WiiU,2013,Action,Nintendo,0.93,0.57,0.14,0.13,1.77 +50 Cent: Bulletproof,PS2,2005,Action,Vivendi Games,0.85,0.76,0,0.16,1.77 +High School Musical: Sing It!,Wii,2007,Misc,Disney Interactive Studios,1.16,0.45,0,0.16,1.77 +Wii Party U,WiiU,2013,Misc,Nintendo,0.31,0.54,0.84,0.08,1.77 +Madden NFL 25,PS3,2013,Sports,Electronic Arts,1.59,0.03,0,0.15,1.77 +Final Fantasy II,SNES,1991,Role-Playing,Square,0.24,0.09,1.33,0.12,1.77 +Kirby 64: The Crystal Shards,N64,2000,Platform,Nintendo,0.63,0.06,1.03,0.04,1.77 +Dead or Alive 3,XB,2001,Fighting,Microsoft Game Studios,1.19,0.29,0.24,0.06,1.77 +UFC 2009 Undisputed,PS3,2009,Fighting,THQ,1.07,0.45,0.01,0.24,1.77 +Metroid II: Return of Samus,GB,1991,Adventure,Nintendo,0.85,0.31,0.56,0.04,1.76 +WWF Attitude,PS,1998,Fighting,Acclaim Entertainment,1.27,0.42,0,0.07,1.76 +The SpongeBob SquarePants Movie,PS2,2004,Platform,THQ,1.06,0.54,0,0.16,1.76 +Golden Sun,GBA,2001,Role-Playing,Nintendo,0.93,0.38,0.4,0.06,1.76 +Sonic the Hedgehog 3,GEN,1994,Platform,Sega,1.02,0.47,0.2,0.07,1.76 +Kid Icarus,NES,1986,Platform,Nintendo,0.53,0.12,1.09,0.02,1.76 +Def Jam: Fight for NY,PS2,2004,Fighting,Electronic Arts,0.86,0.67,0,0.22,1.76 +Tom Clancy's Ghost Recon,XB,2002,Shooter,Ubisoft,1.23,0.46,0,0.07,1.76 +State of Emergency,PS2,2002,Action,Take-Two Interactive,0.86,0.67,0,0.22,1.76 +BioShock Infinite,PS3,2013,Shooter,Take-Two Interactive,0.72,0.69,0.04,0.31,1.76 +Hitman: Absolution,X360,2012,Action,Square Enix,0.68,0,0.01,0.17,1.76 +2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures,GBA,2007,Action,THQ,1.26,0.47,0,0.03,1.76 +Call of Duty: Black Ops 3,X360,2015,Shooter,Activision,1.11,0.48,0,0.16,1.76 +The Urbz: Sims in the City,PS2,2004,Simulation,Electronic Arts,0.52,0.95,0,0.29,1.76 +FIFA Soccer 08,PS3,2007,Sports,Electronic Arts,0.35,1.07,0.02,0.32,1.76 +Star Wars: Starfighter,PS2,2001,Simulation,Activision,0.61,0.87,0.02,0.26,1.76 +Madden NFL 2000,PS,1998,Sports,Electronic Arts,1.68,0.04,0,0.04,1.75 +Kingdom Hearts,PS3,2013,Role-Playing,Square Enix,0.9,0.37,0.25,0.24,1.75 +Star Wars: Battlefront,XB,2004,Shooter,Activision,1.24,0.45,0,0.07,1.75 +Pro Evolution Soccer,PS2,2001,Sports,Konami Digital Entertainment,0.06,0.9,0.53,0.27,1.75 +Crackdown,X360,2007,Shooter,Microsoft Game Studios,1,0.54,0.03,0.18,1.75 +Yoshi,NES,1991,Puzzle,Nintendo,0.7,0.13,0.91,0.01,1.75 +Disney's Aladdin,SNES,1993,Platform,Capcom,0.94,0.34,0.21,0.27,1.75 +Kirby's Adventure,NES,1993,Platform,Nintendo,0.79,0.14,0.8,0.02,1.75 +Cooking Mama 3: Shop & Chop,DS,2009,Simulation,505 Games,0.83,0.66,0.08,0.18,1.75 +Dance Dance Revolution X,PS2,2008,Simulation,Konami Digital Entertainment,0.85,0.66,0.01,0.22,1.75 +2 Games in 1: Disney Princess & The Lion King,GBA,2004,Misc,THQ,1.25,0.46,0,0.03,1.75 +Star Wars Episode I: The Phantom Menace,PS,1999,Adventure,LucasArts,0.72,0.89,0.04,0.1,1.74 +Xenosaga Episode I: Der Wille zur Macht,PS2,2002,Role-Playing,Namco Bandai Games,0.63,0.49,0.45,0.17,1.74 +Portal 2,PS3,2011,Shooter,Valve,0.83,0.63,0.02,0.25,1.74 +The Beatles: Rock Band,Wii,2009,Misc,MTV Games,1.19,0.4,0,0.16,1.74 +Forza Motorsport 6,XOne,2015,Racing,Microsoft Game Studios,0.69,0.89,0.03,0.14,1.74 +Sonic Colors,Wii,2010,Platform,Sega,0.96,0,0.01,0.16,1.74 +Cruis'n USA,N64,1996,Racing,Nintendo,1.69,0.04,0,0.01,1.74 +Madden NFL 99,PS,1998,Sports,Electronic Arts,1.66,0.04,0,0.04,1.74 +Diablo III,PS4,2014,Role-Playing,Activision,0.49,0.88,0.06,0.3,1.74 +Uncharted: Golden Abyss,PSV,2011,Shooter,Sony Computer Entertainment,0.59,0.75,0.13,0.27,1.74 +Destiny,PS3,2014,Shooter,Activision,0.67,0.66,0.12,0.27,1.73 +SSX Tricky,PS2,2001,Sports,Electronic Arts,0.85,0.66,0,0.22,1.73 +Overwatch,PS4,2016,Shooter,Activision,0.64,0.68,0.14,0.26,1.73 +Twisted Metal III,PS,1998,Action,989 Studios,1.48,0.2,0,0.05,1.73 +Harry Potter and the Sorcerer's Stone,GB,2001,Action,Electronic Arts,0.94,0.62,0.1,0.07,1.73 +Disney Infinity,Wii,2013,Action,Disney Interactive Studios,1.15,0.44,0,0.14,1.73 +Crash Bandicoot: The Huge Adventure,GBA,2002,Platform,Universal Interactive,0.95,0.7,0,0.08,1.73 +Dishonored,X360,2012,Action,Bethesda Softworks,1.06,0.52,0.01,0.14,1.73 +Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City,PS2,2003,Action,Take-Two Interactive,0.85,0.66,0,0.22,1.72 +The Order: 1886,PS4,2015,Shooter,Sony Computer Entertainment,0.61,0.78,0.06,0.27,1.72 +The Elder Scrolls Online,PS4,2015,Role-Playing,Bethesda Softworks,0.66,0.78,0,0.28,1.72 +Call of Duty: World at War Final Fronts,PS2,2008,Shooter,Activision,0.61,0,0,0.94,1.72 +Imagine: Teacher,DS,2008,Simulation,Ubisoft,0.7,0.83,0,0.19,1.72 +Call of Duty: Modern Warfare 3,PC,2011,Shooter,Activision,0.41,0.98,0,0.33,1.72 +Madden NFL 2005,XB,2004,Sports,Electronic Arts,1.61,0.03,0,0.08,1.72 +Star Ocean: Till The End of Time,PS2,2003,Role-Playing,Ubisoft,0.8,0.21,0.55,0.15,1.72 +The Sims 3: Late Night Expansion Pack,PC,2010,Simulation,Electronic Arts,0.59,0.87,0,0.25,1.71 +Game Party 3,Wii,2009,Puzzle,Warner Bros. Interactive Entertainment,1.43,0.16,0,0.12,1.71 +Toy Story 2: Buzz Lightyear to the Rescue!,PS,1998,Platform,Activision,0.99,0.64,0,0.08,1.71 +Deal or No Deal,DS,2007,Misc,Mindscape,1.15,0.41,0,0.15,1.71 +Ace Combat 5: The Unsung War,PS2,2004,Simulation,Sony Computer Entertainment Europe,0.88,0.34,0.32,0.18,1.71 +Need for Speed Underground,XB,2003,Racing,Electronic Arts,1.09,0.55,0,0.07,1.71 +Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS,DS,2006,Misc,Nintendo,0,0,1.71,0,1.71 +Tetris Worlds,GBA,2001,Puzzle,THQ,1.25,0.39,0,0.06,1.71 +Cabela's Big Game Hunter 2010,Wii,2009,Sports,Activision Value,1.58,0,0,0.12,1.7 +The Crew,PS4,2014,Racing,Ubisoft,0.34,1.08,0.03,0.26,1.7 +FIFA Soccer 10,PS2,2009,Sports,Electronic Arts,0.23,0.24,0,1.23,1.7 +We Ski,Wii,2008,Sports,Namco Bandai Games,0.99,0.42,0.14,0.15,1.7 +Personal Trainer: Math,DS,2007,Puzzle,Nintendo,0.49,1.12,0,0.09,1.7 +Kirby's Return to Dreamland,Wii,2011,Platform,Nintendo,0.62,0.21,0.79,0.08,1.7 +Super Puyo Puyo,SNES,1993,Puzzle,Banpresto,0,0,1.69,0.01,1.7 +Ben 10: Protector of Earth,DS,2007,Action,D3Publisher,0.69,0.83,0,0.19,1.7 +NCAA Football 07,PS2,2006,Sports,Electronic Arts,1.41,0.05,0,0.23,1.7 +SOCOM 3: U.S. Navy SEALs,PS2,2005,Shooter,Sony Computer Entertainment,1.22,0.34,0.04,0.1,1.69 +NBA 2K15,XOne,2014,Sports,Take-Two Interactive,1.36,0.18,0,0.15,1.69 +Saints Row 2,PS3,2008,Action,THQ,0.88,0.54,0.02,0.25,1.69 +Saints Row IV,X360,2013,Action,Deep Silver,1.01,0.53,0.01,0.14,1.69 +Jampack Winter '99,PS,1999,Misc,Sony Computer Entertainment,0.94,0.64,0,0.11,1.69 +Dragon Age: Origins,PS3,2009,Role-Playing,Electronic Arts,0.96,0,0.08,0.22,1.69 +FIFA 16,X360,2015,Sports,Electronic Arts,0.55,1.01,0,0.13,1.69 +WCW vs. nWo: World Tour,N64,1997,Fighting,THQ,1.37,0.28,0.03,0.02,1.69 +WCW/NWO Thunder,PS,1998,Fighting,THQ,1.1,0.48,0.04,0.07,1.69 +Harry Potter and the Sorcerer's Stone,GBA,2001,Action,Electronic Arts,0.87,0.66,0.08,0.08,1.69 +Need For Speed: Undercover,X360,2008,Racing,Electronic Arts,0.79,0.71,0.01,0.18,1.69 +Dragon Ball Z: The Legacy of Goku,GBA,2002,Role-Playing,Infogrames,1.52,0.12,0,0.05,1.69 +Sid Meier's Civilization V,PC,2010,Strategy,Take-Two Interactive,0.98,0.52,0,0.19,1.69 +Resident Evil 4,GC,2005,Action,Capcom,0.98,0.42,0.22,0.06,1.69 +Call of Duty Black Ops: Declassified,PSV,2012,Action,Activision,0.8,0.52,0.07,0.3,1.69 +Star Wars Battlefront: Renegade Squadron,PSP,2007,Shooter,LucasArts,0.9,0.47,0,0.32,1.68 +World Championship Poker: Featuring Howard Lederer - All In,PS2,2006,Misc,Oxygen Interactive,0.82,0.64,0,0.22,1.68 +NFL GameDay 98,PS,1997,Sports,Sony Computer Entertainment,1.58,0.06,0,0.04,1.68 +LEGO Batman 2: DC Super Heroes,X360,2012,Action,Warner Bros. Interactive Entertainment,0.9,0.64,0,0.15,1.68 +Yoshi's Cookie,GB,1992,Puzzle,Nintendo,0.59,0.24,0.82,0.03,1.68 +Time Crisis,PS,1997,Shooter,Namco Bandai Games,0.38,0.87,0.33,0.1,1.68 +The Sims: Superstar,PC,2003,Simulation,Electronic Arts,1.67,0,0,0,1.68 +Star Wars The Clone Wars: Lightsaber Duels,Wii,2008,Action,LucasArts,1.23,0.3,0,0.14,1.68 +MySims,Wii,2007,Simulation,Electronic Arts,0.91,0.55,0.04,0.17,1.68 +Metroid Fusion,GBA,2002,Action,Nintendo,1.18,0.27,0.17,0.06,1.68 +Shaun White Snowboarding: Road Trip,Wii,2008,Sports,Ubisoft,0.94,0.57,0,0.17,1.67 +SSX 3,PS2,2003,Sports,Electronic Arts,0.93,0.52,0,0.22,1.67 +Big Beach Sports,Wii,2008,Sports,THQ,0.45,1.02,0,0.2,1.67 +Madden NFL 2001,PS,2000,Sports,Electronic Arts,1.58,0.05,0,0.04,1.67 +Fight Night Round 3,PS3,2006,Fighting,Electronic Arts,0.81,0.59,0.01,0.26,1.67 +Knack,PS4,2013,Platform,Sony Computer Entertainment Europe,0.43,0.67,0.42,0.15,1.67 +Star Wars: Battlefront II,XB,2005,Shooter,Activision,1.22,0.39,0,0.06,1.67 +Disney's DuckTales,NES,1989,Platform,Capcom,0.91,0.3,0.42,0.04,1.67 +Tony Hawk's Pro Skater 3,PS,2001,Sports,Activision,1.09,0.49,0.02,0.07,1.67 +"Monsters, Inc.",GBA,2001,Adventure,THQ,0.59,0.95,0.03,0.1,1.67 +StarCraft II: Heart of the Swarm,PC,2013,Strategy,Activision,0.82,0.65,0,0.19,1.67 +PGR: Project Gotham Racing 2,XB,2003,Racing,Microsoft Game Studios,0.97,0.59,0.04,0.07,1.67 +Spy Hunter,PS2,2001,Racing,Midway Games,1.13,0.32,0.21,0.22,1.67 +NCAA Football 2004,PS2,2003,Sports,Electronic Arts,1.35,0.09,0.23,0.23,1.67 +SpongeBob SquarePants: Battle for Bikini Bottom,PS2,2003,Platform,THQ,1.08,0.45,0,0.14,1.67 +Dying Light,PS4,2015,Action,Warner Bros. Interactive Entertainment,0.63,0.66,0.11,0.26,1.66 +Heavenly Sword,PS3,2007,Action,Sony Computer Entertainment,0.57,0.73,0.06,0.3,1.66 +Street Fighter II': Special Champion Edition,GEN,1992,Fighting,Sega,1,0.3,0.31,0.04,1.66 +SSX,PS2,2000,Sports,Electronic Arts,0.78,0.61,0.06,0.2,1.66 +Max Payne 3,X360,2012,Shooter,Take-Two Interactive,0.86,0.64,0.01,0.14,1.66 +NBA Ballers,PS2,2004,Sports,Midway Games,0.81,0.63,0,0.21,1.66 +Need for Speed Carbon,X360,2006,Racing,Electronic Arts,0.76,0.7,0.02,0.18,1.66 +NBA Live 2003,PS2,2002,Sports,Electronic Arts,1.25,0.15,0.03,0.22,1.66 +Dragon Ball Z: Budokai Tenkaichi,PS2,2005,Fighting,Atari,0.96,0.12,0.54,0.04,1.66 +Ms. Pac-Man,2600,1981,Puzzle,Atari,1.54,0.1,0,0.02,1.65 +Mario Party 6,GC,2004,Misc,Nintendo,0.9,0.11,0.6,0.05,1.65 +Super Scope 6,SNES,1991,Shooter,Nintendo,1.06,0.38,0.15,0.05,1.65 +Go Vacation,Wii,2011,Misc,Namco Bandai Games,0.48,0.68,0.33,0.16,1.65 +Dragon Quest V: Tenkuu no Hanayome,PS2,2004,Role-Playing,Enix Corporation,0,0,1.65,0,1.65 +Army of Two,X360,2008,Shooter,Electronic Arts,1.09,0.38,0.02,0.16,1.65 +Dragon Quest IV: Chapters of the Chosen,DS,2007,Role-Playing,Square Enix,0.32,0.02,1.27,0.03,1.64 +Kirby & the Amazing Mirror,GBA,2004,Platform,Nintendo,0.8,0.05,0.76,0.03,1.64 +LEGO Pirates of the Caribbean: The Video Game,Wii,2011,Action,Disney Interactive Studios,0.76,0.72,0,0.16,1.64 +Dig Dug,2600,1982,Puzzle,Atari,1.52,0.1,0,0.02,1.64 +Tom Clancy's Rainbow Six,PS,1999,Shooter,Red Storm Entertainment,0.93,0.63,0,0.08,1.64 +Ghosts 'n Goblins,NES,1986,Action,Capcom,0.74,0.26,0.61,0.03,1.64 +Tiger Woods PGA Tour 2003,PS2,2002,Sports,Electronic Arts,0.8,0.63,0,0.21,1.64 +NBA Live 06 (All region sales),PS2,2005,Sports,Electronic Arts,1.44,0.15,0,0.05,1.64 +Prince of Persia: Warrior Within,PS2,2004,Action,Ubisoft,0.54,0.88,0,0.22,1.64 +Kinectimals,X360,2010,Simulation,Microsoft Game Studios,1.02,0.48,0,0.14,1.64 +Until Dawn,PS4,2015,Adventure,Sony Computer Entertainment Europe,0.44,0.89,0.05,0.25,1.64 +ESPN NFL 2K5,XB,2004,Sports,Sega,1.54,0.02,0,0.07,1.63 +Viva Pinata,X360,2006,Simulation,Microsoft Game Studios,0.45,0.96,0.02,0.2,1.63 +Pikmin,GC,2001,Strategy,Nintendo,0.78,0.25,0.56,0.04,1.63 +Call of Duty: Black Ops,PC,,Shooter,Activision,0.58,0.81,0,0.24,1.63 +Sonic Generations,PS3,2011,Platform,Sega,0.6,0.73,0.02,0.28,1.63 +Tiger Woods PGA Tour 2004,PS2,2003,Sports,Electronic Arts,1.18,0.34,0,0.1,1.63 +Ape Escape,PS,1999,Platform,Sony Computer Entertainment,0.71,0.48,0.32,0.11,1.63 +NBA 2K15,X360,2014,Sports,Take-Two Interactive,1.33,0.14,0,0.15,1.63 +NCAA Football 2005,PS2,2004,Sports,Electronic Arts,1.32,0.09,0,0.22,1.62 +Just Cause 2,X360,2010,Action,Square Enix,0.59,0.85,0.02,0.17,1.62 +Rock Band,PS3,,Misc,Electronic Arts,0.99,0.41,0,0.22,1.62 +Tony Hawk's American Wasteland (Old all region sales),PS2,2005,Sports,Activision,0.8,0.63,0.01,0.19,1.62 +Rage,X360,2011,Shooter,Bethesda Softworks,0.82,0.61,0.03,0.15,1.62 +Mario Hoops 3 on 3,DS,2006,Sports,Nintendo,0.99,0.04,0.49,0.1,1.62 +Kirby Air Ride,GC,2003,Racing,Nintendo,1.01,0.11,0.45,0.04,1.62 +Sled Storm,PS,1998,Racing,Electronic Arts,0.9,0.61,0,0.11,1.62 +Pokemon Battle Revolution,Wii,2006,Role-Playing,Nintendo,0.8,0.38,0.3,0.13,1.61 +NFL Street 2,PS2,2004,Sports,Electronic Arts,0.79,0.62,0,0.21,1.61 +Gears of War: Judgment,X360,2013,Shooter,Microsoft Game Studios,0.92,0.53,0.03,0.13,1.61 +Baseball,GB,1989,Sports,Nintendo,0.66,0.27,0.65,0.03,1.61 +Yu-Gi-Oh! Duel Monsters,GB,1998,Strategy,Konami Digital Entertainment,0,0,1.61,0.01,1.61 +Super Mario Strikers,GC,2005,Sports,Nintendo,0.98,0.38,0.2,0.04,1.61 +Buzz! The Music Quiz,PS2,2005,Misc,Sony Computer Entertainment,0,1.18,0,0.43,1.61 +SpongeBob's Atlantis SquarePantis,DS,2007,Action,THQ,1.5,0,0,0.11,1.61 +Far Cry 4,XOne,2014,Shooter,Ubisoft,0.79,0.68,0.01,0.13,1.61 +Dance Dance Revolution: Hottest Party 2,Wii,2008,Simulation,Konami Digital Entertainment,0.95,0.48,0.01,0.15,1.6 +Moshi Monsters: Moshling Zoo,DS,2011,Misc,Activision,0.4,0.99,0,0.22,1.6 +Dollar Dash,PS2,2005,Action,Take-Two Interactive,1.3,0.23,0,0.07,1.6 +Far Cry 2,X360,2008,Action,Ubisoft,0.71,0.69,0.02,0.18,1.6 +F-1 World Grand Prix,N64,1998,Racing,Video System,0.46,0.96,0.09,0.08,1.6 +River Raid,2600,1981,Shooter,Activision,1.49,0.09,0,0.02,1.6 +Silent Hill,PS,1999,Action,Konami Digital Entertainment,0.71,0.48,0.3,0.1,1.6 +Dragon Quest V: Hand of the Heavenly Bride,DS,2008,Role-Playing,Square Enix,0.19,0.02,1.36,0.02,1.6 +No Man's Sky,PS4,2016,Action,Hello Games,0.58,0.74,0.02,0.26,1.6 +Sonic Heroes,GC,2003,Platform,Sega,1.05,0.44,0.06,0.04,1.6 +ESPN NBA 2K5,PS2,2004,Sports,Global Star,1.26,0.12,0,0.21,1.59 +Diablo,PC,1996,Role-Playing,Activision,0.01,1.58,0,0,1.59 +The Legend of Zelda: Twilight Princess,GC,2006,Action,Nintendo,1.15,0,0.04,0.04,1.59 +Soul Edge,PS,1996,Fighting,Sony Computer Entertainment,0.61,0.41,0.46,0.1,1.59 +Devil May Cry 4,PS3,2008,Action,Capcom,0.58,0.46,0.34,0.21,1.59 +Mario Bros.,2600,1982,Platform,Atari,1.48,0.09,0,0.02,1.59 +Pro Evolution Soccer 2008,PS3,2007,Sports,Konami Digital Entertainment,0.04,1.1,0.32,0.13,1.59 +SoulCalibur IV,X360,2008,Fighting,Ubisoft,0.92,0.44,0.07,0.15,1.59 +LEGO Harry Potter: Years 1-4,X360,2010,Action,Warner Bros. Interactive Entertainment,0.95,0.5,0,0.14,1.59 +NASCAR 2000,PS,1999,Racing,Electronic Arts,0.88,0.6,0,0.1,1.59 +Wolfenstein: The New Order,PS4,2014,Shooter,Bethesda Softworks,0.47,0.8,0.03,0.29,1.58 +Carnival Games: Mini Golf,Wii,2008,Sports,Take-Two Interactive,0.87,0.56,0,0.15,1.58 +Guitar Hero: On Tour Decades,DS,2008,Misc,Activision,0.85,0.58,0,0.16,1.58 +MySims Kingdom,DS,2008,Simulation,Electronic Arts,0.81,0.6,0.01,0.17,1.58 +Jampack Summer 2K,PS,2000,Misc,Sony Computer Entertainment,0.88,0.6,0,0.1,1.58 +Need for Speed: Most Wanted,X360,2012,Racing,Electronic Arts,0.62,0.8,0.01,0.15,1.58 +Guitar Hero 5,Wii,2009,Misc,Activision,0.94,0.49,0,0.15,1.58 +High School Musical 3: Senior Year,DS,2008,Misc,Disney Interactive Studios,0.64,0.76,0,0.17,1.58 +Kingdom Hearts 3D: Dream Drop Distance,3DS,2012,Action,Square Enix,0.88,0.26,0.34,0.09,1.58 +Hannah Montana: Music Jam,DS,2007,Action,Disney Interactive Studios,1.06,0.37,0,0.15,1.58 +Pokemon Mystery Dungeon: Explorers of Sky,DS,2009,Role-Playing,Nintendo,0.58,0,0.44,0.12,1.58 +Spyro 2: Season of Flame,GBA,2002,Platform,Vivendi Games,0.85,0,0,0.08,1.58 +Pro Evolution Soccer 2010,PS2,2009,Sports,Konami Digital Entertainment,0.1,0.18,0.12,1.16,1.57 +NCAA Football 2002,PS2,2001,Sports,Electronic Arts,0.77,0.6,0,0.2,1.57 +Conflict: Desert Storm,PS2,2002,Shooter,Gotham Games,0.98,0.53,0,0.06,1.57 +Mario Party 7,GC,2005,Misc,Nintendo,0.95,0.11,0.46,0.04,1.57 +Pro Evolution Soccer 2013,PS3,2012,Sports,Konami Digital Entertainment,0.18,0.64,0.49,0.25,1.56 +Smuggler's Run,PS2,2000,Racing,Take-Two Interactive,0.77,0.6,0,0.2,1.56 +Fight Night Round 3,PS2,2006,Fighting,Electronic Arts,1.07,0.4,0,0.1,1.56 +Donkey Kong Classics,NES,1988,Platform,Nintendo,0.59,0.14,0.81,0.02,1.56 +Twisted Metal,PS,1995,Action,Sony Computer Entertainment,1.32,0,0,0.05,1.56 +Dark Souls III,PS4,2016,Role-Playing,Namco Bandai Games,0.58,0.44,0.33,0.21,1.56 +Final Fight,SNES,1990,Action,Capcom,0.67,0.17,0.69,0.03,1.56 +Dragon Quest Monsters 2,GB,2001,Role-Playing,Enix Corporation,0,0,1.56,0,1.56 +Pokemon Pinball: Ruby & Sapphire,GBA,2003,Misc,Nintendo,0.68,0.38,0.44,0.05,1.56 +LEGO Marvel Super Heroes,PS4,2013,Action,Warner Bros. Interactive Entertainment,0.59,0.75,0.01,0.21,1.56 +Mafia II,X360,2010,Action,Take-Two Interactive,0.84,0,0,0.15,1.55 +Dishonored,PS3,2012,Action,Bethesda Softworks,0.72,0.54,0.04,0.25,1.55 +Stuntman,PS2,2002,Racing,Atari,0.76,0.59,0,0.2,1.55 +Tom Clancy's Rainbow Six 3,XB,2003,Shooter,Ubisoft,0.91,0,0,0.07,1.55 +Active Life: Outdoor Challenge,Wii,2008,Sports,Atari,0.79,0,0.19,0.14,1.55 +BioShock 2,PS3,2010,Shooter,Take-Two Interactive,0.85,0.47,0.02,0.22,1.55 +007: The World is not Enough,N64,2000,Action,Electronic Arts,1.13,0.38,0.02,0.03,1.55 +Spider-Man 2: Enter: Electro,PS,2001,Action,Activision,0.57,0.87,0.02,0.09,1.55 +Watch Dogs,XOne,2014,Action,Ubisoft,0.9,0,0,0.13,1.55 +Star Wars: The Force Unleashed II,PS3,2010,Action,LucasArts,0.8,0.53,0,0.22,1.55 +Ni no Kuni: Wrath of the White Witch,PS3,2011,Role-Playing,Namco Bandai Games,0.6,0.51,0.21,0.23,1.55 +Command & Conquer: Tiberian Sun,PC,1999,Strategy,Westwood Studios,1.55,0,0,0,1.55 +LEGO Battles: Ninjago,DS,2011,Strategy,Warner Bros. Interactive Entertainment,1.07,0.36,0,0.12,1.55 +Mario Party 10,WiiU,2015,Misc,Nintendo,0.69,0,0.24,0.11,1.55 +Dead Rising 3,XOne,2013,Action,Microsoft Game Studios,1.06,0,0.01,0.12,1.54 +Resident Evil: The Umbrella Chronicles,Wii,2007,Action,Capcom,0.68,0,0.29,0.14,1.54 +Fire Emblem Fates,3DS,2015,Role-Playing,Nintendo,0.71,0.22,0.52,0.1,1.54 +Dark Cloud,PS2,2000,Role-Playing,Sony Computer Entertainment,0.83,0.44,0.08,0.19,1.54 +Warcraft III: The Frozen Throne,PC,2003,Strategy,Activision,0.58,0,0,0.09,1.54 +Tom Clancy's Ghost Recon Advanced Warfighter,X360,2006,Shooter,Ubisoft,1.4,0.02,0.02,0.1,1.54 +Disney Fairies: Tinker Bell,DS,2008,Adventure,Disney Interactive Studios,0.86,0.52,0.01,0.15,1.54 +MVP Baseball 2005,PS2,2005,Sports,Electronic Arts,1.26,0.07,0,0.21,1.54 +Die Hard Trilogy,PS,1996,Shooter,Fox Interactive,0.85,0.58,0,0.1,1.54 +Call of Duty: Black Ops II,PC,2012,Shooter,Activision,0.63,0.69,0,0.21,1.53 +Fight Night Round 4,PS3,2009,Fighting,Electronic Arts,0.92,0.41,0,0.21,1.53 +MySims Kingdom,Wii,2008,Simulation,Electronic Arts,0.71,0.65,0.01,0.17,1.53 +The Simpsons Game,DS,2007,Action,Electronic Arts,0.57,0.79,0,0.17,1.53 +Mortal Kombat 3,SNES,1994,Fighting,Acclaim Entertainment,1.19,0.29,0,0.05,1.53 +NFL GameDay 99,PS,1998,Sports,989 Studios,1.44,0.05,0,0.04,1.53 +Call of Duty: Modern Warfare: Reflex Edition,Wii,2009,Shooter,Activision,0.95,0.43,0,0.14,1.53 +FIFA 17,XOne,2016,Sports,Electronic Arts,0.17,1.26,0,0.1,1.53 +Mario Golf: Toadstool Tour,GC,2003,Sports,Nintendo,1.09,0.15,0.25,0.04,1.53 +Tiger Woods 99 PGA Tour Golf,PS,1997,Sports,Electronic Arts,0.85,0.58,0,0.1,1.53 +Donkey Kong Country: Tropical Freeze,WiiU,2014,Platform,Nintendo,0.73,0.52,0.15,0.12,1.52 +Dead Space 2,X360,2011,Shooter,Electronic Arts,0.94,0.45,0,0.13,1.52 +Sonic Rivals 2,PSP,2007,Racing,Sega,0.44,0.69,0,0.39,1.52 +Knockout Kings,PS,1997,Fighting,Electronic Arts,1.07,0.39,0,0.06,1.52 +The Simpsons Skateboarding,PS2,2002,Sports,Electronic Arts,0.36,0.9,0,0.27,1.52 +NASCAR 98,PS,1996,Racing,Electronic Arts,1.43,0.05,0,0.04,1.52 +F1 Race,NES,1984,Racing,Nintendo,0,0,1.52,0,1.52 +Xevious,NES,1984,Shooter,Namco Bandai Games,0.18,0.06,1.27,0.01,1.52 +NASCAR 99,PS,1998,Racing,Electronic Arts,1.45,0.04,0,0.04,1.52 +NBA Live 2000,PS,1998,Sports,Electronic Arts,1.43,0.05,0,0.03,1.52 +Mafia II,PS3,2010,Action,Take-Two Interactive,0.5,0.72,0.04,0.26,1.52 +Call of Duty 3,PS3,2006,Shooter,Activision,0.6,0.63,0.03,0.26,1.52 +Super Monkey Ball 2,GC,2002,Puzzle,Atari,1.11,0.31,0.06,0.04,1.52 +Pac-Man World 2,PS2,2002,Action,Namco Bandai Games,1.26,0.05,0,0.21,1.51 +Madden NFL 15,XOne,2014,Sports,Electronic Arts,1.3,0.09,0,0.12,1.51 +Sonic & Sega All-Stars Racing,Wii,2010,Racing,Sega,0.65,0.71,0,0.15,1.51 +LEGO Star Wars III: The Clone Wars,X360,2011,Action,LucasArts,0.84,0.54,0,0.13,1.51 +Football Manager 2012,PC,2011,Sports,Sega,0.02,1.16,0,0.34,1.51 +Puzzle & Dragons,3DS,2013,Role-Playing,GungHo,0,0,1.51,0,1.51 +Mega Man 2,NES,1988,Action,Capcom,0.93,0.15,0.42,0.01,1.51 +Simpsons Wrestling,PS,2001,Fighting,Electronic Arts,0.23,1.16,0,0.11,1.51 +NBA Live 98,PS,1997,Sports,Electronic Arts,1.41,0.06,0,0.04,1.51 +The Simpsons Game,PS2,2007,Action,Electronic Arts,0.35,0.03,0,1.13,1.51 +Monopoly,PS,1997,Misc,Hasbro Interactive,1.18,0.27,0,0.05,1.51 +SoulCalibur II,GC,2003,Fighting,Namco Bandai Games,0.99,0.32,0.11,0.08,1.5 +Resistance 3,PS3,2011,Shooter,Sony Computer Entertainment,0.64,0.58,0.05,0.23,1.5 +Tokyo Xtreme Racer Zero,PS2,2000,Racing,Crave Entertainment,0.66,0.52,0.15,0.17,1.5 +Final Fantasy XIV: A Realm Reborn,PC,2010,Role-Playing,Square Enix,0.86,0.48,0,0.17,1.5 +NFL Blitz,PS,1998,Sports,Midway Games,1.41,0.05,0,0.04,1.5 +Red Faction II,PS2,2002,Shooter,THQ,0.49,0.78,0,0.23,1.5 +Super Scribblenauts,DS,2010,Puzzle,Warner Bros. Interactive Entertainment,0,0.31,0,0.11,1.5 +Madden NFL 2001,PS2,2000,Sports,Electronic Arts,0,0.07,0.05,0.2,1.5 +WWF No Mercy,N64,2000,Fighting,THQ,0,0.27,0.02,0.02,1.5 +Ice Climber,NES,1985,Platform,Nintendo,0,0.1,0.92,0.02,1.5 +Sonic CD,SCD,1993,Platform,Sega,0,0.36,0.09,0.05,1.5 +Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki,NES,1986,Platform,Hudson Soft,0,0,1.5,0,1.5 +Dead Rising 2,X360,2010,Action,Capcom,0,0.53,0.09,0.12,1.5 +Rock Band 2,PS3,2008,Misc,MTV Games,0,0.2,0,0.16,1.5 +Pac-Man World,PS,1998,Action,Namco Bandai Games,1.21,0.14,0.1,0.04,1.5 +Disney Sing It: Pop Hits,Wii,2009,Misc,Disney Interactive Studios,1.08,0.28,0,0.13,1.49 +Final Fantasy: Crystal Chronicles,GC,2003,Role-Playing,Nintendo,0.72,0.38,0.36,0.04,1.49 +Medal of Honor: Frontline,XB,2002,Shooter,Electronic Arts,1,0.43,0,0.06,1.49 +Madden NFL 09,PS2,2008,Sports,Electronic Arts,1.22,0,0,0.27,1.49 +Drawn To Life: SpongeBob SquarePants Edition,DS,2008,Adventure,THQ,1,0.36,0,0.13,1.49 +Banjo-Tooie,N64,2000,Platform,Nintendo,0.82,0.36,0.25,0.06,1.49 +Buzz! The BIG Quiz,PS2,2006,Misc,Sony Computer Entertainment,0,1.1,0,0.39,1.49 +007: Quantum of Solace,X360,2008,Action,Activision,0.82,0.52,0.01,0.14,1.49 +The Sims 3,Wii,2010,Simulation,Electronic Arts,0.61,0.73,0,0.15,1.49 +New Play Control! Mario Power Tennis,Wii,2009,Sports,Nintendo,0.37,0.69,0.28,0.14,1.48 +Bratz: Forever Diamondz,DS,2006,Adventure,THQ,0.43,0.88,0,0.18,1.48 +Dirge of Cerberus: Final Fantasy VII,PS2,2006,Shooter,Square Enix,0.47,0.37,0.52,0.12,1.48 +Nintendo World Cup,NES,1990,Sports,Nintendo,0.28,0.5,0.65,0.05,1.48 +WWF WrestleMania 2000,N64,1999,Fighting,THQ,1.2,0.25,0.02,0.02,1.48 +Wario Land II,GB,1997,Platform,Nintendo,0.7,0.35,0.39,0.04,1.48 +Mass Effect 2,PS3,2011,Role-Playing,Electronic Arts,0.78,0.47,0.03,0.2,1.48 +Major League Baseball 2K5,PS2,2005,Sports,Take-Two Interactive,0.72,0.56,0,0.19,1.48 +Fight Night 2004,PS2,2004,Fighting,Electronic Arts,1.08,0.2,0,0.2,1.48 +Tom Clancy's Splinter Cell: Pandora Tomorrow,XB,2004,Action,Ubisoft,0.82,0.59,0,0.07,1.48 +Imagine: Master Chef,DS,2007,Simulation,Ubisoft,0.39,0.92,0,0.17,1.47 +Assassin's Creed III: Liberation,PSV,2012,Action,Ubisoft,0.58,0.55,0.06,0.28,1.47 +SoulCalibur IV,PS3,2008,Fighting,Ubisoft,0.72,0.41,0.14,0.2,1.47 +Mario Golf,N64,1999,Action,Nintendo,0.62,0.18,0.65,0.02,1.47 +Disney Princess,GBA,2003,Platform,THQ,1.04,0.37,0,0.06,1.47 +Fight Night Round 3,X360,2006,Fighting,Electronic Arts,1.33,0.03,0.01,0.1,1.47 +Metal Gear Rising: Revengeance,PS3,2013,Action,Konami Digital Entertainment,0.45,0.4,0.44,0.18,1.47 +Chrono Trigger,DS,2008,Role-Playing,Square Enix,0.69,0.2,0.49,0.09,1.47 +Star Wars: The Force Unleashed II,X360,2010,Action,LucasArts,0.95,0.4,0,0.12,1.47 +The House of the Dead 2 & 3 Return,Wii,2008,Shooter,Sega,0.78,0.5,0.03,0.15,1.47 +Disney Princess: Magical Jewels,DS,2007,Adventure,Disney Interactive Studios,1.15,0.2,0,0.12,1.47 +LittleBigPlanet PS Vita,PSV,2012,Platform,Sony Computer Entertainment,0.4,0.72,0.02,0.33,1.47 +Xenogears,PS,1998,Role-Playing,SquareSoft,0.29,0.19,0.89,0.1,1.46 +The SpongeBob SquarePants Movie,GBA,2004,Platform,THQ,1.02,0.38,0,0.06,1.46 +Tom Clancy's Ghost Recon: Future Soldier,X360,2012,Shooter,Ubisoft,0.93,0,0.02,0.12,1.46 +Battlefield: Bad Company,X360,2008,Shooter,Electronic Arts,0.81,0.46,0.04,0.15,1.46 +Midway Arcade Treasures,PS2,2003,Misc,Midway Games,0.72,0.56,0,0.19,1.46 +Wall-E,DS,2008,Platform,THQ,0.46,0.83,0,0.17,1.46 +Triple Play 99,PS,,Sports,,0.81,0.55,0,0.1,1.46 +Homefront,X360,2011,Shooter,THQ,0.83,0.48,0.02,0.12,1.46 +Super Monkey Ball,GC,2001,Puzzle,Atari,0.95,0.37,0.1,0.04,1.46 +Donkey Kong,2600,1981,Platform,Coleco,1.36,0.08,0,0.02,1.46 +Mortal Kombat 4,PS,1998,Fighting,GT Interactive,0.81,0.55,0,0.1,1.46 +Mario Superstar Baseball,GC,2005,Sports,Nintendo,0.93,0.24,0.25,0.04,1.46 +Mass Effect 3,PS3,2012,Role-Playing,Electronic Arts,0.63,0.59,0.03,0.21,1.46 +LEGO Batman 2: DC Super Heroes,Wii,2012,Action,Warner Bros. Interactive Entertainment,0.94,0.4,0,0.11,1.46 +Medal of Honor: Warfighter,PS3,2012,Action,Electronic Arts,0.47,0.65,0.06,0.28,1.46 +WCW vs the World,PS,1998,Fighting,THQ,1.17,0,0.04,0.05,1.46 +SNK vs. Capcom: The Match of the Millennium,PSP,2006,Fighting,Sega,0.53,0.58,0,0.35,1.46 +LEGO City Undercover,3DS,2013,Platform,Nintendo,0.51,0.75,0.07,0.12,1.46 +Onimusha 3: Demon Siege,PS2,2004,Action,Capcom,0.37,0.47,0.54,0.07,1.45 +Diablo III,X360,2013,Role-Playing,Activision,0.89,0.44,0,0.12,1.45 +Batman: Arkham Knight,XOne,2015,Action,Warner Bros. Interactive Entertainment,0.86,0.46,0,0.13,1.45 +BioShock,PS3,2008,Shooter,Take-Two Interactive,0.75,0.49,0.01,0.21,1.45 +Red Dead Revolver,PS2,2004,Shooter,Take-Two Interactive,0.71,0.55,0,0.19,1.45 +Anno 2070,PC,2011,Strategy,Ubisoft,0,1.13,0,0.32,1.45 +Resident Evil: Outbreak,PS2,2003,Action,Capcom,0.54,0.35,0.46,0.1,1.45 +Smarty Pants,Wii,2007,Misc,Electronic Arts,0.53,0.76,0,0.16,1.45 +Tamagotchi,GB,1996,Simulation,Namco Bandai Games,0,0,1.44,0.01,1.45 +4 Nin uchi Mahjong,NES,1984,Misc,Nintendo,0,0,1.45,0,1.45 +Dragon Ball Z,SNES,1993,Fighting,Namco Bandai Games,0,0,1.45,0,1.45 +Game de Hakken!! Tamagotchi 2,GB,1997,Simulation,Namco Bandai Games,0,0,1.44,0.01,1.45 +Namco Museum 64,N64,1999,Misc,Namco Bandai Games,1.24,0.17,0.03,0.01,1.45 +Hasbro Family Game Night,Wii,2008,Puzzle,Electronic Arts,0.97,0.34,0,0.13,1.45 +Dragon Quest Monsters: Joker 2,DS,2010,Role-Playing,Square Enix,0.11,0.08,1.24,0.02,1.45 +Tony Hawk's American Wasteland (Weekly american sales),PS2,2005,Sports,Activision,1.38,0.05,0,0.02,1.45 +My Word Coach,DS,2007,Misc,Ubisoft,0.37,0.9,0,0.18,1.45 +Hello Kitty Party,DS,2007,Misc,Rising Star Games,0.79,0.53,0,0.13,1.44 +SingStar Pop,PS2,2007,Misc,Sony Computer Entertainment,0.04,1.08,0,0.32,1.44 +Sonic Rivals,PSP,2006,Racing,Sega,0.73,0,0,0.28,1.44 +SimCity (2013),PC,2013,Simulation,Electronic Arts,0.48,0,0,0.19,1.44 +Kirby Super Star,SNES,1996,Platform,Nintendo,0.26,0.07,1.09,0.02,1.44 +Far Cry 4,PS3,2014,Shooter,Ubisoft,0.33,0.79,0.08,0.23,1.44 +WWE SmackDown vs Raw 2008,X360,2007,Fighting,THQ,0.92,0.38,0,0.13,1.44 +Kinect Joy Ride,X360,2010,Racing,Microsoft Game Studios,0.92,0.4,0,0.12,1.44 +Rayman Raving Rabbids,Wii,2006,Misc,Ubisoft,1.23,0.07,0.02,0.11,1.44 +Need for Speed Rivals,PS3,2013,Racing,Electronic Arts,0.33,0.74,0.05,0.31,1.44 +Tiger Woods PGA Tour 2005,PS2,2004,Sports,Electronic Arts,1.03,0.32,0,0.09,1.44 +Dead Space 2,PS3,2011,Shooter,Electronic Arts,0.73,0.5,0,0.21,1.44 +NCAA Football 2003,PS2,2002,Sports,Electronic Arts,1.16,0.08,0,0.19,1.44 +Frogger 2: Swampy's Revenge,PS,1999,Action,Hasbro Interactive,0.8,0.54,0,0.09,1.43 +Disney Infinity,X360,2013,Action,Disney Interactive Studios,0.96,0.37,0,0.11,1.43 +LEGO Indiana Jones 2: The Adventure Continues,Wii,2009,Action,Activision,0.91,0.39,0,0.13,1.43 +Sonic's Ultimate Genesis Collection,X360,2009,Misc,Sega,0.85,0.46,0,0.13,1.43 +Tiger Woods PGA Tour 09 All-Play,Wii,2008,Sports,Electronic Arts,0.81,0.48,0,0.14,1.43 +Disney's DuckTales,GB,1988,Platform,Capcom,0.82,0.23,0.35,0.03,1.43 +Classic NES Series: Super Mario Bros.,GBA,2004,Platform,Nintendo,0,0,1.39,0.03,1.43 +Triple Play 2000,PS,1999,Sports,Electronic Arts,0.79,0.54,0,0.09,1.43 +Dragon Quest VII: Warriors of Eden,3DS,2013,Role-Playing,Square Enix,0.07,0.04,1.3,0.01,1.42 +Cabela's Big Game Hunter,PS2,2002,Sports,Activision,0.7,0.54,0,0.18,1.42 +UFC Undisputed 2010,PS3,2010,Fighting,THQ,0.8,0.41,0.02,0.19,1.42 +NBA Live 06 (Weekly american sales),PS2,2005,Sports,Electronic Arts,1.35,0.05,0,0.02,1.42 +The Legend of Zelda: The Minish Cap,GBA,2004,Action,Nintendo,0.89,0.22,0.22,0.1,1.42 +NFL Street,PS2,2004,Sports,Electronic Arts,1.15,0.08,0,0.19,1.42 +Sonic Generations,X360,2011,Platform,Sega,0.71,0.57,0,0.14,1.42 +Super Metroid,SNES,1994,Action,Nintendo,0.57,0.12,0.71,0.02,1.42 +Pro Yakyuu Family Stadium '87,NES,1987,Sports,Namco Bandai Games,0.12,0,1.3,0,1.42 +Dead Space,X360,2008,Action,Electronic Arts,0.89,0.4,0,0.13,1.42 +Resident Evil (Remake),GC,2002,Action,Capcom,0.63,0.38,0.35,0.05,1.42 +Inazuma Eleven 2,DS,2009,Role-Playing,Nintendo,0,0.21,1.18,0.03,1.42 +Tomb Raider (2013),PS4,2014,Action,Square Enix,0.47,0.64,0.06,0.25,1.41 +LEGO Star Wars II: The Original Trilogy,PSP,2006,Action,LucasArts,0.58,0.51,0,0.32,1.41 +Toy Story 3: The Video Game,Wii,2010,Action,Disney Interactive Studios,0.64,0.63,0,0.14,1.41 +Fight Night Round 4,X360,2009,Fighting,Electronic Arts,0.95,0.34,0,0.13,1.41 +LEGO Star Wars: The Video Game,GC,2005,Action,Eidos Interactive,1.09,0.28,0,0.04,1.41 +Injustice: Gods Among Us,X360,2013,Fighting,Warner Bros. Interactive Entertainment,0.97,0.34,0,0.11,1.41 +Madden NFL 15,PS3,2014,Sports,Electronic Arts,1.07,0.15,0,0.19,1.41 +Disney's The Lion King,GEN,1994,Platform,Virgin Interactive,0.97,0.37,0.03,0.05,1.41 +Ridge Racer,PSP,2004,Racing,Sony Computer Entertainment,0.36,0.45,0.32,0.28,1.41 +Metroid: Other M,Wii,2010,Action,Nintendo,0.87,0.31,0.13,0.1,1.41 +Knockout Kings 2000,PS,1999,Fighting,Electronic Arts,1.02,0.34,0,0.05,1.41 +Gran Turismo 4 Prologue,PS2,2003,Racing,Sony Computer Entertainment,0,0.47,0.77,0.17,1.41 +Twisted Metal: Black,PS2,2001,Racing,Sony Computer Entertainment,1.19,0.17,0,0.05,1.41 +NASCAR 2005: Chase for the Cup,PS2,2004,Racing,Electronic Arts,0.69,0.54,0,0.18,1.41 +Call of Duty: Black Ops,Wii,2010,Shooter,Activision,0.82,0.47,0,0.12,1.4 +Spider-Man: The Movie,XB,2002,Action,Activision,1.07,0.28,0,0.05,1.4 +Need For Speed: Undercover,PS2,2008,Racing,Electronic Arts,0.38,0.08,0.03,0.93,1.4 +2Xtreme,PS,1996,Sports,Sony Computer Entertainment,1.15,0.2,0,0.05,1.4 +Far Cry 2,PS3,2008,Action,Ubisoft,0.43,0.7,0.01,0.27,1.4 +Sonic Advance 3,GBA,2004,Platform,THQ,0.74,0.52,0.08,0.06,1.4 +Final Fantasy III,NES,1990,Role-Playing,SquareSoft,0,0,1.39,0.01,1.4 +Battlefield 4,PC,2013,Shooter,Electronic Arts,0.38,0.86,0,0.16,1.4 +Colin McRae Rally 3,PS2,2002,Racing,Codemasters,0.03,1.05,0.02,0.3,1.4 +Madden NFL 2002,PS,2001,Sports,Electronic Arts,0.78,0.53,0,0.09,1.39 +Doom (2016),PS4,2016,Shooter,Bethesda Softworks,0.49,0.66,0.02,0.22,1.39 +Final Fantasy XII: Revenant Wings,DS,2007,Role-Playing,Square Enix,0.34,0.42,0.54,0.1,1.39 +Bakugan: Battle Brawlers,DS,2009,Action,Activision,1.27,0.02,0,0.09,1.39 +Deus Ex: Human Revolution,PS3,2011,Shooter,Square Enix,0.5,0.6,0.07,0.23,1.39 +NBA Jam,SNES,1994,Sports,Acclaim Entertainment,1.19,0.16,0,0.03,1.39 +Teenage Mutant Ninja Turtles III: The Manhattan Project,NES,1991,Action,Konami Digital Entertainment,1.05,0.17,0.15,0.02,1.39 +Dynasty Warriors 5,PS2,2005,Action,Tecmo Koei,0.24,0.18,0.91,0.06,1.39 +Hannah Montana: Spotlight World Tour,Wii,2007,Action,Disney Interactive Studios,0.87,0.38,0,0.13,1.39 +WWE '13,PS3,2012,Action,THQ,0.51,0.62,0,0.26,1.39 +Deus Ex: Human Revolution,X360,2011,Shooter,Square Enix,0.76,0.48,0.02,0.12,1.39 +True Crime: Streets of LA,XB,2003,Action,Activision,0.96,0.37,0,0.05,1.38 +The Sims 2,PSP,2005,Simulation,Electronic Arts,0.49,0.56,0,0.33,1.38 +Paper Mario,N64,2000,Role-Playing,Nintendo,0.58,0.18,0.59,0.02,1.38 +Bravely Default: Flying Fairy,3DS,2012,Role-Playing,Nintendo,0.5,0.32,0.49,0.07,1.38 +Titanfall,X360,2014,Shooter,Electronic Arts,0.87,0.38,0.02,0.11,1.38 +Duke Nukem: Time to Kill,PS,1998,Shooter,Take-Two Interactive,0.77,0.54,0,0.07,1.38 +Persona 4: Golden,PSV,2012,Role-Playing,Atlus,0.46,0.34,0.38,0.21,1.38 +Dead Rising 2,PS3,2010,Action,Capcom,0.43,0.57,0.15,0.22,1.38 +Hasbro Family Game Night 2,Wii,2009,Misc,Electronic Arts,0.71,0.53,0,0.13,1.38 +Disney Princess: Enchanted Journey,Wii,2007,Adventure,Disney Interactive Studios,1.24,0.04,0,0.09,1.38 +Gardening Mama,DS,2009,Puzzle,505 Games,0.8,0.43,0.01,0.13,1.38 +Dave Mirra Freestyle BMX 2,PS2,2001,Sports,Acclaim Entertainment,0.67,0.53,0,0.18,1.38 +Need for Speed: The Run,X360,2011,Action,Electronic Arts,0.63,0.58,0,0.15,1.38 +LEGO Indiana Jones: The Original Adventures,PS2,2008,Action,LucasArts,0.6,0.01,0,0.76,1.37 +Assassin's Creed: Rogue,PS3,2014,Action,Ubisoft,0.46,0.62,0.06,0.23,1.37 +Ridge Racer 7,PS3,2006,Racing,Namco Bandai Games,0.24,0.7,0.16,0.26,1.37 +A Collection of Activision Classic Games for the Atari 2600,PS,1998,Misc,Activision,0.76,0.52,0,0.09,1.37 +Forza Horizon 2,XOne,2014,Racing,Microsoft Game Studios,0.5,0.78,0.01,0.09,1.37 +MotorStorm: Pacific Rift,PS3,2008,Racing,Sony Computer Entertainment,0.43,0.67,0.02,0.26,1.37 +Sonic Colors,DS,2010,Platform,Sega,0.74,0.5,0.01,0.13,1.37 +Star Wars Knights of the Old Republic II: The Sith Lords,XB,2004,Role-Playing,Activision,0.99,0.33,0,0.05,1.37 +LEGO Harry Potter: Years 1-4,PS3,2010,Action,Warner Bros. Interactive Entertainment,0.55,0.6,0,0.22,1.37 +Pocket Monsters Stadium,N64,1998,Strategy,Nintendo,0,0,1.37,0,1.37 +NBA 2K15,PS3,2014,Sports,Take-Two Interactive,0.86,0.27,0.02,0.22,1.36 +Tom Clancy's Ghost Recon 2,XB,2004,Shooter,Ubisoft,0.86,0.45,0,0.06,1.36 +Crash Bandicoot 2: N-Tranced,GBA,2003,Platform,Vivendi Games,0.63,0.66,0,0.07,1.36 +Burnout Paradise,X360,2008,Racing,Electronic Arts,0.63,0.58,0.01,0.15,1.36 +SingStar Abba,PS2,2008,Misc,Sony Computer Entertainment,0.23,0.04,0,1.09,1.36 +Gradius,NES,1986,Shooter,Konami Digital Entertainment,0.27,0.08,1,0.01,1.36 +Dragon Quest III: Soshite Densetsu e...,SNES,1996,Role-Playing,Enix Corporation,0,0,1.36,0,1.36 +Centipede,2600,1981,Shooter,Atari,1.26,0.08,0,0.01,1.36 +Yoshi's New Island,3DS,2014,Platform,Nintendo,0.47,0.51,0.28,0.09,1.36 +Ryse: Son of Rome,XOne,2013,Action,Microsoft Game Studios,0.82,0.42,0,0.11,1.36 +Dead to Rights,PS2,2002,Shooter,Electronic Arts,0.67,0.52,0,0.17,1.36 +LEGO Harry Potter: Years 5-7,Wii,,Action,Warner Bros. Interactive Entertainment,0.76,0.47,0,0.13,1.36 +Marvel vs. Capcom 3: Fate of Two Worlds,PS3,2011,Fighting,Capcom,0.81,0.29,0.11,0.14,1.35 +Dance Dance Revolution (Japan),PS,1999,Simulation,Konami Digital Entertainment,0,0,1.26,0.09,1.35 +F1 2010,PS3,2010,Racing,Codemasters,0.25,0.76,0.08,0.27,1.35 +Madden NFL 98,PS,1997,Sports,Electronic Arts,1.29,0.03,0,0.03,1.35 +FIFA Soccer 09,PSP,2008,Sports,Electronic Arts,0.23,0.73,0.02,0.37,1.35 +Namco Museum DS,DS,2007,Misc,Atari,1.18,0.01,0.06,0.09,1.35 +FIFA Soccer 08,PSP,2007,Sports,Electronic Arts,0.2,0.76,0,0.39,1.35 +Grand Theft Auto: Chinatown Wars,DS,2009,Action,Take-Two Interactive,0.59,0.57,0.05,0.14,1.35 +Alan Wake,X360,2010,Action,Microsoft Game Studios,0.66,0.51,0.05,0.13,1.35 +Battlefield: Bad Company,PS3,2008,Shooter,Electronic Arts,0.76,0.36,0.05,0.18,1.35 +Mortal Kombat X,XOne,2015,Fighting,Warner Bros. Interactive Entertainment,1,0.21,0,0.13,1.35 +Samurai Warriors,PS2,2004,Action,Electronic Arts,0.22,0.05,1.06,0.02,1.35 +The Simpsons: Hit & Run,XB,2003,Racing,Vivendi Games,0.7,0.58,0,0.07,1.35 +Devil May Cry 4,X360,2008,Action,Capcom,0.79,0.34,0.08,0.13,1.35 +Tom Clancy's Rainbow Six: Vegas 2,PS3,2008,Shooter,Ubisoft,0.66,0.45,0.04,0.21,1.35 +Monster Hunter Freedom,PSP,2005,Role-Playing,Capcom,0.24,0.04,1.03,0.04,1.35 +Crysis 2,X360,2011,Action,Electronic Arts,0.7,0.5,0.02,0.12,1.35 +SaGa Frontier,PS,1997,Role-Playing,SquareSoft,0.15,0.04,1.07,0.09,1.35 +SingStar Party,PS2,2004,Misc,Sony Computer Entertainment,0,1.04,0,0.31,1.35 +FIFA Soccer 08,X360,2007,Sports,Electronic Arts,0.31,0.89,0.01,0.14,1.35 +The ICO & Shadow of the Colossus Collection,PS3,2011,Adventure,Sony Computer Entertainment,0.67,0.37,0.13,0.17,1.35 +Test Drive,PS2,2002,Racing,Atari,0.95,0.21,0.01,0.18,1.34 +Mario & Luigi: Partners in Time,DS,2005,Role-Playing,Nintendo,0.77,0.07,0.43,0.08,1.34 +Lost Planet: Extreme Condition,X360,2006,Shooter,Capcom,1.09,0.04,0.1,0.11,1.34 +Mortal Kombat 3,GEN,1994,Fighting,Acclaim Entertainment,1.03,0.27,0,0.04,1.34 +Doom 3,XB,2005,Shooter,Activision,0.85,0.43,0,0.06,1.34 +Donkey Kong Jungle Beat,GC,2004,Platform,Nintendo,0.84,0.22,0.24,0.04,1.34 +Need for Speed Carbon,PS2,2006,Racing,Electronic Arts,1.22,0.05,0.05,0.01,1.34 +Max Payne 2: The Fall of Max Payne,PS2,2003,Shooter,Take-Two Interactive,0.65,0.51,0,0.17,1.34 +Command & Conquer: Red Alert 2,PC,2000,Strategy,Electronic Arts,1.32,0.02,0,0,1.34 +MVP Baseball 2004,PS2,2004,Sports,Electronic Arts,1.1,0.06,0,0.18,1.34 +WWE SmackDown vs Raw 2008,PS3,2007,Fighting,THQ,0.62,0.5,0.01,0.21,1.33 +Ratchet & Clank: Up Your Arsenal (Weekly american sales),PS2,2004,Platform,Sony Computer Entertainment,1.27,0.05,0,0.02,1.33 +Your Shape: Fitness Evolved,X360,2010,Sports,Ubisoft,0.79,0.42,0,0.11,1.33 +Rage,PS3,2011,Shooter,Bethesda Softworks,0.47,0.59,0.06,0.21,1.33 +Skylanders SWAP Force,X360,2013,Platform,Activision,0.86,0.36,0,0.11,1.33 +NBA 2K14,PS4,2013,Sports,Take-Two Interactive,0.89,0.31,0.01,0.12,1.33 +Spider-Man: The Movie,GBA,2002,Action,Activision,0.92,0.35,0.01,0.05,1.33 +WWF War Zone,N64,1998,Fighting,Acclaim Entertainment,1.08,0.24,0,0.02,1.33 +Tony Hawk's Pro Skater,GB,2000,Sports,Activision,0.9,0.38,0.01,0.05,1.33 +The Sims: Bustin' Out,GBA,2003,Simulation,Electronic Arts,0.93,0.35,0,0.06,1.33 +Triple Play 2001,PS,2000,Sports,Electronic Arts,0.74,0.5,0,0.09,1.33 +Metroid Prime 2: Echoes,GC,2004,Shooter,Nintendo,0.87,0.35,0.07,0.04,1.33 +UFC Undisputed 2010,X360,2010,Fighting,THQ,0.9,0.31,0,0.11,1.33 +Final Fantasy X / X-2 HD Remaster,PS3,2013,Role-Playing,Square Enix,0.43,0.4,0.32,0.18,1.33 +Corvette,PS2,2004,Racing,TDK Mediactive,0.65,0.51,0,0.17,1.33 +Petz Wild Animals: Dolphinz,DS,2007,Simulation,Ubisoft,0.71,0.48,0,0.13,1.33 +Pokemon Ranger: Guardian Signs,DS,2010,Role-Playing,Nintendo,0.51,0.17,0.58,0.06,1.33 +Middle-Earth: Shadow of Mordor,XOne,2014,Action,Warner Bros. Interactive Entertainment,0.72,0.5,0.01,0.1,1.32 +Need for Speed Underground Rivals,PSP,2005,Racing,Electronic Arts,0.69,0.38,0.02,0.24,1.32 +LEGO Batman: The Videogame,PS3,2008,Action,Warner Bros. Interactive Entertainment,0.72,0.42,0,0.19,1.32 +Dark Souls II,PS3,2014,Role-Playing,Namco Bandai Games,0.4,0.36,0.4,0.17,1.32 +World of Warcraft: Wrath of the Lich King,PC,2008,Role-Playing,Activision,0.01,0.13,0,1.18,1.32 +Kingdom Hearts II,PS3,2014,Role-Playing,Square Enix,0.52,0.43,0.18,0.19,1.32 +The LEGO Movie Videogame,X360,2014,Action,Warner Bros. Interactive Entertainment,0.69,0.52,0,0.11,1.32 +TOCA 2: Touring Cars,PS,1998,Racing,Codemasters,0.03,1.16,0.02,0.11,1.32 +Gyromite,NES,1985,Puzzle,Nintendo,0.73,0.16,0.4,0.03,1.32 +NFL 2K3,PS2,2002,Sports,Atari,1.06,0.08,0,0.18,1.32 +Fighting Force,PS,1997,Fighting,Eidos Interactive,0.73,0.5,0,0.09,1.32 +Mega Man Battle Network 4: Red Sun / Blue Moon,GBA,2003,Role-Playing,Capcom,0.31,0.04,0.96,0.01,1.32 +MAG: Massive Action Game,PS3,2010,Shooter,Sony Computer Entertainment,0.77,0.3,0.09,0.16,1.32 +Madden NFL 97,PS,1996,Sports,Electronic Arts,0.73,0.5,0,0.09,1.32 +Cars 2,DS,2011,Racing,Disney Interactive Studios,0.72,0.44,0.04,0.12,1.32 +Skylanders Giants,X360,2012,Action,Activision,0.75,0.45,0,0.11,1.32 +LEGO Batman: The Videogame,PSP,,Action,Warner Bros. Interactive Entertainment,0.57,0.46,0,0.28,1.32 +TNN Motor Sports Hardcore 4x4,PS,1996,Racing,ASC Games,0.73,0.5,0,0.09,1.31 +IHRA Drag Racing 2,PS2,2002,Racing,Bethesda Softworks,0.64,0.5,0,0.17,1.31 +The Beatles: Rock Band,X360,2009,Misc,MTV Games,0.97,0.23,0,0.11,1.31 +Tekken 6,X360,2009,Fighting,Namco Bandai Games,0.71,0.42,0.05,0.13,1.31 +[Prototype],X360,2009,Action,Activision,0.84,0.35,0,0.12,1.31 +Deal or No Deal,Wii,2009,Misc,Zoo Games,1.22,0,0,0.09,1.31 +Madagascar,PS2,2005,Platform,Activision,0.78,0.45,0,0.07,1.31 +Rugrats Studio Tour,PS,1999,Adventure,THQ,0.57,0.67,0,0.07,1.31 +LEGO Battles,DS,2009,Strategy,Warner Bros. Interactive Entertainment,0.81,0.38,0,0.12,1.31 +Pitfall II: Lost Caverns,2600,1983,Platform,Activision,1.22,0.07,0,0.02,1.31 +Turok: Evolution,PS2,2002,Shooter,Acclaim Entertainment,0.64,0.5,0,0.17,1.31 +High School Musical 3: Senior Year DANCE!,Wii,2008,Misc,Disney Interactive Studios,0.68,0.49,0,0.13,1.31 +Gold's Gym: Cardio Workout,Wii,2008,Sports,Ubisoft,1.11,0.04,0.06,0.09,1.31 +Burnout 3: Takedown,XB,2004,Racing,Electronic Arts,0.84,0.43,0,0.04,1.31 +Adventure,2600,,Adventure,Atari,1.21,0.08,0,0.01,1.3 +Yu-Gi-Oh! The Sacred Cards,GBA,2002,Role-Playing,Konami Digital Entertainment,0.94,0.35,0,0.02,1.3 +Crysis 2,PS3,2011,Action,Electronic Arts,0.45,0.57,0.06,0.21,1.3 +NBA Live 07,PS2,2006,Sports,Electronic Arts,1.07,0.04,0.02,0.17,1.3 +Saints Row IV,PS3,2013,Action,Deep Silver,0.56,0.44,0.09,0.21,1.3 +SingStar '80s,PS2,2005,Misc,Sony Computer Entertainment,0.27,0.02,0,1.02,1.3 +EA Playground,Wii,2007,Sports,Electronic Arts,0.69,0.48,0,0.13,1.3 +Test Drive 5,PS,1997,Racing,Accolade,1.05,0.2,0,0.05,1.3 +Romancing SaGa 3,SNES,1995,Role-Playing,SquareSoft,0,0,1.29,0.01,1.3 +EA Sports Active 2,Wii,2010,Sports,Electronic Arts,0.78,0.4,0,0.11,1.3 +Digimon World,PS,1999,Role-Playing,Namco Bandai Games,0.56,0.38,0.28,0.08,1.3 +Rise of the Tomb Raider,XOne,2015,Adventure,Square Enix,0.53,0.64,0.02,0.1,1.3 +Need for Speed Carbon,Wii,2006,Racing,Electronic Arts,0.46,0.66,0.02,0.15,1.29 +Yoshi's Woolly World,WiiU,2015,Platform,Nintendo,0.61,0.47,0.11,0.1,1.29 +Mega Man Battle Network 3 Blue / White Version,GBA,2002,Role-Playing,Capcom,0.39,0.02,0.85,0.03,1.29 +FIFA Street,PS3,2012,Sports,Electronic Arts,0.11,0.92,0,0.25,1.29 +Resident Evil Zero,GC,2002,Action,Capcom,0.54,0.27,0.45,0.04,1.29 +Need for Speed: Most Wanted,X360,2005,Racing,Electronic Arts,1,0.17,0.02,0.1,1.29 +Tom Clancy's Rainbow Six: Siege,XOne,2015,Shooter,Ubisoft,0.73,0.44,0,0.12,1.29 +Pirates of the Caribbean: The Curse of the Black Pearl,GBA,2003,Platform,TDK Mediactive,0.93,0.34,0,0.02,1.29 +Transformers,PS2,2004,Shooter,Atari,0.63,0.49,0,0.16,1.29 +Guitar Hero: Aerosmith,Wii,2008,Misc,Activision,1.04,0.14,0,0.1,1.29 +Mystery Case Files: MillionHeir,DS,2008,Adventure,Nintendo,0.76,0.4,0,0.12,1.29 +Valkyria Chronicles,PS3,2008,Role-Playing,Sega,0.71,0.2,0.24,0.13,1.29 +Midnight Club 3: DUB Edition (America weekly sales),PS2,2005,Racing,Take-Two Interactive,1.22,0.05,0,0.01,1.29 +Champions of Norrath,PS2,2004,Role-Playing,Sony Online Entertainment,0.63,0.49,0,0.16,1.28 +Watch Dogs,X360,2014,Action,Ubisoft,0.72,0.45,0.01,0.11,1.28 +Imagine: Wedding Designer,DS,2008,Simulation,Ubisoft,0.55,0.59,0,0.14,1.28 +Metal Gear Solid V: Ground Zeroes,PS4,2014,Action,Konami Digital Entertainment,0.45,0.46,0.17,0.2,1.28 +Yakuman,GB,1989,Misc,Nintendo,0,0,1.28,0,1.28 +Assassin's Creed Syndicate,XOne,2015,Action,Ubisoft,0.61,0.56,0,0.11,1.28 +Army Men 3D,PS,1999,Action,3DO,1.1,0.14,0,0.04,1.28 +WWE '13,X360,2012,Action,THQ,0.72,0.45,0,0.11,1.28 +Twisted Metal 4,PS,1999,Racing,989 Studios,1.07,0.16,0,0.04,1.28 +Manhunt,PS2,2003,Action,Take-Two Interactive,0.63,0.49,0,0.16,1.28 +Kid Icarus: Uprising,3DS,2012,Action,Nintendo,0.48,0.35,0.36,0.07,1.28 +Silent Hill 2,PS2,2001,Action,Konami Digital Entertainment,0.62,0.49,0,0.16,1.28 +Tomb Raider: Underworld,PS3,2008,Action,Eidos Interactive,0.45,0.56,0.05,0.22,1.27 +Castlevania: Symphony of the Night,PS,1997,Platform,Konami Digital Entertainment,0.58,0.4,0.21,0.08,1.27 +The Sims 2: Nightlife,PC,2005,Simulation,Electronic Arts,1.22,0.05,0,0,1.27 +LEGO Batman: The Videogame,PS2,2008,Action,Warner Bros. Interactive Entertainment,0.72,0.03,0,0.52,1.27 +Road Rash,PS,1995,Racing,Electronic Arts,0.71,0.48,0,0.08,1.27 +Pokemon Mystery Dungeon: Gates to Infinity,3DS,2012,Role-Playing,Nintendo,0.44,0.3,0.47,0.06,1.27 +Atlantis,2600,1981,Shooter,Imagic,1.18,0.08,0,0.01,1.27 +NBA 2K9,X360,2008,Sports,Take-Two Interactive,1,0.16,0,0.11,1.27 +WWE '12,X360,2011,Fighting,THQ,0.74,0.4,0,0.12,1.27 +Tony Hawk's Underground,XB,2003,Sports,Activision,0.85,0.37,0,0.05,1.27 +Hogan's Alley,NES,1984,Shooter,Nintendo,0.68,0.16,0.41,0.02,1.27 +The Elder Scrolls Online,XOne,2015,Role-Playing,Bethesda Softworks,0.77,0.38,0,0.12,1.27 +Jillian Michaels' Fitness Ultimatum 2009,Wii,2008,Sports,Deep Silver,0.96,0.2,0,0.11,1.27 +.hack//Infection Part 1,PS2,2002,Role-Playing,Atari,0.49,0.38,0.26,0.13,1.27 +Rockstar Games presents Table Tennis,Wii,2007,Sports,Take-Two Interactive,0.39,0.73,0,0.15,1.27 +Sonic Adventure DX: Director's Cut,GC,2003,Platform,Sega,0.87,0.3,0.06,0.03,1.27 +Jet Li: Rise to Honor,PS2,2004,Action,Sony Computer Entertainment,0.62,0.48,0,0.16,1.27 +Battle Arena Toshinden,PS,1994,Fighting,Sony Computer Entertainment,0.39,0.26,0.53,0.08,1.27 +Yokai Watch 3,3DS,2016,Action,Level 5,0,0,1.27,0,1.27 +Kung Fu Panda,DS,2008,Action,Activision,0.56,0.57,0,0.14,1.26 +Tamagotchi Connection: Corner Shop,DS,2005,Simulation,Atari,0.1,0.02,1.12,0.01,1.26 +Football Manager 2011,PC,2010,Sports,Sega,0,1.01,0,0.25,1.26 +Devil Dice,PS,1998,Puzzle,THQ,0.05,0.03,1.1,0.08,1.26 +Final Fantasy IV,DS,2007,Simulation,Square Enix,0.54,0.05,0.62,0.05,1.26 +Hyrule Warriors,WiiU,2014,Action,Nintendo,0.61,0.42,0.13,0.1,1.26 +Need for Speed Carbon,PS3,2006,Racing,Electronic Arts,0.49,0.52,0.03,0.21,1.26 +Championship Manager 03/04,PC,2003,Sports,Eidos Interactive,0,1.15,0,0.11,1.26 +Brian Lara Cricket,PS,1998,Sports,Codemasters,0.02,1.13,0.01,0.1,1.26 +Ratatouille,DS,2007,Action,THQ,0.5,0.62,0,0.14,1.26 +Wheel of Fortune,PS,1998,Misc,Hasbro Interactive,0.99,0.22,0,0.04,1.26 +LEGO The Lord of the Rings,X360,2012,Action,Warner Bros. Interactive Entertainment,0.63,0.51,0,0.11,1.26 +Winter Sports: The Ultimate Challenge,Wii,2007,Sports,RTL,0.45,0.68,0,0.12,1.26 +SOCOM: U.S. Navy SEALs Confrontation,PS3,2008,Shooter,Sony Computer Entertainment,0.94,0.17,0.02,0.13,1.25 +NBA Live 2001,PS,2000,Sports,Electronic Arts,0.7,0.47,0,0.08,1.25 +Star Wars: The Force Unleashed,PS2,2008,Action,LucasArts,0.49,0,0.01,0.75,1.25 +Combat,2600,,Action,Atari,1.17,0.07,0,0.01,1.25 +Tom Clancy's Rainbow Six: Vegas,PS3,2007,Shooter,Ubisoft,0.47,0.53,0.03,0.22,1.25 +Dragon Ball: Daimaou Fukkatsu,NES,1988,Role-Playing,Namco Bandai Games,0,0,1.25,0,1.25 +Gegege no Kitarou 2: Youkai Gundan no Chousen,NES,1987,Role-Playing,Namco Bandai Games,0,0,1.25,0,1.25 +Reel Fishing,PS,1996,Sports,Natsume,0.99,0.13,0.1,0.04,1.25 +Injustice: Gods Among Us,PS3,2013,Fighting,Warner Bros. Interactive Entertainment,0.48,0.53,0.01,0.23,1.25 +Pokemon XD: Gale of Darkness,GC,2005,Role-Playing,Nintendo,0.71,0.19,0.31,0.03,1.25 +Black,PS2,2006,Shooter,Electronic Arts,1.01,0.04,0.03,0.16,1.25 +RollerCoaster Tycoon 2,PC,2002,Strategy,Atari,1.19,0.05,0,0,1.25 +Lara Croft Tomb Raider: The Angel of Darkness,PS2,2003,Action,Eidos Interactive,0.61,0.48,0,0.16,1.25 +Tom Clancy's Splinter Cell: Pandora Tomorrow,PS2,2004,Action,Ubisoft,0.52,0.56,0,0.17,1.25 +Road Rash 3D,PS,1998,Racing,Electronic Arts,1.05,0.16,0,0.04,1.25 +Ratchet: Deadlocked,PS2,2005,Shooter,Sony Computer Entertainment,0.85,0.03,0.22,0.14,1.24 +Baldur's Gate: Dark Alliance,PS2,2001,Role-Playing,Virgin Interactive,0.61,0.48,0,0.16,1.24 +Transformers: Autobots / Decepticons,DS,2007,Action,Activision,1.12,0.03,0,0.09,1.24 +Tales of Xillia,PS3,2011,Role-Playing,Namco Bandai Games,0.29,0.19,0.67,0.09,1.24 +Diddy Kong Racing DS,DS,2007,Racing,Nintendo,1.1,0.04,0,0.1,1.24 +[Prototype],PS3,2009,Action,Activision,0.65,0.41,0,0.19,1.24 +Assassin's Creed: Bloodlines,PSP,2009,Action,Ubisoft,0.43,0.48,0.05,0.28,1.24 +Oddworld: Abe's Oddysee,PS,1997,Platform,GT Interactive,0.75,0.44,0,0.06,1.24 +The Witcher 3: Wild Hunt,XOne,2015,Role-Playing,Namco Bandai Games,0.66,0.47,0,0.11,1.24 +Ridge Racer V,PS2,2000,Action,Namco Bandai Games,0.24,0.19,0.75,0.06,1.24 +WWE SmackDown vs. Raw 2009,PS2,2008,Fighting,THQ,0.69,0,0,0.55,1.24 +Tetris 2 (All region sales),GB,1992,Puzzle,Nintendo,0.56,0.22,0.43,0.03,1.24 +Star Wars Episode III: Revenge of the Sith,XB,2005,Action,Activision,0.82,0.38,0,0.04,1.24 +Ben 10: Protector of Earth,Wii,2007,Action,D3Publisher,0.55,0.55,0,0.13,1.23 +Frogger: The Great Quest,PS2,2001,Platform,Konami Digital Entertainment,0.6,0.47,0,0.16,1.23 +2010 FIFA World Cup South Africa,PS3,2010,Sports,Electronic Arts,0.3,0.64,0.07,0.22,1.23 +Ninja Gaiden,XB,2004,Action,Microsoft Game Studios,0.92,0.2,0.07,0.04,1.23 +Crash Bandicoot: The Wrath of Cortex,XB,2002,Platform,Universal Interactive,0.59,0.57,0,0.07,1.23 +Driv3r,PS2,2004,Racing,Atari,0.6,0.47,0,0.16,1.23 +Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game,PS,2003,Misc,Sony Computer Entertainment,0.69,0.47,0,0.08,1.23 +Farming Simulator 2015,PC,2014,Simulation,Focus Home Interactive,0.08,1.02,0,0.13,1.23 +Guitar Hero: Aerosmith,X360,2008,Misc,Activision,1,0.14,0,0.1,1.23 +Medal of Honor: Airborne,PS3,2007,Shooter,Electronic Arts,0.25,0.7,0.03,0.25,1.23 +Kirby Tilt 'n' Tumble,GB,2000,Puzzle,Nintendo,0.29,0.17,0.75,0.02,1.23 +SpongeBob SquarePants: Battle for Bikini Bottom,GBA,2003,Platform,THQ,0.88,0.33,0,0.02,1.23 +Vigilante 8,PS,1998,Racing,Activision,0.68,0.47,0,0.08,1.23 +Castlevania,NES,1986,Platform,Konami Digital Entertainment,0.54,0.06,0.62,0.01,1.23 +Donkey Kong Country 2,GBA,2004,Platform,Nintendo,0.79,0.27,0.12,0.04,1.23 +Bayonetta,PS3,2009,Action,Sega,0.44,0.41,0.21,0.17,1.23 +"WarioWare, Inc.: Mega MicroGame$",GBA,2003,Puzzle,Nintendo,0.4,0.11,0.7,0.02,1.23 +Star Wars: Battlefront II,PSP,2005,Shooter,LucasArts,1.05,0.06,0.01,0.11,1.23 +Madden NFL 17,PS4,2016,Sports,Electronic Arts,0.92,0.08,0,0.23,1.23 +Boom Blox,Wii,2008,Puzzle,Electronic Arts,0.72,0.38,0,0.12,1.23 +Fallout 4,PC,2015,Role-Playing,Bethesda Softworks,0.5,0.63,0,0.1,1.23 +The Sims 2: Castaway,Wii,2007,Simulation,Electronic Arts,0.45,0.64,0,0.14,1.23 +LEGO Batman 2: DC Super Heroes,PS3,2012,Action,Warner Bros. Interactive Entertainment,0.5,0.53,0,0.2,1.22 +Naruto Shippuden: Ultimate Ninja Storm 2,PS3,2010,Fighting,Namco Bandai Games,0.42,0.47,0.15,0.18,1.22 +Mario Power Tennis,GC,2004,Sports,Nintendo,0.58,0.16,0.46,0.03,1.22 +Intelligent Qube,PS,1997,Puzzle,Sony Computer Entertainment,0.13,0.07,1,0.02,1.22 +Game & Watch Gallery 2,GB,1997,Misc,Nintendo,0.76,0.3,0.12,0.04,1.22 +Game & Watch Gallery 3,GB,1999,Misc,Nintendo,0.79,0.31,0.08,0.04,1.22 +Pac-Man,NES,1984,Puzzle,Namco Bandai Games,0.27,0.08,0.85,0.02,1.22 +Parfait: Chocolat Second Style,PS2,2006,Adventure,Alchemist,0.59,0.46,0.01,0.15,1.22 +F1 2011,PS3,2011,Racing,Codemasters,0.12,0.75,0.11,0.25,1.22 +Cars,PSP,2006,Racing,THQ,0.72,0.29,0,0.21,1.22 +NBA Live 99,PS,1997,Sports,Electronic Arts,1.13,0.05,0,0.03,1.22 +Chocobo no Fushigi Dungeon,PS,1997,Role-Playing,SquareSoft,0,0,1.14,0.08,1.22 +Golden Sun: The Lost Age,GBA,2002,Role-Playing,Nintendo,0.61,0.27,0.27,0.07,1.22 +SimCity 2000,PS,1996,Simulation,Maxis,0.68,0.46,0,0.08,1.22 +Max Payne,XB,2001,Shooter,Take-Two Interactive,0.98,0.19,0,0.05,1.22 +WCW Mayhem,PS,1998,Fighting,Electronic Arts,0.68,0.46,0,0.08,1.22 +NBA 2K2,PS2,2002,Sports,Sega,0.59,0.46,0.01,0.15,1.22 +NASCAR Thunder 2003,PS2,,Racing,Unknown,0.6,0.46,0,0.16,1.22 +Super Street Fighter IV: 3D Edition,3DS,2011,Fighting,Capcom,0.55,0.44,0.14,0.09,1.22 +Cars,PS2,2006,Racing,THQ,1.01,0.04,0,0.16,1.21 +Fuzion Frenzy,XB,2001,Misc,Microsoft Game Studios,0.93,0.24,0,0.04,1.21 +Call of Duty: Finest Hour,XB,2004,Shooter,Activision,0.78,0.4,0,0.04,1.21 +FIFA Soccer 11,PSP,2010,Sports,Electronic Arts,0.13,0.7,0.01,0.37,1.21 +Sly Cooper and the Thievius Raccoonus,PS2,2002,Platform,Sony Computer Entertainment,1.03,0.14,0,0.04,1.21 +LEGO Indiana Jones 2: The Adventure Continues,DS,2009,Action,Activision,0.66,0.43,0,0.12,1.21 +The Magical Quest starring Mickey Mouse,SNES,1992,Platform,Capcom,0.66,0.17,0.35,0.03,1.21 +Dragon Quest IV: Michibikareshi Monotachi,PS,2001,Role-Playing,Enix Corporation,0,0,1.2,0.01,1.21 +Star Wars Episode 1: Jedi Power Battles,PS,1999,Action,LucasArts,0.66,0.48,0.01,0.06,1.21 +Dino Crisis 2,PS,2000,Action,Virgin Interactive,0.34,0.49,0.28,0.1,1.21 +Need for Speed Underground,GC,2003,Racing,Electronic Arts,0.69,0.48,0.01,0.03,1.21 +Shrek / Shrek 2 2-in-1 Gameboy Advance Video,GBA,2007,Misc,,0.87,0.32,0,0.02,1.21 +Test Drive 4,PS,1997,Racing,Electronic Arts,0.67,0.46,0,0.08,1.21 +FIFA Soccer 07,PSP,2006,Sports,Electronic Arts,0.24,0.65,0,0.32,1.21 +World Soccer Winning Eleven 9 (JP & Others sales),PSP,2005,Sports,Konami Digital Entertainment,0.01,0.88,0.31,0,1.2 +The Lord of the Rings: The Fellowship of the Ring,PS2,2002,Action,Black Label Games,0.59,0.46,0,0.15,1.2 +LEGO Star Wars III: The Clone Wars,PS3,2011,Action,LucasArts,0.52,0.49,0,0.2,1.2 +ATV Offroad Fury 3,PS2,2004,Racing,SouthPeak Games,1,0.04,0,0.16,1.2 +Pikmin 2,GC,2004,Strategy,Nintendo,0.48,0.13,0.56,0.03,1.2 +Just Dance 2016,Wii,2015,Misc,Ubisoft,0.52,0.59,0,0.1,1.2 +Disney Sing It,Wii,2008,Misc,Disney Interactive Studios,0.77,0.31,0,0.12,1.2 +Battlefield: Hardline,XOne,2015,Shooter,Electronic Arts,0.72,0.37,0.01,0.11,1.2 +WWE 2K16,PS4,2015,Sports,Take-Two Interactive,0.41,0.6,0,0.19,1.2 +Dragon Ball Z: La Legende Saien,SNES,1993,Fighting,Namco Bandai Games,0,0,1.2,0,1.2 +TwinBee,NES,1986,Shooter,Konami Digital Entertainment,0,0,1.2,0,1.2 +Ganbare Goemon! Karakuri Douchuu,NES,1986,Platform,Konami Digital Entertainment,0,0,1.2,0,1.2 +NFL 2K,DC,1999,Sports,Sega,1.12,0.05,0,0.02,1.2 +SolarStriker,GB,1989,Shooter,Nintendo,0.4,0.39,0.36,0.04,1.2 +Enter the Matrix,XB,2003,Action,Atari,0.72,0.43,0.01,0.04,1.2 +NHL 2002,PS2,2001,Sports,Electronic Arts,0.59,0.46,0,0.15,1.2 +Mario vs. Donkey Kong 2: March of the Minis,DS,2006,Puzzle,Nintendo,0.74,0.03,0.36,0.07,1.2 +Pok?Park Wii: Pikachu's Adventure,Wii,2009,Adventure,Nintendo,0.55,0.17,0.42,0.06,1.2 +One Piece: Pirate Warriors,PS3,2012,Action,Namco Bandai Games,0.01,0.24,0.86,0.09,1.2 +WWE 2K14,PS3,2013,Sports,Take-Two Interactive,0.49,0.49,0,0.21,1.19 +Metal Gear Solid: Portable Ops,PSP,2006,Action,Konami Digital Entertainment,0.38,0.35,0.38,0.09,1.19 +Nuclear Strike,PS,1997,Simulation,Electronic Arts,0.66,0.45,0,0.08,1.19 +Captain Toad: Treasure Tracker,WiiU,2014,Puzzle,Nintendo,0.56,0.36,0.19,0.09,1.19 +WWE SmackDown vs Raw 2008,PSP,2007,Fighting,THQ,0.45,0.47,0,0.28,1.19 +The Simpsons: Road Rage,GBA,2003,Racing,THQ,0.86,0.32,0,0.02,1.19 +Pro Evolution Soccer 2008,Wii,2008,Sports,Konami Digital Entertainment,0.09,0.84,0.11,0.15,1.19 +SpongeBob SquarePants: Revenge of the Flying Dutchman,GBA,2002,Platform,THQ,0.92,0.23,0,0.04,1.19 +Mario & Sonic at the London 2012 Olympic Games,3DS,2012,Sports,Sega,0.18,0.64,0.27,0.1,1.19 +Scarface: The World is Yours,PS2,2006,Action,Vivendi Games,0.99,0.04,0,0.16,1.19 +Kobe Bryant in NBA Courtside,N64,1998,Sports,Nintendo,1.02,0.13,0.04,0.01,1.19 +Disney's Chip 'n Dale: Rescue Rangers,NES,1990,Platform,Capcom,0.68,0.14,0.35,0.02,1.19 +The Dukes of Hazzard: Racing for Home,PS,1999,Racing,Ubisoft,0.99,0.16,0,0.04,1.19 +Hitman 2: Silent Assassin,XB,,Action,Eidos Interactive,0.76,0.38,0,0.05,1.19 +FIFA 14,XOne,2013,Sports,Electronic Arts,0.41,0.66,0,0.12,1.19 +Spider-Man: The Movie,GC,2002,Action,Activision,0.86,0.27,0.01,0.04,1.19 +Final Fantasy I & II: Dawn of Souls,GBA,2004,Role-Playing,Nintendo,0.64,0.24,0.29,0.02,1.19 +NBA 2K17,PS4,2016,Sports,Take-Two Interactive,0.83,0.14,0,0.22,1.19 +Pokemon Super Mystery Dungeon,3DS,2015,Role-Playing,Nintendo,0.46,0.31,0.33,0.08,1.19 +Just Dance 4,X360,2012,Misc,Ubisoft,0.9,0.2,0,0.08,1.19 +Metal Gear Solid VR Missions,PS,1999,Adventure,Konami Digital Entertainment,0.66,0.45,0,0.08,1.18 +Pole Position,2600,1982,Racing,Atari,1.1,0.07,0,0.01,1.18 +Resident Evil: Operation Raccoon City,PS3,2012,Action,Capcom,0.48,0.25,0.36,0.1,1.18 +LEGO Indiana Jones: The Original Adventures,PSP,2008,Action,LucasArts,0.4,0.49,0,0.29,1.18 +Pro Yakyuu Family Stadium '88,NES,1988,Sports,Namco Bandai Games,0.1,0,1.08,0,1.18 +Shenmue,DC,1999,Adventure,Sega,0.52,0.24,0.38,0.04,1.18 +Mario Tennis,GB,2000,Sports,Nintendo,0.5,0.18,0.44,0.06,1.18 +Tony Hawk's Pro Skater 2,GBA,2001,Sports,Activision,0.85,0.31,0,0.02,1.18 +WWE '12,PS3,2011,Fighting,THQ,0.53,0.46,0.02,0.17,1.18 +WWE SmackDown vs. Raw 2010,PS3,2009,Fighting,THQ,0.48,0.49,0.01,0.2,1.18 +Plants vs. Zombies,DS,2011,Strategy,Mastertronic,0.95,0.15,0,0.08,1.18 +Sonic the Hedgehog,PS3,2006,Platform,Sega,0.41,0.07,0.04,0.66,1.18 +Super Ghouls 'n Ghosts,SNES,1991,Platform,Capcom,0.5,0.14,0.52,0.02,1.18 +Spore,PC,2008,Strategy,Electronic Arts,0.03,1.06,0,0.09,1.17 +Soviet Strike,PS,1996,Simulation,Electronic Arts,0.65,0.44,0,0.08,1.17 +Your Shape: Fitness Evolved 2012,X360,2011,Sports,Ubisoft,0.7,0.37,0,0.1,1.17 +Army of Two,PS3,2008,Shooter,Electronic Arts,0.74,0.26,0.02,0.15,1.17 +Gun,PS2,2005,Shooter,Activision,0.98,0.04,0,0.16,1.17 +Ty the Tasmanian Tiger,PS2,2002,Platform,Electronic Arts,0.57,0.45,0,0.15,1.17 +Wario Land: Shake It!,Wii,2008,Platform,Nintendo,0.6,0.31,0.15,0.11,1.17 +Sonic Rush Adventure,DS,2007,Platform,Sega,0.54,0.49,0.01,0.12,1.17 +Medal of Honor: Warfighter,X360,2012,Action,Electronic Arts,0.58,0.47,0.01,0.1,1.17 +Mega Man 3,NES,1990,Platform,Capcom,0.68,0.1,0.39,0,1.17 +Ratchet & Clank (2016),PS4,2016,Platform,Sony Computer Entertainment,0.32,0.64,0.04,0.18,1.17 +Mission: Impossible,N64,1997,Action,Ocean,0.74,0.38,0.02,0.03,1.17 +Romancing SaGa 2,SNES,1993,Role-Playing,SquareSoft,0,0,1.17,0,1.17 +Cabela's Dangerous Hunts,PS2,2003,Sports,Zoo Digital Publishing,0.57,0.45,0,0.15,1.17 +Cool Boarders 4,PS,1998,Sports,989 Studios,0.65,0.44,0,0.08,1.17 +Rage Racer,PS,1996,Racing,Sony Computer Entertainment,0.16,0.11,0.83,0.08,1.17 +Medal of Honor: Rising Sun,XB,2003,Shooter,Electronic Arts,0.76,0.36,0,0.05,1.17 +Football Manager 2013,PC,2012,Sports,Sega,0,0.95,0,0.22,1.17 +Destruction Derby 2,PS,1996,Racing,Psygnosis,0.65,0.44,0,0.08,1.17 +Mirror's Edge,X360,2008,Platform,Electronic Arts,0.51,0.51,0.01,0.13,1.17 +Destiny: The Taken King,XOne,2015,Shooter,Activision,0.82,0.23,0,0.11,1.17 +Mario vs. Donkey Kong,GBA,2004,Puzzle,Nintendo,0.68,0.25,0.21,0.02,1.17 +007: Quantum of Solace,PS3,2008,Action,Activision,0.43,0.52,0.02,0.2,1.16 +EA Sports Active: More Workouts,Wii,2009,Sports,Electronic Arts,0.78,0.28,0,0.1,1.16 +Fallout: New Vegas,PC,2010,Role-Playing,Bethesda Softworks,0.58,0.45,0,0.14,1.16 +Need for Speed: Most Wanted,PSV,2012,Racing,Electronic Arts,0.38,0.52,0.01,0.25,1.16 +Final Fantasy Tactics: The War of the Lions,PSP,2007,Role-Playing,Square Enix,0.45,0.25,0.3,0.16,1.16 +Midnight Club 3: DUB Edition Remix,PS2,2006,Racing,Take-Two Interactive,0.97,0.04,0,0.16,1.16 +Tom Clancy's Ghost Recon: Jungle Storm,PS2,2004,Shooter,Ubisoft,0.57,0.44,0,0.15,1.16 +SingStar,PS3,2007,Misc,Sony Computer Entertainment,0.45,0.58,0,0.13,1.16 +Bushido Blade,PS,1997,Fighting,Sony Computer Entertainment,0.39,0.27,0.43,0.08,1.16 +LEGO Star Wars III: The Clone Wars,DS,2011,Action,LucasArts,0.66,0.39,0,0.11,1.16 +NASCAR Thunder 2002,PS2,2001,Racing,Electronic Arts,0.57,0.44,0,0.15,1.16 +Jet Force Gemini,N64,1999,Shooter,Nintendo,0.78,0.28,0.07,0.02,1.16 +Mega Man X,SNES,1993,Platform,Capcom,0.57,0.08,0.5,0.01,1.16 +Yu-Gi-Oh! The Sacred Cards (American and Others sales),GBA,2002,Role-Playing,Konami Digital Entertainment,0.84,0.27,0,0.05,1.16 +Sega Rally Championship,SAT,1995,Racing,Sega,0.21,0.16,0.77,0.02,1.16 +Test Drive: Off Road,PS,1997,Racing,Eidos Interactive,0.65,0.44,0,0.08,1.16 +Medal of Honor Heroes 2,PSP,2007,Shooter,Electronic Arts,0.5,0.39,0.02,0.25,1.16 +Sniper: Ghost Warrior,X360,2010,Shooter,City Interactive,0.54,0.51,0,0.12,1.16 +Rocksmith,PS3,2011,Misc,Ubisoft,0.52,0.38,0.09,0.17,1.16 +LEGO Star Wars: The Video Game,XB,2005,Action,Eidos Interactive,0.83,0.28,0,0.05,1.16 +FIFA Soccer 10,PSP,2009,Sports,Electronic Arts,0.15,0.68,0.01,0.32,1.16 +Plants vs. Zombies: Garden Warfare,X360,2014,Shooter,Electronic Arts,0.51,0.54,0,0.1,1.16 +Worldwide Soccer Manager 2009,PC,2008,Simulation,Sega,0,1.14,0,0.01,1.15 +Omerta: City of Gangsters,PS3,2011,Simulation,Konami Digital Entertainment,0.52,0.46,0,0.17,1.15 +Gauntlet: Dark Legacy,PS2,2001,Action,Midway Games,0.56,0.44,0,0.15,1.15 +Ninja Gaiden Sigma,PS3,2007,Action,Eidos Interactive,0.57,0.33,0.09,0.16,1.15 +Bad Boys: Miami Takedown,PS2,2004,Shooter,Empire Interactive,0.56,0.44,0,0.15,1.15 +Kaboom!,2600,1980,Misc,Activision,1.07,0.07,0,0.01,1.15 +Red Dead Redemption: Undead Nightmare,PS3,2010,Action,Take-Two Interactive,0.44,0.46,0.06,0.18,1.15 +Sonic and the Black Knight,Wii,2009,Platform,Sega,0.69,0.35,0.01,0.11,1.15 +Call of Duty 4: Modern Warfare,PC,2007,Shooter,Activision,0,1.12,0,0.03,1.15 +Qix,GB,1990,Puzzle,Nintendo,0.51,0.2,0.41,0.03,1.15 +Derby Stallion III,SNES,1995,Sports,ASCII Entertainment,0,0,1.15,0,1.15 +Doraemon,NES,1986,Action,Hudson Soft,0,0,1.15,0,1.15 +High School Musical 2: Work This Out!,DS,2008,Misc,Disney Interactive Studios,0.5,0.52,0,0.13,1.15 +Ratchet & Clank: All 4 One,PS3,2011,Platform,Sony Computer Entertainment,0.75,0.22,0.05,0.12,1.15 +Donkey Konga,GC,2003,Misc,Nintendo,0.5,0.16,0.46,0.03,1.15 +Fight Night Champion,PS3,2011,Fighting,Electronic Arts,0.45,0.51,0,0.19,1.15 +Dragon Quest I & II,SNES,1993,Role-Playing,Enix Corporation,0,0,1.15,0,1.15 +Tak and the Power of Juju,PS2,2003,Platform,THQ,0.56,0.44,0,0.15,1.15 +Asteroids,PS,1998,Shooter,Success,0.64,0.43,0,0.07,1.15 +Puyo Puyo Sun Ketteiban,PS,1997,Puzzle,Compile,0,0,1.07,0.07,1.15 +Pokemon Rumble Blast,3DS,2011,Action,Nintendo,0.47,0.26,0.35,0.07,1.14 +Action Bass,PS,2000,Action,Take-Two Interactive,0.64,0.43,0,0.07,1.14 +Tenchu: Wrath of Heaven,PS2,2003,Action,Activision,0.44,0.34,0.25,0.11,1.14 +Shadow of the Colossus,PS2,2005,Action,Sony Computer Entertainment,0.78,0.03,0.2,0.13,1.14 +Brave Fencer Musashi,PS,1998,Role-Playing,SquareSoft,0.25,0.17,0.65,0.07,1.14 +Hot Shots Golf: Out of Bounds,PS3,2007,Sports,Sony Computer Entertainment,0.31,0.03,0.76,0.04,1.14 +Dance Dance Revolution Extreme 2,PS2,2005,Simulation,Konami Digital Entertainment,0.95,0.04,0,0.16,1.14 +Mirror's Edge,PS3,2008,Platform,Electronic Arts,0.31,0.59,0.02,0.22,1.14 +Rabbids Go Home,Wii,2009,Platform,Ubisoft,0.26,0.75,0,0.14,1.14 +South Park,N64,1998,Shooter,Acclaim Entertainment,0.9,0.23,0,0.02,1.14 +Commando,NES,1986,Action,Capcom,0.71,0.16,0.25,0.03,1.14 +Pilotwings,SNES,1990,Simulation,Nintendo,0.46,0.17,0.48,0.02,1.14 +Resident Evil - Code: Veronica,DC,2000,Action,Eidos Interactive,0.41,0.23,0.47,0.03,1.14 +Super R.C. Pro-Am,GB,1991,Racing,Nintendo,0.58,0.37,0.15,0.04,1.14 +The Lord of the Rings: The Return of the King,XB,2003,Action,Electronic Arts,0.71,0.38,0,0.05,1.14 +LEGO Star Wars: The Video Game,GBA,2005,Action,Eidos Interactive,0.82,0.3,0,0.02,1.14 +Royal Palace of White Sword and The City of Gentiles,PS2,2005,Role-Playing,Take-Two Interactive,0,0.51,0,0.62,1.14 +Guitar Hero 5,X360,2009,Misc,Activision,0.65,0.37,0,0.11,1.14 +Mobile Suit Gundam: Federation vs. Zeon,PS2,2001,Simulation,Atari,0.12,0.1,0.88,0.03,1.14 +Need for Speed Underground 2,GC,2004,Racing,Electronic Arts,0.7,0.39,0.01,0.03,1.14 +MechAssault,XB,2002,Simulation,Microsoft Game Studios,1.01,0.1,0,0.03,1.13 +ModNation Racers,PS3,2010,Racing,Sony Computer Entertainment,0.5,0.41,0.06,0.16,1.13 +LEGO Star Wars III: The Clone Wars,3DS,2011,Action,LucasArts,0.61,0.43,0,0.09,1.13 +Derby Stallion 99,PS,1999,Sports,ASCII Entertainment,0,0,1.06,0.07,1.13 +Cars,GBA,2006,Racing,THQ,0.81,0.3,0,0.02,1.13 +Fantasy Life,3DS,2012,Role-Playing,Nintendo,0.33,0.37,0.37,0.06,1.13 +Tom Clancy's Rainbow Six 3: Black Arrow,XB,2004,Shooter,Ubisoft,0.99,0.12,0,0.02,1.13 +WWE 2K15,PS4,2014,Sports,Take-Two Interactive,0.38,0.56,0,0.19,1.13 +Donkey Kong,NES,1983,Platform,Nintendo,0.23,0.05,0.84,0.01,1.13 +Jampack Winter '98,PS,1998,Misc,Sony Computer Entertainment,0.63,0.43,0,0.07,1.13 +WWE 2K14,X360,2013,Sports,Take-Two Interactive,0.64,0.39,0,0.1,1.13 +Alien: Isolation,PS4,2014,Shooter,Sega,0.34,0.56,0.04,0.19,1.13 +Yakuza 3,PS3,2009,Action,Sega,0.21,0.21,0.62,0.08,1.13 +Pok?mon Mystery Dungeon: Red Rescue Team (US weekly sales),GBA,2005,Role-Playing,Nintendo,0.81,0.3,0,0.02,1.13 +The Beatles: Rock Band,PS3,2009,Misc,MTV Games,0.67,0.3,0,0.15,1.13 +Dragon Age II,X360,2011,Action,Electronic Arts,0.72,0.3,0.01,0.09,1.12 +Moon Patrol,2600,1982,Shooter,Atari,1.05,0.06,0,0.01,1.12 +Supercar Street Challenge,PS2,2001,Racing,Activision,0.55,0.43,0,0.14,1.12 +Pilotwings 64,N64,1996,Simulation,Nintendo,0.56,0.24,0.3,0.02,1.12 +Crackdown 2,X360,2010,Shooter,Microsoft Game Studios,0.63,0.37,0.02,0.1,1.12 +Final Fantasy XIV: A Realm Reborn,PS3,2013,Role-Playing,Square Enix,0.36,0.33,0.28,0.15,1.12 +Castlevania: Lords of Shadow,PS3,2010,Action,Konami Digital Entertainment,0.5,0.37,0.1,0.16,1.12 +Rocksmith,X360,2011,Misc,Ubisoft,0.84,0.2,0.01,0.08,1.12 +Disney Infinity 2.0: Marvel Super Heroes,X360,2014,Action,Disney Interactive Studios,0.62,0.4,0,0.1,1.12 +SOCOM: U.S. Navy SEALs Fireteam Bravo,PSP,2005,Shooter,Sony Computer Entertainment,1.03,0,0.01,0.08,1.12 +Call Of Duty 2: Big Red One,XB,2005,Shooter,Activision,0.66,0.4,0,0.05,1.12 +Yoshi's Cookie,NES,1992,Puzzle,Nintendo,0.41,0.06,0.63,0.02,1.12 +Guitar Hero 5,PS2,2009,Misc,Activision,0.28,0.3,0,0.54,1.12 +Worldwide Soccer Manager 2008,PC,2007,Sports,Russel,0,1.12,0,0,1.12 +Spider-Man 2,XB,2004,Action,Activision,0.82,0.26,0,0.04,1.12 +Counter-Strike,XB,2003,Shooter,Microsoft Game Studios,0.85,0.23,0,0.04,1.11 +Mad Max (2015),PS4,2015,Action,Warner Bros. Interactive Entertainment,0.32,0.58,0.04,0.17,1.11 +"Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)",PS2,2007,Action,Activision,0.63,0.37,0,0.11,1.11 +GRID,PS3,2008,Racing,Codemasters,0.31,0.57,0.03,0.2,1.11 +Guitar Hero Encore: Rocks The 80s,PS2,2007,Misc,RedOctane,0.92,0.04,0,0.15,1.11 +Sunset Overdrive,XOne,2014,Shooter,Microsoft Game Studios,0.62,0.4,0,0.08,1.11 +Rock Band,PS2,,Misc,Electronic Arts,0.71,0.06,0,0.35,1.11 +Tom Clancy's Splinter Cell: Chaos Theory,XB,2005,Action,Ubisoft,0.68,0.38,0,0.05,1.11 +Donkey Kong Jr.,NES,1983,Platform,Nintendo,0.33,0.07,0.7,0.01,1.11 +Arc the Lad,PS,1995,Role-Playing,Sony Computer Entertainment,0,0,1.1,0.01,1.11 +NBA Jam Tournament Edition,GEN,1994,Sports,Acclaim Entertainment,0.95,0.14,0,0.03,1.11 +Need for Speed: ProStreet,Wii,2007,Racing,Electronic Arts,0.54,0.46,0,0.12,1.11 +Pikmin 3,WiiU,2013,Strategy,Nintendo,0.45,0.31,0.29,0.06,1.11 +Legend of Mana,PS,1999,Role-Playing,SquareSoft,0.18,0.13,0.73,0.07,1.11 +Lumines: Puzzle Fusion,PSP,2004,Puzzle,Ubisoft,0.52,0.35,0,0.23,1.11 +Toy Story 3: The Video Game,PS3,2010,Action,Disney Interactive Studios,0.51,0.42,0,0.17,1.11 +Guitar Hero 5,PS3,2009,Misc,Activision,0.53,0.4,0,0.17,1.1 +Megamania,2600,1981,Shooter,Activision,1.03,0.06,0,0.01,1.1 +Medal of Honor: Airborne,X360,2007,Shooter,Electronic Arts,0.45,0.53,0.01,0.12,1.1 +The Legend of Zelda: Tri Force Heroes,3DS,2015,Action,Nintendo,0.52,0.33,0.17,0.08,1.1 +Jungle Hunt,2600,1982,Platform,Atari,1.03,0.06,0,0.01,1.1 +Triple Play 98,PS,1997,Sports,Electronic Arts,0.61,0.42,0,0.07,1.1 +LEGO The Lord of the Rings,PS3,2012,Action,Warner Bros. Interactive Entertainment,0.36,0.53,0,0.21,1.1 +Petz Dogz 2,DS,2007,Simulation,Ubisoft,0.47,0.52,0,0.12,1.1 +WWE SmackDown vs. Raw 2011,PS3,2010,Fighting,THQ,0.44,0.46,0.01,0.18,1.1 +Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories,GB,1999,Strategy,Konami Digital Entertainment,0,0,1.1,0,1.1 +Lode Runner,NES,1984,Puzzle,Hudson Soft,0,0,1.1,0,1.1 +The Final Fantasy Legend,GB,1989,Role-Playing,SquareSoft,0,0,1.1,0,1.1 +Famicom Jump: Eiyuu Retsuden,NES,1989,Role-Playing,Namco Bandai Games,0,0,1.1,0,1.1 +F-Zero X,N64,1998,Racing,Nintendo,0.45,0.33,0.29,0.03,1.1 +Popeye,NES,1983,Platform,Nintendo,0.51,0.12,0.45,0.02,1.1 +NERF N-Strike,Wii,2008,Shooter,Electronic Arts,0.92,0.09,0,0.09,1.1 +NBA Live 2001,PS2,2001,Sports,Electronic Arts,0.52,0.4,0.04,0.13,1.1 +SingStar Legends,PS2,2006,Misc,Sony Computer Entertainment,0.12,0.75,0,0.23,1.1 +SingStar Rocks!,PS2,2006,Misc,Sony Computer Entertainment,0,0.84,0,0.25,1.1 +Tales of Symphonia,GC,2003,Role-Playing,Nintendo,0.54,0.21,0.31,0.04,1.1 +Untold Legends: Brotherhood of the Blade,PSP,2005,Role-Playing,Activision,0.54,0.33,0.01,0.22,1.1 +Star Ocean: The Second Story,PS,1998,Role-Playing,Sony Computer Entertainment,0.26,0.1,0.72,0.02,1.1 +Lightning Returns: Final Fantasy XIII,PS3,2013,Role-Playing,Square Enix,0.31,0.22,0.45,0.12,1.1 +Star Wars: The Force Unleashed,PSP,2008,Action,LucasArts,0.43,0.41,0,0.25,1.09 +Imagine: Babysitters,DS,2008,Simulation,Ubisoft,0.63,0.36,0,0.1,1.09 +The Simpsons Game,PSP,2007,Action,Electronic Arts,0.24,0.55,0,0.31,1.09 +Yakuza 2,PS2,2006,Adventure,Sega,0.05,0.04,0.84,0.16,1.09 +Skate 2,X360,2009,Sports,Electronic Arts,0.82,0.17,0.01,0.09,1.09 +Dragon Ball Z: The Legacy of Goku II,GBA,2003,Role-Playing,Atari,0.78,0.29,0,0.02,1.09 +Virtua Fighter 5,PS3,2007,Fighting,Sega,0.29,0.52,0.08,0.2,1.09 +NFL 2K1,DC,2000,Sports,Sega,1.02,0.05,0,0.02,1.09 +BeatMania,PS,1998,Simulation,Konami Digital Entertainment,0,0,1.07,0.02,1.09 +Namco Museum Battle Collection,PSP,2005,Misc,Sony Computer Entertainment,0.75,0.18,0,0.16,1.09 +LEGO Star Wars II: The Original Trilogy,DS,2006,Action,LucasArts,0.96,0.04,0,0.08,1.09 +Madden NFL 2004,XB,2003,Sports,Electronic Arts,1.02,0.02,0,0.05,1.09 +Empire: Total War,PC,2009,Strategy,Sega,0.01,0.97,0,0.11,1.09 +The Godfather,PS2,2006,Action,Electronic Arts,0.89,0.03,0.01,0.15,1.09 +Tiger Woods PGA Tour 10,Wii,2009,Sports,Electronic Arts,0.61,0.37,0,0.11,1.09 +Star Wars: Bounty Hunter,PS2,2002,Shooter,LucasArts,0.53,0.42,0,0.14,1.09 +Densha De Go!,PS,1997,Simulation,Taito,0,0,1.02,0.07,1.09 +Dante's Inferno,PS3,2010,Action,Electronic Arts,0.64,0.28,0.04,0.13,1.09 +Sonic & Sega All-Stars Racing,DS,2010,Racing,Sega,0.44,0.54,0,0.11,1.09 +Skylanders Giants,PS3,2012,Action,Activision,0.35,0.52,0,0.22,1.09 +Endless Ocean,Wii,2007,Adventure,Nintendo,0.44,0.47,0.09,0.09,1.09 +NFL Blitz 2000,PS,1998,Sports,Midway Games,0.6,0.41,0,0.07,1.09 +Sonic Free Riders,X360,2010,Racing,Sega,0.74,0.26,0,0.09,1.09 +NASCAR Thunder 2004,PS2,2003,Racing,Electronic Arts,0.53,0.41,0,0.14,1.08 +Prince of Persia,PS3,2008,Action,Ubisoft,0.47,0.41,0.03,0.18,1.08 +SpongeBob SquarePants: Revenge of the Flying Dutchman,PS2,2002,Platform,THQ,0.53,0.41,0,0.14,1.08 +Grand Theft Auto V,PC,2015,Action,Take-Two Interactive,0.36,0.64,0,0.08,1.08 +The Biggest Loser,Wii,2009,Sports,THQ,0.87,0.12,0,0.09,1.08 +Fisherman's Bass Club,PS2,2002,Sports,Agetec,0.53,0.41,0,0.14,1.08 +MySims Agents,DS,2009,Adventure,Electronic Arts,0.55,0.43,0,0.11,1.08 +Resident Evil: The Darkside Chronicles,Wii,2009,Action,Capcom,0.48,0.32,0.2,0.09,1.08 +NCAA Football 13,X360,2012,Action,Electronic Arts,1.02,0,0,0.06,1.08 +Grand Theft Auto: Chinatown Wars,PSP,2009,Action,Take-Two Interactive,0.28,0.5,0.03,0.28,1.08 +FIFA Soccer 11,Wii,2010,Sports,Electronic Arts,0.26,0.69,0,0.12,1.08 +The Orange Box,PS3,2007,Shooter,Electronic Arts,0.28,0.59,0,0.22,1.08 +Joust,2600,1982,Platform,Atari,1.01,0.06,0,0.01,1.08 +Tomb Raider: Underworld,X360,2008,Action,Eidos Interactive,0.53,0.43,0.01,0.11,1.08 +Tom Clancy's Ghost Recon 2,PS2,2004,Shooter,Ubisoft,0.64,0.34,0,0.1,1.08 +DiRT 3,PS3,2011,Racing,Codemasters,0.27,0.59,0.01,0.21,1.08 +LEGO City Undercover,WiiU,2013,Platform,Nintendo,0.47,0.4,0.13,0.08,1.08 +Spore Creatures,DS,2008,Simulation,Electronic Arts,0.67,0.3,0,0.11,1.08 +Ready 2 Rumble Boxing,PS,1998,Sports,Midway Games,0.6,0.41,0,0.07,1.08 +Dragon Ball Z: Taiketsu,GBA,2003,Fighting,Atari,0.77,0.29,0,0.02,1.08 +Disney's Lilo & Stitch,GBA,2002,Platform,Ubisoft,0.77,0.29,0,0.02,1.08 +Star Fox: Assault,GC,2005,Shooter,Nintendo,0.68,0.18,0.19,0.03,1.08 +Naruto: Ultimate Ninja Storm,PS3,2008,Fighting,Namco Bandai Games,0.49,0.35,0.09,0.16,1.08 +Marvel vs. Capcom 3: Fate of Two Worlds,X360,2011,Fighting,Capcom,0.79,0.18,0.03,0.07,1.08 +NCAA Football 14,X360,2013,Sports,Electronic Arts,1.01,0,0,0.06,1.07 +Doko Demo Issyo,PS,1999,Misc,Sony Computer Entertainment,0,0,1,0.07,1.07 +Call of Duty 3,PS2,2006,Shooter,Activision,0.89,0.03,0,0.15,1.07 +Imagine: Fashion Designer New York,DS,2008,Simulation,Ubisoft,0.65,0.32,0,0.1,1.07 +Red Dead Redemption: Undead Nightmare,X360,2010,Action,Take-Two Interactive,0.57,0.39,0.02,0.09,1.07 +Bully: Scholarship Edition,X360,2008,Action,Take-Two Interactive,0.53,0.4,0.03,0.11,1.07 +Virtua Fighter,SAT,1994,Fighting,Sega,0.17,0.12,0.77,0.02,1.07 +Championship Manager 99/00,PC,1999,Sports,Eidos Interactive,0,0.98,0,0.09,1.07 +WWE SmackDown vs. Raw 2010,PS2,2009,Fighting,THQ,0.53,0.01,0,0.54,1.07 +Pro Evolution Soccer 2008,X360,2007,Sports,Konami Digital Entertainment,0.08,0.9,0.04,0.05,1.07 +Super Princess Peach,DS,2005,Platform,Nintendo,0.72,0.06,0.21,0.07,1.07 +NHL 99,PS,1997,Sports,Electronic Arts,0.59,0.4,0,0.07,1.07 +SoulCalibur III,PS2,2005,Fighting,Namco Bandai Games,0.74,0.15,0.13,0.05,1.07 +Skylanders SWAP Force,PS3,2013,Platform,Activision,0.43,0.44,0,0.2,1.07 +F1 2012,PS3,2012,Racing,Codemasters,0.12,0.64,0.05,0.25,1.07 +World Tour Soccer,PSP,2005,Sports,Sony Computer Entertainment,0.1,0.63,0,0.34,1.07 +Disney Universe,Wii,2011,Action,Disney Interactive Studios,0.67,0.3,0,0.1,1.07 +Ridge Racer Revolution,PS,1995,Racing,Sony Computer Entertainment,0.17,0.12,0.71,0.07,1.07 +LEGO Pirates of the Caribbean: The Video Game,X360,2011,Action,Disney Interactive Studios,0.54,0.42,0,0.1,1.07 +Hot Wheels Turbo Racing,PS,1999,Racing,Electronic Arts,0.59,0.4,0,0.07,1.07 +NCAA Football 99,PS,1998,Sports,Electronic Arts,0.59,0.4,0,0.07,1.06 +Mortal Kombat: Armageddon,PS2,2006,Fighting,Midway Games,0.88,0.04,0,0.14,1.06 +Aliens vs Predator,X360,2010,Shooter,Sega,0.55,0.4,0,0.11,1.06 +Freekstyle,PS2,2002,Racing,Electronic Arts,0.52,0.41,0,0.14,1.06 +Junior Brain Trainer,DS,2008,Misc,GSP,0.23,0.74,0,0.1,1.06 +Darksiders,X360,2010,Action,THQ,0.67,0.29,0.01,0.1,1.06 +DiRT,PS3,2007,Racing,Codemasters,0.16,0.67,0,0.23,1.06 +Call of Duty 4: Modern Warfare,DS,2007,Shooter,Activision,0.96,0.02,0.01,0.08,1.06 +Simple 1500 Series Vol. 1: The Mahjong,PS,1998,Misc,D3Publisher,0,0,0.99,0.07,1.06 +Sega Superstars Tennis,Wii,2008,Sports,Sega,0.28,0.65,0,0.13,1.06 +NBA Street V3,PS2,2005,Sports,Electronic Arts,0.52,0.41,0,0.14,1.06 +Sleeping Dogs,PS3,2012,Action,Square Enix,0.31,0.5,0.05,0.19,1.06 +Mercenaries 2: World in Flames,X360,2008,Shooter,Electronic Arts,0.65,0.3,0.01,0.1,1.06 +Worms Armageddon,PS,1999,Strategy,Microprose,0.18,0.81,0,0.08,1.06 +Hulk,PS2,2003,Action,Universal Interactive,0.52,0.41,0,0.14,1.06 +LEGO Indiana Jones: The Original Adventures,PS3,2008,Action,Activision,0.44,0.44,0,0.18,1.06 +NFL Blitz,N64,1998,Sports,Midway Games,1.02,0.04,0,0.01,1.06 +NFL Quarterback Club 98,N64,1997,Sports,Acclaim Entertainment,1.01,0.05,0,0.01,1.06 +DJ Hero,X360,2009,Misc,Activision,0.56,0.4,0,0.11,1.06 +Dora the Explorer: Dora Saves the Mermaids,DS,2007,Platform,Take-Two Interactive,0.97,0.01,0,0.08,1.06 +Diablo II: Lord of Destruction,PC,2001,Role-Playing,Vivendi Games,1.03,0.02,0,0,1.06 +Naruto Shippuden: Ultimate Ninja Storm 4,PS4,2016,Fighting,Namco Bandai Games,0.39,0.41,0.1,0.16,1.06 +Spider-Man 2,GBA,2004,Action,Activision,0.76,0.28,0,0.02,1.06 +Virtua Tennis 3,PS3,2007,Sports,Sega,0.23,0.59,0.03,0.22,1.06 +Seek and Destroy,PS2,2002,Racing,Play It,0.52,0.4,0,0.14,1.06 +Warhawk,PS3,2007,Simulation,Sony Computer Entertainment,0.49,0.39,0,0.17,1.06 +Apollo Justice: Ace Attorney,DS,2007,Adventure,Capcom,0.32,0.06,0.64,0.04,1.06 +Assassin's Creed: Rogue,X360,2014,Action,Ubisoft,0.58,0.38,0,0.09,1.05 +Cosmic Ark,2600,1981,Shooter,Imagic,0.99,0.05,0,0.01,1.05 +SOCOM: U.S. Navy SEALs Fireteam Bravo 2,PSP,2006,Shooter,Sony Computer Entertainment,0.81,0.11,0,0.13,1.05 +Skylanders: Trap Team,Wii,2014,Action,Activision,0.42,0.54,0,0.08,1.05 +Aliens vs Predator,PS3,2010,Shooter,Sega,0.41,0.47,0,0.18,1.05 +Defender,2600,1980,Misc,Atari,0.99,0.05,0,0.01,1.05 +Dance on Broadway,Wii,2010,Misc,Ubisoft,0.27,0.66,0,0.12,1.05 +Adventure Island,NES,1986,Platform,Hudson Soft,0,0,1.05,0,1.05 +Arc the Lad II,PS,1996,Role-Playing,Sony Computer Entertainment,0,0,0.92,0.13,1.05 +Tag Team Match M.U.S.C.L.E.,NES,1985,Fighting,Namco Bandai Games,0,0,1.05,0,1.05 +Derby Stallion 96,SNES,1996,Sports,ASCII Entertainment,0,0,1.04,0.01,1.05 +UFC Undisputed 3,PS3,2012,Action,THQ,0.55,0.34,0.03,0.13,1.05 +NBA 2K3,PS2,2002,Sports,Sega,0.51,0.4,0,0.13,1.05 +Dragon Ball: XenoVerse,PS4,2015,Fighting,Namco Bandai Games,0.3,0.48,0.12,0.15,1.05 +The Simpsons: Road Rage,XB,2001,Racing,Electronic Arts,0.78,0.26,0,0.01,1.05 +Dave Mirra Freestyle BMX,PS,2000,Sports,Acclaim Entertainment,0.91,0.11,0,0.03,1.05 +Imagine: Animal Doctor,DS,2007,Simulation,Ubisoft,0.45,0.49,0,0.11,1.05 +WWE SmackDown vs. Raw 2010,X360,2009,Fighting,THQ,0.56,0.38,0.01,0.11,1.05 +Forza Motorsport,XB,2005,Racing,Microsoft Game Studios,0.52,0.51,0,0.02,1.05 +Sonic the Hedgehog,X360,2006,Platform,Sega,0.44,0.49,0,0.11,1.05 +MySims Agents,Wii,2009,Adventure,Electronic Arts,0.62,0.32,0,0.1,1.05 +Monster Rancher 2,PS,1998,Simulation,Sony Computer Entertainment,0.19,0.13,0.66,0.07,1.05 +Pokemon Conquest,DS,2012,Role-Playing,Nintendo,0.58,0.06,0.37,0.04,1.05 +The Simpsons Game,X360,2007,Action,Electronic Arts,0.54,0.4,0,0.11,1.05 +Guinness World Records: The Videogame,Wii,2008,Action,Warner Bros. Interactive Entertainment,0.46,0.47,0,0.11,1.04 +MVP Baseball 2003,PS2,2003,Sports,Electronic Arts,0.51,0.4,0,0.13,1.04 +Legacy of Kain: Soul Reaver,PS,,Action,Eidos Interactive,0.58,0.4,0,0.07,1.04 +Dragon Ball Z: Budokai Tenkaichi 3,Wii,2007,Fighting,Atari,0.33,0.37,0.26,0.09,1.04 +Disney Tangled,DS,2010,Action,Disney Interactive Studios,0.58,0.37,0,0.09,1.04 +Tales of Destiny,PS,1997,Role-Playing,Namco Bandai Games,0.09,0.06,0.83,0.07,1.04 +ATV: Quad Power Racing,PS,2000,Racing,Acclaim Entertainment,0.58,0.39,0,0.07,1.04 +Disney Fairies: Tinker Bell and the Lost Treasure,DS,2009,Adventure,Disney Interactive Studios,0.57,0.35,0.02,0.1,1.04 +Mega Man X4,PS,1996,Action,Virgin Interactive,0.45,0.3,0.22,0.07,1.04 +Naruto: Clash of Ninja 2,GC,2003,Fighting,Nintendo,0.44,0.12,0.45,0.03,1.04 +Dance Dance Revolution SuperNOVA,PS2,2006,Simulation,Konami Digital Entertainment,0.87,0.03,0,0.14,1.04 +Brink,X360,2011,Shooter,Bethesda Softworks,0.59,0.35,0.01,0.09,1.04 +F-Zero: Maximum Velocity,GBA,2001,Racing,Nintendo,0.39,0.16,0.37,0.12,1.04 +Bomberman 64,N64,1997,Puzzle,Hudson Soft,0.5,0.2,0.31,0.03,1.04 +Jeremy McGrath Supercross 98,PS,1998,Racing,Acclaim Entertainment,0.91,0.1,0,0.03,1.04 +LEGO Indiana Jones 2: The Adventure Continues,X360,2009,Action,Activision,0.62,0.33,0,0.09,1.04 +Project CARS,PS4,2015,Racing,Slightly Mad Studios,0.17,0.69,0.02,0.15,1.04 +Need for Speed: Most Wanted,XB,2005,Racing,Electronic Arts,0.53,0.46,0,0.05,1.04 +Kirby: Mass Attack,DS,2011,Platform,Nintendo,0.52,0.06,0.41,0.05,1.04 +LEGO Marvel Super Heroes,XOne,2013,Action,Warner Bros. Interactive Entertainment,0.61,0.34,0,0.09,1.04 +ZhuZhu Pets,DS,2010,Simulation,Activision,0.68,0.27,0,0.09,1.04 +Tom Clancy's Ghost Recon Advanced Warfighter 2,PS3,2007,Shooter,Ubisoft,0.34,0.48,0.02,0.19,1.04 +MotorStorm: Arctic Edge,PSP,2009,Racing,Sony Computer Entertainment,0.16,0.58,0,0.3,1.04 +WipEout Pure,PSP,2005,Racing,Sony Computer Entertainment,0.47,0.34,0,0.22,1.04 +EA Sports UFC,PS4,2014,Sports,Electronic Arts,0.46,0.4,0.01,0.17,1.04 +MX vs. ATV Unleashed,PS2,2005,Racing,THQ,0.86,0.03,0,0.14,1.03 +Sonic Unleashed,PS3,2008,Platform,Sega,0.56,0.33,0.01,0.14,1.03 +Tiger Woods PGA Tour 08,Wii,2007,Sports,Electronic Arts,0.94,0.02,0,0.08,1.03 +Rayman Origins,PS3,2011,Platform,Ubisoft,0.33,0.51,0.01,0.18,1.03 +Epic Mickey 2: The Power of Two,Wii,2012,Action,Disney Interactive Studios,0.72,0.23,0,0.08,1.03 +NCAA March Madness 2004,PS2,2003,Sports,Electronic Arts,0.5,0.39,0,0.13,1.03 +Donkey Kong Land III,GB,,Platform,Nintendo,0.68,0.31,0,0.04,1.03 +Bomberman,NES,1985,Puzzle,Hudson Soft,0.18,0,0.85,0,1.03 +The Simpsons Game,Wii,2007,Action,Electronic Arts,0.45,0.47,0,0.11,1.03 +Tomb Raider,PC,1996,Action,Eidos Interactive,0.96,0.07,0,0,1.03 +Rock Band 2,Wii,2008,Misc,MTV Games,0.94,0.01,0,0.08,1.03 +Street Fighter Alpha 3,PS,1998,Fighting,Virgin Interactive,0.38,0.12,0.51,0.02,1.03 +Bulletstorm,X360,2011,Shooter,Electronic Arts,0.61,0.32,0.01,0.08,1.02 +FIFA Soccer 08,Wii,2007,Sports,Electronic Arts,0.32,0.59,0.01,0.11,1.02 +Naruto: Clash of Ninja Revolution,Wii,2007,Fighting,Tomy Corporation,0.45,0.46,0,0.11,1.02 +Tom Clancy's Ghost Recon Advanced Warfighter 2,X360,2007,Shooter,Ubisoft,0.87,0.05,0.02,0.08,1.02 +ZombiU,WiiU,2012,Action,Ubisoft,0.53,0.36,0.05,0.08,1.02 +Shrek 2,GC,2004,Platform,Activision,0.73,0.26,0.01,0.03,1.02 +Petz: Catz 2,DS,2007,Simulation,Ubisoft,0.51,0.4,0,0.11,1.02 +Tales of Graces f,PS3,2010,Role-Playing,Namco Bandai Games,0.28,0.21,0.45,0.08,1.02 +Final Fight 2,SNES,1993,Action,Capcom,0.39,0.12,0.49,0.02,1.02 +Wall-E,Wii,2008,Platform,THQ,0.51,0.4,0,0.11,1.02 +The Lost World: Jurassic Park,PS,1997,Action,Electronic Arts,0.57,0.39,0,0.07,1.02 +Ace Combat 6: Fires of Liberation,X360,2007,Simulation,Atari,0.69,0.04,0.22,0.06,1.02 +Madden NFL 07,XB,2006,Sports,Electronic Arts,0.97,0.03,0,0.03,1.02 +Disney Infinity 2.0: Marvel Super Heroes,PS3,2014,Action,Disney Interactive Studios,0.44,0.4,0,0.17,1.02 +Harry Potter and the Prisoner of Azkaban,PS2,2004,Action,Electronic Arts,0.5,0.39,0,0.13,1.02 +Pong: The Next Level,PS,1998,Puzzle,Hasbro Interactive,0.56,0.38,0,0.07,1.01 +Bayonetta 2,WiiU,2014,Action,Nintendo,0.34,0.28,0.1,0.3,1.01 +Prince of Persia,X360,2008,Action,Ubisoft,0.54,0.35,0.02,0.1,1.01 +God of War: Ghost of Sparta,PSP,2010,Action,Sony Computer Entertainment,0.41,0.36,0.03,0.21,1.01 +Sonic Generations,3DS,2011,Platform,Sega,0.44,0.46,0.01,0.09,1.01 +Ninja Gaiden II,X360,2008,Action,Tecmo Koei,0.65,0.22,0.05,0.1,1.01 +NBA Jam Tournament Edition,SNES,1995,Sports,Acclaim Entertainment,0.87,0.12,0,0.02,1.01 +Championship Manager 3,PC,2003,Sports,Eidos Interactive,0,0.93,0,0.08,1.01 +Guitar Hero: Warriors of Rock,Wii,2010,Misc,Activision,0.48,0.44,0,0.09,1.01 +Oshare Majo Love and Berry: DS Collection,DS,2006,Misc,Sega,0,0,1.01,0,1.01 +Monster Rancher,PS,1997,Simulation,Tecmo Koei,0.12,0.08,0.74,0.07,1.01 +The LEGO Movie Videogame,PS3,2014,Action,Warner Bros. Interactive Entertainment,0.33,0.48,0.02,0.18,1.01 +Tomb Raider,PC,1996,Action,Eidos Interactive,0.96,0.07,0,0,1.03 +DiRT 2,PS3,2009,Racing,Codemasters,0.27,0.53,0,0.2,1.01 +Rayman Legends,PS4,2014,Platform,Ubisoft,0.21,0.61,0,0.18,1.01 +NERF N-Strike Elite,Wii,2009,Shooter,Electronic Arts,0.93,0,0,0.07,1 +Ford Racing 2,PS2,2003,Racing,Empire Interactive,0.49,0.38,0,0.13,1 +Breath of Fire III,PS,1997,Role-Playing,Capcom,0.29,0.19,0.46,0.07,1 +PES 2009: Pro Evolution Soccer,X360,2008,Sports,Konami Digital Entertainment,0.13,0.76,0.03,0.09,1 +Dead or Alive 2,PS2,2000,Fighting,Tecmo Koei,0.3,0.24,0.38,0.08,1 +1942,NES,1985,Shooter,Capcom,0.65,0.14,0.21,0,1 +Excitebike 64,N64,2000,Racing,Nintendo,0.65,0.15,0.19,0.01,1 +NES Open Tournament Golf,NES,1991,Sports,Nintendo,0.41,0.1,0.47,0.02,1 +Game & Watch Gallery,GB,1997,Misc,Nintendo,0.63,0.25,0.09,0.03,1 +Jissen Pachi-Slot Hisshouhou: Hokuto no Ken,PS2,2004,Misc,Sammy Corporation,0,0,1,0,1 +SoulCalibur II,XB,2003,Fighting,Namco Bandai Games,0.78,0.18,0.03,0,1 +Haze,PS3,2008,Shooter,Ubisoft,0.49,0.33,0.02,0.15,1 +UFC Undisputed 3,X360,2012,Action,THQ,0.72,0.21,0,0.07,1 +Winning Eleven: Pro Evolution Soccer 2007 (All Region sales),X360,2006,Sports,Konami Digital Entertainment,0.08,0.9,0.02,0,1 +Road & Track Presents: The Need for Speed,PS,1995,Racing,Electronic Arts,0.56,0.38,0,0.07,1 +NFL GameDay 2001,PS,2000,Sports,Sony Computer Entertainment,0.56,0.38,0,0.07,1 +Killzone: Mercenary,PSV,2013,Shooter,Sony Computer Entertainment Europe,0.25,0.49,0.04,0.22,1 +NBA Live 97,PS,1996,Sports,Electronic Arts,0.55,0.38,0,0.07,1 +Dynasty Warriors 3: Xtreme Legends,PS2,2002,Action,Tecmo Koei,0.13,0.1,0.74,0.03,1 +Zoo Tycoon DS,DS,2005,Strategy,THQ,0.86,0.04,0.01,0.08,1 +Rocksmith 2014,PS3,2013,Misc,Ubisoft,0.51,0.27,0.05,0.15,1 +Dead Space 3,PS3,2013,Action,Electronic Arts,0.44,0.38,0,0.17,1 +Wheel of Fortune,Wii,2010,Misc,THQ,0.89,0.04,0,0.06,1 +Disney Infinity,PS3,2013,Action,Disney Interactive Studios,0.48,0.35,0,0.16,1 +Dark Souls,X360,2011,Role-Playing,Namco Bandai Games,0.64,0.28,0,0.08,1 +Puzzler Collection,DS,2008,Puzzle,Ubisoft,0.17,0.78,0,0.04,1 +Jampack Winter 2000,PS,2000,Misc,Sony Computer Entertainment,0.55,0.38,0,0.07,1 +Dead Space 3,X360,2013,Action,Electronic Arts,0.64,0.28,0,0.08,0.99 +Phoenix Wright: Ace Attorney,DS,2005,Adventure,Capcom,0.49,0.07,0.39,0.05,0.99 +NFL Fever 2002,XB,2000,Sports,Microsoft Game Studios,0.74,0.21,0,0.04,0.99 +The Simpsons: Hit & Run,GC,2003,Racing,Vivendi Games,0.77,0.2,0,0.03,0.99 +Littlest Pet Shop: Winter,DS,2008,Simulation,Electronic Arts,0.59,0.31,0,0.1,0.99 +LEGO Harry Potter: Years 5-7,X360,,Action,Warner Bros. Interactive Entertainment,0.51,0.39,0,0.09,0.99 +Tom Clancy's Splinter Cell: Blacklist,X360,2013,Action,Ubisoft,0.57,0.34,0.01,0.08,0.99 +Ace Combat X: Skies of Deception,PSP,2006,Simulation,Namco Bandai Games,0.37,0.31,0.12,0.19,0.99 +NCAA Football 12,X360,2011,Sports,Electronic Arts,0.94,0,0,0.06,0.99 +LEGO Pirates of the Caribbean: The Video Game,PS3,2011,Action,Disney Interactive Studios,0.36,0.46,0,0.17,0.99 +Band Hero,Wii,2009,Misc,Activision,0.6,0.3,0,0.09,0.99 +Cars: Race-O-Rama,Wii,2009,Racing,THQ,0.61,0.3,0,0.09,0.99 +Oddworld: Abe's Exoddus,PS,1998,Platform,GT Interactive,0.55,0.38,0,0.06,0.99 +EyePet,PS3,2009,Simulation,Sony Computer Entertainment,0.35,0.52,0.04,0.09,0.99 +Scooby-Doo! First Frights,Wii,2009,Action,Warner Bros. Interactive Entertainment,0.88,0.05,0,0.07,0.99 +Midnight Club: LA Remix,PSP,2008,Racing,Take-Two Interactive,0.52,0.28,0,0.19,0.99 +The Bouncer,PS2,2000,Action,Sony Computer Entertainment,0.3,0.23,0.38,0.08,0.99 +Guitar Hero: Aerosmith,PS3,2008,Misc,Activision,0.73,0.15,0,0.11,0.99 +WWE SmackDown vs Raw 2008,Wii,2007,Fighting,THQ,0.38,0.5,0,0.11,0.99 +FIFA Soccer 10,Wii,2009,Sports,Electronic Arts,0.23,0.65,0,0.11,0.99 +Shadow The Hedgehog,GC,2005,Platform,Sega,0.76,0.2,0,0.03,0.99 +Farming Simulator 2013,PC,2012,Simulation,Focus Home Interactive,0,0.8,0,0.18,0.99 +Fallout 3,PC,2008,Role-Playing,Bethesda Softworks,0.02,0.88,0,0.08,0.99 +Cars,DS,2006,Racing,THQ,0.85,0.05,0,0.08,0.98 +Pro Evolution Soccer 2008,PSP,2008,Sports,Konami Digital Entertainment,0.02,0.53,0.19,0.25,0.98 +Far Cry 3,PC,2012,Shooter,Ubisoft,0.21,0.62,0,0.14,0.98 +Xenoblade Chronicles,Wii,2010,Role-Playing,Nintendo,0.49,0.26,0.16,0.08,0.98 +Just Dance 2014,X360,2013,Misc,Ubisoft,0.72,0.19,0,0.07,0.98 +Mario Party Advance,GBA,2005,Misc,Nintendo,0.5,0.19,0.28,0.02,0.98 +Sonic & Sega All-Stars Racing,PS3,2010,Racing,Sega,0.36,0.46,0,0.17,0.98 +Tetris 2,NES,1993,Puzzle,Nintendo,0.62,0.13,0.21,0.02,0.98 +NASCAR 99,N64,1998,Racing,Electronic Arts,0.94,0.04,0,0.01,0.98 +Air-Sea Battle,2600,,Shooter,Atari,0.91,0.06,0,0.01,0.98 +Suikoden III,PS2,,Role-Playing,Unknown,0.29,0.23,0.38,0.08,0.98 +Kingdom Hearts Re:coded,DS,2010,Role-Playing,Square Enix,0.56,0.1,0.27,0.05,0.98 +South Park: The Stick of Truth,PS3,2014,Role-Playing,Ubisoft,0.42,0.38,0,0.17,0.98 +Driver: San Francisco,PS3,2011,Racing,Ubisoft,0.24,0.54,0.01,0.18,0.98 +Driver: San Francisco,PS3,2011,Racing,Ubisoft,0.24,0.54,0.01,0.18,0.98 +Sniper Elite V2,PS3,2012,Shooter,505 Games,0.38,0.39,0.06,0.15,0.98 +Far Cry 4,X360,2014,Shooter,Ubisoft,0.45,0.44,0,0.08,0.98 +Grand Theft Auto: San Andreas,PC,2005,Action,Take-Two Interactive,0,0.92,0,0.05,0.98 +Tom Clancy's Splinter Cell: Blacklist,PS3,2013,Action,Ubisoft,0.34,0.41,0.06,0.18,0.98 +Pro Evolution Soccer 2014,PS3,2013,Action,Konami Digital Entertainment,0.03,0.43,0.51,0.01,0.98 +Madden NFL 16,X360,2015,Sports,Electronic Arts,0.82,0.05,0,0.1,0.98 +Madden NFL 10,PS2,2009,Sports,Electronic Arts,0.88,0,0,0.1,0.98 +Brutal Legend,X360,2009,Action,Electronic Arts,0.62,0.27,0,0.09,0.98 +Tamagotchi Connection: Corner Shop 2,DS,2006,Simulation,Namco Bandai Games,0.09,0.02,0.86,0.01,0.98 +Final Fantasy Type-0,PS4,2015,Role-Playing,Square Enix,0.37,0.32,0.15,0.14,0.97 +Madden NFL 08,PS3,2007,Sports,Electronic Arts,0.89,0.01,0,0.08,0.97 +de Blob,Wii,2008,Platform,THQ,0.5,0.37,0,0.1,0.97 +NCAA Football 06,XB,2005,Sports,Electronic Arts,0.73,0.21,0,0.03,0.97 +Mass Effect 3,PC,2012,Role-Playing,Electronic Arts,0.4,0.44,0,0.13,0.97 +NBA 2K10,X360,2009,Sports,Take-Two Interactive,0.88,0.02,0,0.08,0.97 +Fire Emblem,GBA,2003,Strategy,Nintendo,0.49,0.18,0.29,0.01,0.97 +Yakuza 4,PS3,,Action,Sega,0.15,0.14,0.63,0.05,0.97 +Skylanders: Spyro's Adventure,X360,2011,Action,Activision,0.53,0.35,0,0.1,0.97 +Club Penguin: Game Day!,Wii,2010,Sports,Disney Interactive Studios,0.56,0.33,0,0.08,0.97 +NHL 2004,PS2,2003,Sports,Electronic Arts,0.47,0.37,0,0.12,0.97 +Grand Theft Auto: Vice City Stories,PS2,2007,Action,Take-Two Interactive,0.78,0.03,0.03,0.13,0.97 +NBA 2K16,X360,2015,Sports,Take-Two Interactive,0.77,0.1,0,0.1,0.97 +FIFA Soccer 2005,XB,2004,Sports,Electronic Arts,0.33,0.6,0,0.04,0.97 +LEGO The Lord of the Rings,Wii,2012,Action,Warner Bros. Interactive Entertainment,0.52,0.37,0,0.08,0.97 +Romancing SaGa,SNES,1992,Role-Playing,SquareSoft,0,0,0.97,0,0.97 +Donkey Kong Junior,2600,1981,Platform,Atari,0.9,0.05,0,0.01,0.97 +LEGO Star Wars II: The Original Trilogy,GC,2006,Action,LucasArts,0.75,0.19,0,0.03,0.97 +LEGO Harry Potter: Years 5-7,PS3,,Action,Warner Bros. Interactive Entertainment,0.36,0.45,0,0.16,0.97 +Final Fantasy X / X-2 HD Remaster,PSV,2013,Role-Playing,Square Enix,0.21,0.31,0.28,0.16,0.97 +Medal of Honor: Underground,PS,2000,Shooter,Electronic Arts,0.54,0.37,0,0.06,0.97 +The Sims 2,DS,2005,Simulation,Electronic Arts,0.82,0.07,0,0.07,0.96 +Dark Cloud 2,PS2,2002,Role-Playing,Sony Computer Entertainment,0.38,0.25,0.26,0.07,0.96 +Jampack Summer '99,PS,1999,Misc,Sony Computer Entertainment,0.54,0.36,0,0.06,0.96 +PlayStation All-Stars Battle Royale,PS3,2012,Action,Sony Computer Entertainment,0.5,0.28,0.04,0.14,0.96 +Dance Dance Revolution 2nd ReMIX,PS,1999,Simulation,Konami Digital Entertainment,0,0,0.9,0.06,0.96 +Monster High: Ghoul Spirit,DS,2011,Misc,THQ,0.72,0.17,0,0.07,0.96 +Dragon Quest X,Wii,2012,Role-Playing,Square Enix,0,0,0.96,0,0.96 +LEGO Pirates of the Caribbean: The Video Game,DS,2011,Action,Disney Interactive Studios,0.37,0.49,0,0.1,0.96 +Gangs of London,PSP,2006,Adventure,Sony Computer Entertainment,0.3,0.44,0,0.22,0.96 +Mortal Kombat Trilogy,N64,1996,Fighting,GT Interactive,0.72,0.22,0,0.02,0.96 +Star Soldier,NES,1986,Shooter,Hudson Soft,0.32,0.06,0.57,0.01,0.96 +Sonic Unleashed,X360,2008,Platform,Sega,0.54,0.33,0,0.09,0.96 +Lost Planet 2,PS3,2010,Shooter,Capcom,0.29,0.34,0.2,0.13,0.96 +NHL 2001,PS2,2000,Sports,Electronic Arts,0.47,0.37,0,0.12,0.96 +Dragon Quest Monsters: Terry's Wonderland 3D,3DS,2012,Role-Playing,Square Enix,0,0,0.96,0,0.96 +My Weight Loss Coach,DS,2008,Sports,Ubisoft,0.3,0.54,0,0.11,0.96 +Tom Clancy's Ghost Recon: Future Soldier,PS3,2012,Shooter,Ubisoft,0.41,0.33,0.09,0.12,0.96 +Mega Man Star Force Dragon / Leo / Pegasus,DS,2006,Action,Capcom,0.39,0,0.53,0.03,0.96 +Shinobi,PS2,2002,Platform,Sony Computer Entertainment,0.36,0.28,0.22,0.09,0.96 +Mortal Kombat: Deadly Alliance,XB,2002,Fighting,Midway Games,0.77,0.15,0,0.04,0.96 +The Witcher 2: Assassins of Kings,PC,2011,Action,Namco Bandai Games,0.25,0.56,0,0.15,0.96 +PilotWings Resort,3DS,2011,Simulation,Nintendo,0.4,0.36,0.13,0.07,0.96 +Naruto Shippuden: Ultimate Ninja Storm 3,PS3,2013,Fighting,Namco Bandai Games,0.32,0.33,0.15,0.15,0.96 +LEGO Jurassic World,X360,2015,Action,Warner Bros. Interactive Entertainment,0.47,0.4,0,0.08,0.95 +ESPN NBA 2K5,XB,2004,Sports,Global Star,0.88,0.04,0,0.04,0.95 +Wheel of Fortune,PS2,,Misc,Unknown,0.47,0.36,0,0.12,0.95 +World Championship Poker,PS2,2004,Misc,Play It,0.8,0.03,0,0.13,0.95 +Tom Clancy's Splinter Cell: Chaos Theory,PS2,2005,Action,Ubisoft,0.36,0.45,0,0.14,0.95 +SpongeBob SquarePants: Battle for Bikini Bottom,GC,2003,Platform,THQ,0.74,0.19,0,0.03,0.95 +South Park: The Stick of Truth,X360,2014,Role-Playing,Ubisoft,0.57,0.3,0,0.08,0.95 +Ben 10: Alien Force,DS,2008,Action,Koch Media,0.65,0.22,0,0.09,0.95 +SingStar Abba,PS3,2008,Misc,Sony Computer Entertainment,0.27,0.51,0,0.17,0.95 +Cars 2,Wii,2011,Racing,Disney Interactive Studios,0.46,0.39,0,0.1,0.95 +Wild ARMs,PS,1996,Role-Playing,Sony Computer Entertainment,0.26,0.17,0.46,0.06,0.95 +Kessen,PS2,2000,Strategy,Electronic Arts,0.27,0.21,0.41,0.07,0.95 +Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel,GBA,2003,Misc,Konami Digital Entertainment,0.68,0.25,0,0.02,0.95 +NCAA Football 2000,PS,1999,Sports,Electronic Arts,0.53,0.36,0,0.06,0.95 +Brutal Legend,PS3,2009,Action,Electronic Arts,0.54,0.28,0,0.13,0.95 +Skylanders: Spyro's Adventure,PS3,2011,Action,Activision,0.39,0.4,0,0.16,0.95 +Guitar Hero: Metallica,Wii,2009,Misc,Activision,0.41,0.43,0,0.1,0.95 +Evolve,PS4,2015,Shooter,Take-Two Interactive,0.35,0.41,0.05,0.15,0.95 +WWE SmackDown vs. Raw 2009,PS3,2008,Fighting,THQ,0.51,0.31,0.01,0.13,0.95 +Army of Two: The 40th Day,X360,2010,Shooter,Electronic Arts,0.62,0.24,0,0.08,0.95 +Tony Hawk: RIDE,Wii,2009,Sports,Activision,0.7,0.17,0,0.08,0.95 +Lego Batman 3: Beyond Gotham,X360,2014,Action,Warner Bros. Interactive Entertainment,0.48,0.38,0,0.08,0.95 +Wii Play: Motion,Wii,2011,Misc,Nintendo,0.24,0.43,0.18,0.09,0.95 +Killzone,PS2,2004,Shooter,Sony Computer Entertainment,0.79,0.03,0,0.13,0.94 +The Tomb Raider Trilogy,PS3,2011,Action,Square Enix,0.27,0.5,0,0.17,0.94 +Colin McRae Rally 04,PS2,2003,Racing,Codemasters,0.01,0.71,0.01,0.21,0.94 +Star Fox 64 3D,3DS,2011,Shooter,Nintendo,0.48,0.27,0.13,0.07,0.94 +The SpongeBob SquarePants Movie,GC,2004,Platform,THQ,0.73,0.19,0,0.03,0.94 +Rocksmith 2014,X360,2013,Misc,Ubisoft,0.69,0.17,0,0.08,0.94 +Midway Presents Arcade's Greatest Hits: The Atari Collection 1,PS,1996,Misc,GT Interactive,0.52,0.36,0,0.06,0.94 +Cars,Wii,2006,Racing,THQ,0.83,0.04,0,0.07,0.94 +Assassin's Creed III,PC,2012,Action,Ubisoft,0.28,0.53,0,0.13,0.94 +Castlevania: Lament of Innocence,PS2,2003,Action,Konami Digital Entertainment,0.46,0.36,0,0.12,0.94 +Mario Tennis Open,3DS,2012,Sports,Nintendo,0.26,0.29,0.33,0.05,0.94 +The Witcher 2: Assassins of Kings,X360,2012,Action,Namco Bandai Games,0.48,0.36,0.02,0.08,0.94 +Bayonetta,X360,2009,Action,Sega,0.51,0.26,0.09,0.08,0.94 +Destroy All Humans!,PS2,2005,Shooter,THQ,0.78,0.03,0,0.13,0.94 +MVP Baseball 2005,XB,2005,Sports,Electronic Arts,0.7,0.2,0,0.03,0.94 +SaGa Frontier 2,PS,1999,Role-Playing,SquareSoft,0.1,0.07,0.71,0.06,0.94 +NCAA Football 10,X360,2009,Sports,Electronic Arts,0.87,0,0,0.07,0.94 +MLB 2000,PS,1999,Sports,Sony Computer Entertainment,0.52,0.35,0,0.06,0.94 +The Legend of Zelda: Twilight Princess HD,WiiU,2016,Action,Nintendo,0.48,0.3,0.08,0.08,0.94 +Bully,PS2,2006,Action,Take-Two Interactive,0.75,0.03,0.04,0.12,0.94 +Prince of Persia: The Sands of Time,XB,2003,Action,Ubisoft,0.57,0.33,0,0.04,0.94 +Phantasy Star Portable,PSP,2008,Role-Playing,Sega,0.19,0.06,0.63,0.05,0.94 +Hot Shots Golf Fore!,PS2,2003,Sports,Sony Computer Entertainment,0.46,0.36,0,0.12,0.94 +MLB 06: The Show,PS2,2006,Sports,Sony Computer Entertainment,0.78,0.03,0,0.13,0.94 +NHL 2003,PS2,2002,Sports,Electronic Arts,0.46,0.36,0,0.12,0.93 +Operation Flashpoint: Dragon Rising,X360,2009,Shooter,Codemasters,0.36,0.45,0.02,0.1,0.93 +Nickelodeon Fit,Wii,2010,Sports,Take-Two Interactive,0.78,0.09,0,0.06,0.93 +Buzz! Quiz World,PS3,2009,Misc,Sony Computer Entertainment,0.16,0.58,0,0.2,0.93 +Bentley's Hackpack,GBA,2005,Misc,,0.67,0.25,0,0.02,0.93 +Tony Hawk's Pro Skater 4,XB,2002,Sports,Activision,0.59,0.3,0,0.04,0.93 +Borderlands 2,PC,2012,Shooter,Take-Two Interactive,0.42,0.41,0,0.11,0.93 +EA Sports Grand Slam Tennis,Wii,2009,Sports,Electronic Arts,0.29,0.52,0.02,0.11,0.93 +White Knight Chronicles: International Edition,PS3,2008,Role-Playing,Sony Computer Entertainment,0.33,0.16,0.36,0.08,0.93 +SSX,PS3,2012,Sports,Electronic Arts,0.35,0.42,0.02,0.14,0.93 +Sonic Riders: Zero Gravity,Wii,2008,Racing,Sega,0.5,0.32,0.02,0.1,0.93 +LEGO Jurassic World,PS3,2015,Action,Warner Bros. Interactive Entertainment,0.34,0.44,0,0.15,0.93 +Build-A-Bear Workshop,DS,2007,Simulation,Game Factory,0.85,0.01,0,0.07,0.93 +Crash City Mayhem,GBA,2004,Racing,THQ,0.67,0.25,0,0.02,0.93 +Spider-Man,2600,1981,Action,Parker Bros.,0.87,0.05,0,0.01,0.93 +Mega Man 4,NES,1991,Platform,Capcom,0.51,0.09,0.32,0.01,0.93 +Castlevania II: Simon's Quest,NES,1987,Platform,Konami Digital Entertainment,0.45,0.06,0.42,0,0.93 +Toy Story 2: Buzz Lightyear to the Rescue!,N64,1999,Platform,Activision,0.71,0.2,0,0.01,0.93 +Teenage Mutant Ninja Turtles,GBA,2003,Action,Unknown,0.67,0.25,0,0.02,0.93 +MLB 07: The Show,PS2,2007,Sports,Sony Computer Entertainment,0.77,0.03,0,0.13,0.93 +Skylanders: Trap Team,X360,2014,Action,Activision,0.54,0.31,0,0.08,0.93 +Cars,GC,2006,Racing,THQ,0.72,0.19,0,0.03,0.93 +Brothers in Arms: Hell's Highway,PS3,2008,Shooter,Ubisoft,0.44,0.34,0,0.15,0.93 +Inazuma Eleven 3,DS,2010,Role-Playing,Level 5,0,0,0.93,0,0.93 +Pokken Tournament,WiiU,2016,Fighting,Namco Bandai Games,0.47,0.22,0.16,0.07,0.93 +SnoCross Championship Racing,PS,1999,Racing,Ubisoft,0.52,0.35,0,0.06,0.93 +Teenage Mutant Ninja Turtles,PS2,2003,Action,Konami Digital Entertainment,0.45,0.35,0,0.12,0.92 +Top Gun: Combat Zones,PS2,2001,Simulation,Titus,0.45,0.35,0,0.12,0.92 +Blue Dragon,X360,2006,Role-Playing,Microsoft Game Studios,0.3,0.33,0.21,0.08,0.92 +007: The World is not Enough,PS,2000,Action,Electronic Arts,0.51,0.35,0,0.06,0.92 +NCAA Football 11,X360,2010,Sports,Electronic Arts,0.86,0,0,0.06,0.92 +NHL 98,PS,1997,Sports,Electronic Arts,0.51,0.35,0,0.06,0.92 +FIFA Street,X360,2012,Sports,Electronic Arts,0.17,0.65,0,0.1,0.92 +EA Sports Active 2,PS3,2010,Sports,Electronic Arts,0.52,0.28,0,0.12,0.92 +SpongeBob SquarePants: The Yellow Avenger,PSP,2006,Action,THQ,0.55,0.21,0,0.16,0.92 +WWE SmackDown vs. Raw 2009,X360,2008,Fighting,THQ,0.58,0.26,0,0.08,0.92 +Dante's Inferno,X360,2010,Action,Electronic Arts,0.63,0.2,0.02,0.07,0.92 +Wipeout: In The Zone,X360,2011,Misc,Activision,0.87,0,0,0.05,0.92 +Space Jam,PS,1996,Sports,Acclaim Entertainment,0.51,0.35,0,0.06,0.92 +Kung Fu Panda,Wii,2008,Action,Activision,0.5,0.32,0,0.09,0.92 +Knockout Kings 2000,N64,1999,Fighting,Electronic Arts,0.63,0.27,0,0.02,0.92 +Balloon Fight,NES,1985,Platform,Nintendo,0.39,0.09,0.43,0.01,0.92 +Assassin's Creed,PC,2008,Adventure,Ubisoft,0.01,0.83,0,0.08,0.92 +Disney Magical World,3DS,2013,Adventure,Nintendo,0.16,0.2,0.53,0.03,0.92 +Crysis 3,X360,2013,Shooter,Electronic Arts,0.51,0.33,0.01,0.08,0.92 +Lego Batman 3: Beyond Gotham,PS4,2014,Action,Warner Bros. Interactive Entertainment,0.37,0.39,0,0.15,0.92 +Dynasty Warriors 7,PS3,2011,Action,Tecmo Koei,0.25,0.14,0.46,0.06,0.92 +The Evil Within,PS3,2014,Action,Bethesda Softworks,0.26,0.39,0.12,0.14,0.92 +MLB 12: The Show,PS3,2012,Sports,Sony Computer Entertainment,0.86,0,0,0.06,0.92 +Sonic Riders,GC,2006,Racing,Sega,0.71,0.18,0,0.03,0.92 +Starsky & Hutch,PS2,2003,Racing,Empire Interactive,0.45,0.35,0,0.12,0.92 +Tobal No.1,PS,1996,Fighting,Sony Computer Entertainment,0.12,0.08,0.66,0.06,0.92 +Lost Odyssey,X360,2007,Role-Playing,Microsoft Game Studios,0.45,0.27,0.11,0.09,0.92 +MLB 15: The Show,PS4,2015,Sports,Sony Computer Entertainment,0.67,0.08,0,0.17,0.92 +Operation Flashpoint: Dragon Rising,PS3,2009,Shooter,Codemasters,0.23,0.46,0.05,0.17,0.92 +Homefront,PS3,2011,Shooter,THQ,0.32,0.4,0.04,0.15,0.91 +AMF Bowling Pinbusters!,Wii,2007,Sports,Bethesda Softworks,0.85,0,0,0.07,0.91 +Street Hoops,PS2,2002,Sports,Activision,0.45,0.35,0,0.12,0.91 +Avatar: The Game,PS3,2009,Action,Ubisoft,0.32,0.43,0,0.16,0.91 +Harvest Moon 3D: A New Beginning,3DS,2012,Action,Marvelous Entertainment,0.41,0.17,0.29,0.05,0.91 +Tom Clancy's EndWar,X360,2008,Strategy,Ubisoft,0.58,0.24,0.01,0.09,0.91 +Knockout Kings 2002,PS2,2002,Sports,Electronic Arts,0.45,0.35,0,0.12,0.91 +Tokyo Xtreme Racer 3,PS2,2003,Racing,Genki,0.35,0.27,0.21,0.09,0.91 +LEGO Indiana Jones 2: The Adventure Continues,PS3,2009,Action,Activision,0.47,0.3,0,0.13,0.91 +Colin McRae Rally 2.0,PS,2000,Racing,Codemasters,0.02,0.8,0.02,0.07,0.91 +Glover,N64,1998,Platform,Hasbro Interactive,0.72,0.17,0,0.01,0.91 +MX vs. ATV Reflex,PS3,2009,Racing,THQ,0.52,0.26,0,0.12,0.91 +Minecraft: Story Mode,X360,2015,Adventure,Mojang,0.46,0.38,0,0.08,0.91 +Namco Museum,XB,,Misc,Unknown,0.77,0.11,0,0.04,0.91 +Marvel: Ultimate Alliance 2,X360,2009,Role-Playing,Activision,0.68,0.15,0,0.08,0.91 +Call of Duty: World at War,DS,2008,Shooter,Activision,0.57,0.26,0,0.08,0.91 +Super Momotarou Dentetsu III,SNES,1994,Simulation,Hudson Soft,0,0,0.91,0,0.91 +Sonic Mega Collection Plus,XB,2004,Misc,Sega,0.61,0.26,0,0.04,0.91 +DJ Hero,PS3,2009,Misc,Activision,0.42,0.34,0,0.14,0.91 +Dragon Age: Inquisition,XOne,2014,Role-Playing,Electronic Arts,0.55,0.28,0,0.07,0.91 +The Simpsons Game,PS3,2007,Action,Electronic Arts,0.38,0.37,0,0.15,0.91 +Tiger Woods PGA Tour 2002,PS2,2002,Sports,Electronic Arts,0.44,0.35,0,0.12,0.9 +Rhythm Heaven,Wii,,Misc,Unknown,0.13,0,0.77,0.01,0.9 +Mini-Yonku Shining Scorpion: Let's & Go!!,SNES,1996,Racing,ASCII Entertainment,0,0,0.9,0,0.9 +MLB 2005,PS2,2004,Sports,Sony Computer Entertainment,0.44,0.35,0,0.12,0.9 +SOCOM 4: U.S. Navy SEALs,PS3,2011,Shooter,Sony Computer Entertainment,0.66,0.12,0.04,0.08,0.9 +Burnout Revenge,PS2,2005,Racing,Electronic Arts,0.75,0.03,0,0.12,0.9 +Buzz! Quiz TV,PS3,2008,Misc,Sony Computer Entertainment,0.28,0.48,0,0.14,0.9 +We Ski & Snowboard,Wii,2008,Sports,Atari,0.38,0.29,0.15,0.08,0.9 +Destruction Derby,PS,1995,Racing,Psygnosis,0.5,0.34,0,0.06,0.9 +TouchMaster 2,DS,2008,Puzzle,Midway Games,0.3,0.49,0,0.1,0.9 +Crysis 3,PS3,2013,Shooter,Electronic Arts,0.26,0.43,0.03,0.18,0.9 +3Xtreme,PS,1999,Action,989 Studios,0.5,0.34,0,0.06,0.9 +Hot Shots Tennis,PS2,2006,Sports,Sony Computer Entertainment,0.17,0.13,0.55,0.05,0.9 +Sonic Heroes,XB,2003,Platform,Sega,0.41,0.43,0.01,0.05,0.9 +Resistance: Retribution,PSP,2009,Shooter,Sony Computer Entertainment,0.27,0.36,0.05,0.22,0.9 +Tiger Woods PGA Tour 12: The Masters,PS3,2011,Sports,Electronic Arts,0.52,0.26,0,0.12,0.9 +Star Wars: The Force Unleashed,DS,2008,Action,LucasArts,0.51,0.29,0,0.09,0.9 +Madden NFL 99,N64,1998,Sports,Electronic Arts,0.84,0.05,0,0.01,0.9 +Spider-Man 3,PS2,2007,Platform,Activision,0.74,0.03,0.01,0.12,0.9 +James Bond 007: Agent Under Fire,XB,2002,Shooter,Electronic Arts,0.65,0.22,0,0.03,0.9 +Samba De Amigo,Wii,2008,Misc,Sega,0.42,0.37,0.01,0.1,0.9 +The Elder Scrolls Online,PC,2014,Role-Playing,Bethesda Softworks,0.32,0.48,0,0.09,0.9 +Pure,PS3,2008,Racing,Disney Interactive Studios,0.42,0.33,0,0.14,0.9 +FIFA Soccer 09 All-Play,Wii,2008,Sports,Electronic Arts,0.29,0.52,0,0.09,0.9 +Fossil Fighters,DS,2008,Role-Playing,Nintendo,0.84,0,0,0.06,0.9 +LittleBigPlanet Karting,PS3,2012,Action,Sony Computer Entertainment,0.42,0.32,0.01,0.15,0.9 +X-Men Legends,XB,2004,Role-Playing,Activision,0.62,0.24,0,0.04,0.9 +NBA Live 2005,XB,2004,Sports,Electronic Arts,0.81,0.05,0,0.04,0.9 +Harry Potter: Quidditch World Cup,PS2,2003,Sports,Electronic Arts,0.44,0.34,0,0.11,0.9 +The Biggest Loser: Ultimate Workout,X360,2010,Sports,THQ,0.73,0.1,0,0.06,0.9 +Madagascar,GBA,2005,Platform,Activision,0.62,0.24,0,0.03,0.89 +Call of Juarez: Bound in Blood,PS3,2009,Shooter,Ubisoft,0.35,0.38,0.01,0.16,0.89 +Killzone: Liberation,PSP,2006,Shooter,Sony Computer Entertainment,0.44,0.28,0,0.18,0.89 +Madden NFL 08,Wii,2007,Sports,Electronic Arts,0.82,0.01,0,0.07,0.89 +Blitz: The League,PS2,2005,Sports,Unknown,0.74,0.03,0,0.12,0.89 +LEGO Jurassic World,PS4,2015,Action,Warner Bros. Interactive Entertainment,0.32,0.42,0.01,0.14,0.89 +Castlevania: Circle of the Moon,GBA,2001,Platform,Konami Digital Entertainment,0.6,0.22,0.05,0.02,0.89 +Sonic Chronicles: The Dark Brotherhood,DS,2008,Role-Playing,Sega,0.51,0.29,0.01,0.09,0.89 +Tiger Woods PGA Tour 06,PS2,2005,Sports,Electronic Arts,0.74,0.03,0,0.12,0.89 +Classic NES Series: The Legend of Zelda,GBA,2004,Adventure,Nintendo,0.46,0.17,0.24,0.02,0.89 +The Jak and Daxter Collection,PS3,2012,Platform,Sony Computer Entertainment,0.6,0.19,0,0.1,0.89 +Fire Emblem: The Sacred Stones,GBA,2004,Strategy,Nintendo,0.42,0.16,0.3,0.02,0.89 +Pokemon Card GB2: Here Comes Team GR!,GB,2001,Strategy,Nintendo,0,0,0.89,0,0.89 +Finding Nemo,GC,2003,Action,THQ,0.69,0.18,0,0.02,0.89 +CSI: Hard Evidence,Wii,2008,Adventure,Ubisoft,0.36,0.43,0,0.1,0.89 +Ace Combat 2,PS,1997,Simulation,Sony Computer Entertainment,0.16,0.11,0.56,0.06,0.89 +F1 2009,Wii,2009,Racing,Codemasters,0.15,0.63,0,0.11,0.89 +NFL 2K2,PS2,2001,Sports,Sega,0.44,0.34,0,0.11,0.89 +EA Sports UFC 2,PS4,2016,Sports,Electronic Arts,0.28,0.47,0,0.14,0.89 +Dissidia 012: Duodecim Final Fantasy,PSP,2011,Fighting,Square Enix,0.21,0.13,0.46,0.08,0.89 +LEGO Marvel Super Heroes,3DS,2013,Action,Warner Bros. Interactive Entertainment,0.42,0.36,0.04,0.07,0.89 +F1 2010,X360,2010,Racing,Codemasters,0.18,0.59,0.01,0.1,0.89 +Monster 4X4: World Circuit,Wii,2006,Racing,Ubisoft,0.81,0,0.01,0.07,0.89 +Call of Duty: Modern Warfare 2,PC,2009,Shooter,Activision,0.01,0.79,0,0.09,0.89 +Wii Fit U,WiiU,2013,Sports,Nintendo,0.39,0.24,0.21,0.06,0.89 +Kingdoms of Amalur: Reckoning,X360,2012,Role-Playing,Electronic Arts,0.55,0.25,0.01,0.07,0.89 +Call of Duty: Modern Warfare 3,Wii,2011,Shooter,Activision,0.6,0.21,0,0.08,0.89 +MLB 2001,PS,2000,Sports,Sony Computer Entertainment,0.49,0.34,0,0.06,0.89 +SingStar Anthems,PS2,2006,Misc,Sony Computer Entertainment,0,0.68,0,0.2,0.89 +Seiken Densetsu 3,SNES,1995,Role-Playing,SquareSoft,0,0,0.89,0,0.89 +Mega Man 8 Anniversary Collector's Edition,PS,1996,Platform,Capcom,0.44,0.3,0.09,0.06,0.88 +WWE SmackDown vs. Raw 2011,X360,2010,Fighting,THQ,0.44,0.36,0,0.08,0.88 +Sleeping Dogs,X360,2012,Action,Square Enix,0.38,0.41,0.01,0.08,0.88 +Grand Theft Auto IV,PC,2008,Action,Take-Two Interactive,0.01,0.79,0,0.08,0.88 +Peppa Pig: The Game,DS,2008,Misc,Pinnacle,0,0.82,0,0.06,0.88 +Michael Jackson: The Experience,X360,2011,Misc,Ubisoft,0.62,0.2,0,0.07,0.88 +Ghostbusters: The Video Game,Wii,2009,Action,Atari,0.6,0.21,0,0.08,0.88 +Rock Band 3,X360,2010,Misc,MTV Games,0.73,0.1,0,0.06,0.88 +Resident Evil: Revelations,3DS,2012,Action,Capcom,0.3,0.22,0.3,0.05,0.88 +NBA 2K6,PS2,2005,Action,Take-Two Interactive,0.43,0.34,0,0.11,0.88 +Buzz! The Mega Quiz,PS2,2007,Misc,Sony Computer Entertainment,0.32,0.06,0,0.5,0.88 +Endless Ocean: Blue World,Wii,2009,Simulation,Nintendo,0.47,0.22,0.12,0.07,0.88 +Star Wars: Rebel Assault II - The Hidden Empire,PS,1996,Shooter,CTO SpA,0.49,0.33,0,0.06,0.88 +Just Cause 3,XOne,2015,Action,Square Enix,0.42,0.38,0,0.07,0.88 +Metal Gear Ac!d,PSP,2004,Strategy,Konami Digital Entertainment,0.32,0.26,0.12,0.17,0.88 +Cooking Mama: World Kitchen,Wii,2008,Simulation,505 Games,0.51,0.28,0.01,0.08,0.88 +Tekken Tag Tournament 2,PS3,2012,Fighting,Namco Bandai Games,0.28,0.33,0.13,0.14,0.88 +ESPN NHL 2K5,PS2,2004,Sports,Global Star,0.43,0.33,0,0.11,0.88 +GRID,X360,2008,Racing,Codemasters,0.33,0.44,0.01,0.09,0.88 +Phantasy Star Portable 2,PSP,2009,Role-Playing,Sega,0.08,0.11,0.62,0.06,0.88 +Crimson Skies: High Road to Revenge,XB,2003,Simulation,Microsoft Game Studios,0.65,0.19,0,0.03,0.87 +Spec Ops: Ranger Elite,PS,2001,Shooter,TalonSoft,0.49,0.33,0,0.06,0.87 +Gex,PS,1995,Platform,Crystal Dynamics,0.49,0.33,0,0.06,0.87 +NBA 2K14,XOne,2013,Sports,Take-Two Interactive,0.7,0.11,0,0.06,0.87 +DiRT,X360,2007,Racing,Codemasters,0.38,0.4,0,0.09,0.87 +Derby Stallion II,SNES,1994,Sports,ASCII Entertainment,0,0,0.87,0,0.87 +Gold's Gym: Dance Workout,Wii,2010,Sports,Ubisoft,0.71,0.11,0,0.06,0.87 +Red Faction: Guerrilla,X360,2009,Shooter,THQ,0.48,0.29,0.01,0.09,0.87 +Tom Clancy's Ghost Recon: Island Thunder,XB,2003,Shooter,Ubisoft,0.61,0.24,0,0.03,0.87 +Mercenaries 2: World in Flames,PS3,2008,Shooter,Electronic Arts,0.29,0.4,0.02,0.16,0.87 +Need for Speed: V-Rally,PS,1997,Racing,Infogrames,0.43,0.29,0.09,0.06,0.87 +Kingdom Hearts Re: Chain of Memories,PS2,2008,Role-Playing,Square Enix,0.73,0.03,0,0.12,0.87 +Pictionary,Wii,2010,Puzzle,THQ,0.61,0.19,0,0.07,0.87 +NCAA Football 13,PS3,2012,Action,Electronic Arts,0.82,0,0,0.06,0.87 +Kingdoms of Amalur: Reckoning,PS3,2012,Role-Playing,Electronic Arts,0.37,0.3,0.09,0.11,0.87 +NFL GameDay '97,PS,1996,Sports,Sony Computer Entertainment,0.48,0.33,0,0.06,0.87 +Beijing 2008,PS3,2008,Sports,Sega,0.14,0.54,0.01,0.18,0.87 +The House of the Dead: Overkill,Wii,2009,Shooter,Sega,0.46,0.31,0.02,0.09,0.87 +Tony Hawk's Project 8,PS2,2006,Sports,Activision,0.72,0.03,0,0.12,0.87 +Injustice: Gods Among Us,PS4,2013,Fighting,Warner Bros. Interactive Entertainment,0.46,0.29,0,0.12,0.87 +NHL 2000,PS,1998,Sports,Electronic Arts,0.48,0.33,0,0.06,0.87 +Buzz! Master Quiz,PSP,2008,Misc,Sony Computer Entertainment,0.2,0.44,0,0.23,0.87 +Brothers in Arms: Hell's Highway,X360,2008,Shooter,Ubisoft,0.47,0.31,0,0.09,0.87 +Fight Night Round 2,PS2,2005,Fighting,Electronic Arts,0.72,0.03,0,0.12,0.87 +Wizards of Waverly Place,DS,2009,Misc,Disney Interactive Studios,0.59,0.2,0,0.08,0.87 +Scooby-Doo! First Frights,DS,2009,Action,Warner Bros. Interactive Entertainment,0.63,0.17,0,0.07,0.87 +Conflict: Desert Storm,XB,2002,Shooter,SCi,0.48,0.37,0,0.02,0.87 +Triple Play 2002,PS2,2002,Sports,Electronic Arts,0.43,0.33,0,0.11,0.87 +Vagrant Story,PS,2000,Role-Playing,Crave Entertainment,0.3,0.2,0.3,0.06,0.87 +Lemmings,PSP,2006,Puzzle,Sony Computer Entertainment,0.12,0.52,0,0.23,0.87 +Warriors Orochi,PS2,2007,Action,Tecmo Koei,0.11,0.09,0.64,0.03,0.87 +Guitar Hero: Warriors of Rock,X360,2010,Misc,Activision,0.47,0.32,0,0.08,0.87 +Enduro,2600,1982,Misc,Quelle,0.81,0.05,0,0.01,0.87 +Tales of Xillia 2,PS3,2012,Role-Playing,Namco Bandai Games,0.2,0.15,0.45,0.07,0.87 +SingStar '90s,PS2,2007,Misc,Sony Computer Entertainment,0.1,0.59,0,0.18,0.87 +Monster Strike 3DS,3DS,2015,Action,"mixi, Inc",0,0,0.86,0,0.86 +Tomb Raider: Anniversary,Wii,2007,Action,Eidos Interactive,0.12,0.63,0,0.11,0.86 +Winning Eleven: Pro Evolution Soccer 2007,PSP,2006,Sports,Konami Digital Entertainment,0.01,0.72,0.12,0.01,0.86 +Darksiders II,PS3,2012,Action,THQ,0.35,0.37,0.01,0.14,0.86 +Ghostbusters: The Video Game,PS3,2009,Action,Sony Computer Entertainment,0.34,0.37,0,0.15,0.86 +The World Ends With You,DS,2007,Role-Playing,Square Enix,0.54,0.06,0.21,0.05,0.86 +The Lord of the Rings: War in the North,PS3,,Action,Warner Bros. Interactive Entertainment,0.25,0.45,0.01,0.15,0.86 +Rocky,PS2,2002,Fighting,Rage Software,0.42,0.33,0,0.11,0.86 +Dragon Quest VIII: Journey of the Cursed King,3DS,2015,Role-Playing,Square Enix,0,0,0.86,0,0.86 +Ford Racing,PS,2001,Racing,Empire Interactive,0.48,0.33,0,0.06,0.86 +Madden Football 64,N64,1997,Sports,Electronic Arts,0.81,0.04,0,0.01,0.86 +MLB 99,PS,1998,Sports,Sony Computer Entertainment,0.48,0.32,0,0.06,0.86 +Dragon Ball Z: Burst Limit,PS3,2008,Fighting,Atari,0.22,0.34,0.18,0.12,0.86 +The Lord of the Rings: War in the North,X360,,Action,Warner Bros. Interactive Entertainment,0.52,0.26,0,0.08,0.86 +The Legendary Starfy,DS,2008,Platform,Nintendo,0.61,0,0.2,0.05,0.86 +2010 FIFA World Cup South Africa,X360,2010,Sports,Electronic Arts,0.32,0.43,0.02,0.09,0.86 +Dynasty Warriors 4: Xtreme Legends,PS2,2003,Action,Tecmo Koei,0.17,0.13,0.51,0.04,0.86 +Ninja Gaiden Sigma 2,PS3,2009,Action,Ubisoft Annecy,0.52,0.16,0.08,0.1,0.86 +Forza Horizon 2,X360,2014,Racing,Microsoft Game Studios,0.35,0.43,0,0.07,0.85 +Skate 2,PS3,2009,Sports,Electronic Arts,0.46,0.26,0.01,0.12,0.85 +FIFA Soccer 08,DS,2007,Sports,Electronic Arts,0.1,0.65,0,0.11,0.85 +Army Men: Air Attack,PS,1999,Action,3DO,0.47,0.32,0,0.06,0.85 +Need for Speed: Nitro,Wii,2009,Racing,Electronic Arts,0.46,0.31,0,0.08,0.85 +Madden NFL 09 All-Play,Wii,2008,Sports,Electronic Arts,0.78,0.01,0,0.07,0.85 +NBA 2K8,X360,2007,Sports,Take-Two Interactive,0.79,0,0,0.07,0.85 +Far Cry: Primal,XOne,2016,Action,Ubisoft,0.46,0.32,0,0.07,0.85 +Street Fighter Alpha 2,PS,1996,Fighting,Virgin Interactive,0.14,0.09,0.57,0.06,0.85 +Tiger Woods PGA Tour 2005,XB,2004,Sports,Electronic Arts,0.64,0.18,0,0.03,0.85 +Army of Two: The 40th Day,PS3,2010,Shooter,Electronic Arts,0.44,0.27,0.01,0.12,0.85 +Blazing Angels: Squadrons of WWII,Wii,2007,Simulation,Ubisoft,0.74,0.04,0,0.06,0.85 +Castlevania III: Dracula's Curse,NES,1989,Platform,Konami Digital Entertainment,0.4,0.07,0.37,0.01,0.85 +Harry Potter and the Order of the Phoenix,DS,2007,Action,Electronic Arts,0.28,0.47,0,0.1,0.85 +Rampage World Tour,PS,1997,Action,GT Interactive,0.47,0.32,0,0.06,0.85 +Burnout Legends,PSP,2005,Racing,Electronic Arts,0.7,0.06,0,0.09,0.85 +WWE 2K15,PS3,2014,Sports,Take-Two Interactive,0.36,0.35,0,0.14,0.85 +Overwatch,XOne,2016,Shooter,Activision,0.52,0.25,0,0.08,0.85 +Ratatouille,PS2,2007,Action,THQ,0.31,0,0,0.53,0.85 +NFL GameDay,PS,1995,Sports,Sony Computer Entertainment,0.47,0.32,0,0.06,0.85 +Burnout 2: Point of Impact,PS2,2002,Racing,Acclaim Entertainment,0.42,0.32,0,0.11,0.85 +Kirby: Planet Robobot,3DS,2016,Action,Nintendo,0.26,0.1,0.44,0.04,0.85 +Street Fighter EX3,PS2,2000,Fighting,Virgin Interactive,0.32,0.25,0.2,0.08,0.85 +Karaoke Revolution Glee,Wii,2010,Misc,Konami Digital Entertainment,0.52,0.25,0,0.07,0.85 +Sniper Elite V2,X360,2012,Shooter,505 Games,0.46,0.29,0.02,0.07,0.85 +Thief (2014),PS4,2014,Action,Square Enix,0.28,0.37,0.03,0.16,0.84 +Spider-Man 2,GC,2004,Action,Activision,0.65,0.17,0,0.02,0.84 +Golden Sun: Dark Dawn,DS,2010,Role-Playing,Nintendo,0.56,0.11,0.13,0.05,0.84 +Tiger Woods PGA Tour 11,PS3,2010,Sports,Electronic Arts,0.37,0.34,0,0.13,0.84 +Devil May Cry HD Collection,PS3,2012,Action,Capcom,0.42,0.21,0.11,0.1,0.84 +MLB 16: The Show,PS4,2016,Action,Sony Computer Entertainment,0.68,0,0,0.16,0.84 +NBA 2K10,PS3,2009,Sports,Take-Two Interactive,0.75,0.01,0.01,0.07,0.84 +Xenoblade Chronicles X,WiiU,2015,Role-Playing,Nintendo,0.36,0.28,0.14,0.06,0.84 +Petz Dogz Fashion,DS,2008,Simulation,Ubisoft,0.46,0.3,0,0.09,0.84 +The Incredibles,GC,2004,Action,THQ,0.65,0.17,0,0.02,0.84 +NCAA Football 11,PS3,2010,Sports,Electronic Arts,0.79,0,0,0.06,0.84 +Dragon Age II,PS3,2011,Action,Electronic Arts,0.4,0.27,0.05,0.12,0.84 +ATV Quad Power Racing 2,PS2,2003,Racing,Acclaim Entertainment,0.41,0.32,0,0.11,0.84 +Harvest Moon: Tree of Tranquility,Wii,2007,Simulation,Rising Star Games,0.69,0.03,0.06,0.06,0.84 +Final Fantasy,NES,1987,Role-Playing,SquareSoft,0.32,0,0.52,0,0.84 +Street Fighter X Tekken,PS3,2012,Fighting,Capcom,0.42,0.22,0.1,0.1,0.84 +Rocket Power: Team Rocket Rescue,PS,2001,Sports,THQ,0.47,0.32,0,0.05,0.84 +Duke Nukem Forever,X360,2011,Shooter,Take-Two Interactive,0.52,0.25,0,0.07,0.84 +Big Mutha Truckers,PS2,2002,Racing,Empire Interactive,0.41,0.32,0,0.11,0.84 +Borderlands: The Handsome Collection,PS4,2015,Shooter,Take-Two Interactive,0.36,0.32,0.03,0.14,0.84 +Rogue Galaxy,PS2,2005,Role-Playing,Sony Computer Entertainment,0.24,0.16,0.39,0.05,0.84 +ESPN College Hoops 2K5,PS2,2004,Sports,Sega,0.41,0.32,0,0.11,0.84 +Metroid: Zero Mission,GBA,2004,Adventure,Nintendo,0.6,0.22,0,0.01,0.84 +FIFA 15,PSV,2014,Sports,Electronic Arts,0.13,0.48,0.04,0.19,0.84 +Time Crisis 4,PS3,2007,Shooter,Namco Bandai Games,0.32,0.33,0.05,0.14,0.84 +Ben 10: Protector of Earth,PS2,2007,Action,D3Publisher,0.09,0,0,0.74,0.84 +Need for Speed Rivals,X360,2013,Racing,Electronic Arts,0.37,0.38,0.01,0.08,0.84 +Q*bert,PS,1999,Puzzle,Atari,0.46,0.32,0,0.05,0.84 +WWE SmackDown vs. Raw 2009,Wii,2008,Fighting,THQ,0.44,0.31,0,0.08,0.83 +Ace Combat 3: Electrosphere,PS,1999,Simulation,Sony Computer Entertainment,0.22,0.15,0.4,0.05,0.83 +Dynasty Warriors 2,PS2,2000,Action,THQ,0.24,0.19,0.34,0.06,0.83 +Battle of Giants: Dinosaurs,DS,2008,Strategy,Ubisoft,0.38,0.37,0,0.09,0.83 +Madden NFL 07,PSP,,Sports,Unknown,0.77,0.03,0,0.04,0.83 +Lizzie McGuire 2: Lizzie Diaries,GBA,2004,Action,Disney Interactive Studios,0.6,0.22,0,0.01,0.83 +Borderlands 2,PSV,2014,Shooter,Take-Two Interactive,0.43,0.21,0.01,0.19,0.83 +FIFA Soccer World Championship,PS2,2000,Sports,Electronic Arts,0.27,0.21,0.28,0.07,0.83 +Brute Force,XB,2003,Shooter,Microsoft Game Studios,0.62,0.18,0.01,0.03,0.83 +Dance Central 3,X360,2012,Misc,Microsoft Game Studios,0.57,0.2,0,0.06,0.83 +Yu-Gi-Oh! Dark Duel Stories,GB,2000,Misc,Konami Digital Entertainment,0,0,0.83,0,0.83 +The Game of Life,PS,1998,Misc,Unknown,0.46,0.31,0,0.05,0.83 +Mega Man Legends,PS,1997,Adventure,Capcom,0.39,0.26,0.12,0.05,0.83 +NCAA Football 12,PS3,2011,Sports,Electronic Arts,0.78,0,0,0.05,0.83 +Sly 3: Honor Among Thieves,PS2,2005,Platform,Sony Computer Entertainment,0.69,0.03,0,0.11,0.83 +The Price is Right,Wii,2008,Misc,Ubisoft,0.77,0,0,0.06,0.83 +Sid Meier's Civilization Revolution,X360,2008,Strategy,Take-Two Interactive,0.58,0.17,0,0.07,0.83 +MLB SlugFest 20-03,PS2,,Sports,Unknown,0.41,0.32,0,0.11,0.83 +I Spy: Fun House,DS,2007,Puzzle,Scholastic Inc.,0.77,0,0,0.06,0.83 +The Amazing Spider-Man (Console Version),PS3,2012,Action,Activision,0.31,0.37,0,0.14,0.83 +Dragon Ball: Raging Blast 2,PS3,2010,Fighting,Namco Bandai Games,0.42,0.2,0.11,0.09,0.83 +MediEvil,PS,1998,Platform,Sony Computer Entertainment,0.46,0.31,0,0.05,0.83 +Casper,PS,1996,Adventure,Interplay,0.46,0.31,0,0.05,0.83 +Deca Sports 2,Wii,2009,Sports,Hudson Soft,0.33,0.34,0.09,0.07,0.82 +James Bond 007: Nightfire,XB,2002,Shooter,Electronic Arts,0.58,0.22,0,0.03,0.82 +Madden NFL 17,XOne,2016,Sports,Electronic Arts,0.72,0.02,0,0.09,0.82 +Tony Hawk's Underground 2 Remix,PSP,2005,Sports,Activision,0.46,0.21,0,0.15,0.82 +Tony Hawk's Pro Skater 3,GC,2001,Sports,Activision,0.64,0.17,0,0.02,0.82 +Marvel: Ultimate Alliance,PS2,2006,Role-Playing,Activision,0.69,0.03,0,0.11,0.82 +Star Wars The Clone Wars: Republic Heroes,Wii,2009,Action,LucasArts,0.44,0.3,0,0.08,0.82 +DJ Hero 2,X360,2010,Misc,Activision,0.64,0.12,0,0.06,0.82 +Street Fighter V,PS4,2016,Fighting,Capcom,0.35,0.26,0.08,0.13,0.82 +Need for Speed: Hot Pursuit 2,XB,2002,Racing,Electronic Arts,0.68,0.11,0,0.03,0.82 +Clu Clu Land,NES,1984,Puzzle,Nintendo,0.42,0.1,0.28,0.02,0.82 +Killer Instinct Gold,N64,1996,Fighting,Nintendo,0.61,0.19,0,0.01,0.82 +Amped: Freestyle Snowboarding,XB,2001,Sports,Microsoft Game Studios,0.69,0.11,0,0.02,0.82 +Custer's Revenge,2600,1981,Action,Mystique,0.76,0.05,0,0.01,0.82 +MediEvil: Resurrection,PSP,2005,Adventure,Sony Computer Entertainment,0.19,0.41,0,0.22,0.82 +DmC: Devil May Cry,PS3,2013,Action,Capcom,0.24,0.28,0.19,0.12,0.82 +Tales of the Abyss,3DS,2011,Role-Playing,Namco Bandai Games,0.42,0.19,0.14,0.06,0.82 +Rocket Power: Beach Bandits,PS2,2002,Platform,THQ,0.4,0.31,0,0.1,0.82 +Guitar Hero: Warriors of Rock,PS3,2010,Misc,Activision,0.33,0.35,0,0.14,0.82 +Hasbro Family Game Night 3,Wii,2010,Misc,Electronic Arts,0.47,0.28,0,0.07,0.82 +Madden NFL 16,PS3,2015,Sports,Electronic Arts,0.56,0.11,0,0.15,0.82 +Stranglehold,X360,2007,Shooter,Midway Games,0.4,0.33,0.01,0.09,0.82 +Imagine: Rock Star,DS,2008,Simulation,Ubisoft,0.4,0.33,0,0.09,0.82 +Shin Megami Tensei: Persona 4,PS2,2008,Role-Playing,Atlus,0.34,0.04,0.36,0.08,0.82 +SingStar Vol. 2,PS3,2008,Misc,Sony Computer Entertainment,0.29,0.4,0,0.13,0.82 +Shaun White Snowboarding,X360,,Sports,Ubisoft,0.48,0.26,0,0.08,0.82 +Madden NFL 25,PS4,2013,Sports,Electronic Arts,0.62,0.13,0,0.07,0.82 +Twisted Metal (2012),PS3,2012,Action,Sony Computer Entertainment,0.67,0.07,0,0.07,0.82 +Dragon Warrior III,GB,2000,Role-Playing,Enix Corporation,0,0,0.81,0,0.81 +Disney's The Little Mermaid: Ariel's Undersea Adventure,DS,2006,Action,Disney Interactive Studios,0.73,0.03,0,0.06,0.81 +Ready 2 Rumble Boxing: Round 2,PS2,2000,Fighting,Midway Games,0.4,0.31,0,0.1,0.81 +Kamaitachi no Yoru,SNES,1994,Adventure,ChunSoft,0,0,0.81,0,0.81 +Patapon,PSP,2007,Misc,Sony Computer Entertainment,0.33,0.25,0.07,0.17,0.81 +Tales of Destiny II,PS,2000,Role-Playing,Namco Bandai Games,0.06,0.04,0.66,0.05,0.81 +Super Bomberman 2,SNES,1994,Puzzle,Hudson Soft,0,0,0.81,0,0.81 +NASCAR 2001,PS,2000,Racing,Electronic Arts,0.45,0.31,0,0.05,0.81 +EA Sports Active NFL Training Camp,Wii,2010,Sports,Electronic Arts,0.77,0,0,0.05,0.81 +The Legend of Zelda: Four Swords Adventures,GC,2004,Action,Nintendo,0.63,0.16,0,0.02,0.81 +Jikkyou Powerful Pro Yakyuu '99 Kaimakuban,PS,1999,Sports,Konami Digital Entertainment,0,0,0.76,0.05,0.81 +Guitar Hero Live,PS4,2015,Misc,Activision,0.32,0.35,0,0.13,0.81 +Valkyrie Profile,PS,1999,Role-Playing,Enix Corporation,0.07,0.05,0.63,0.05,0.81 +Final Fantasy Type-0,PSP,2011,Role-Playing,Unknown,0,0,0.81,0,0.81 +Pro Evolution Soccer 2010,X360,2009,Sports,Konami Digital Entertainment,0.12,0.58,0.03,0.08,0.81 +Army Men: Sarge's Heroes,N64,1999,Action,3DO,0.68,0.12,0,0.01,0.81 +Mega Man,NES,1987,Platform,Capcom,0.45,0.08,0.27,0.01,0.81 +Tom Clancy's Rainbow Six 3,PS2,2004,Shooter,Ubisoft,0.4,0.31,0,0.1,0.81 +Lego Batman 3: Beyond Gotham,PS3,2014,Action,Warner Bros. Interactive Entertainment,0.33,0.35,0,0.13,0.81 +EarthBound,SNES,1994,Role-Playing,Nintendo,0,0,0.81,0,0.81 +DiRT 2,X360,2009,Racing,Codemasters,0.32,0.4,0,0.09,0.81 +Professor Layton vs Phoenix Wright: Ace Attorney,3DS,2012,Puzzle,Level 5,0.2,0.26,0.3,0.04,0.81 +The Next Tetris,PS,1998,Puzzle,Atari,0.45,0.31,0,0.05,0.81 +Dying Light,XOne,2015,Action,Warner Bros. Interactive Entertainment,0.43,0.3,0.01,0.07,0.81 +NCAA Football 10,PS3,2009,Sports,Electronic Arts,0.75,0,0,0.06,0.81 +Ben 10: Alien Force,Wii,2008,Action,Koch Media,0.52,0.21,0,0.07,0.81 +World Soccer Jikkyou Winning Eleven 3: World Cup France '98,PS,1998,Sports,Konami Digital Entertainment,0,0,0.75,0.05,0.81 +Final Fantasy XI: Wings of the Goddess,PS2,2007,Role-Playing,Square Enix,0.35,0.27,0.09,0.09,0.81 +The Sims 2,PS2,2005,Simulation,Electronic Arts,0.67,0.03,0,0.11,0.81 +Guitar Hero: Metallica,X360,2009,Misc,Activision,0.52,0.21,0,0.07,0.81 +NCAA Football 14,PS3,2013,Sports,Electronic Arts,0.75,0,0,0.06,0.8 +MadWorld,Wii,2009,Action,Sega,0.46,0.25,0.02,0.07,0.8 +Fight Night Champion,X360,2011,Fighting,Electronic Arts,0.4,0.33,0,0.07,0.8 +Who wants to be a millionaire,PS,2000,Misc,Eidos Interactive,0.45,0.3,0,0.05,0.8 +Yakuza,PS2,2005,Action,Sega,0,0.02,0.74,0.01,0.8 +Star Wars Rogue Squadron III: Rebel Strike,GC,2003,Simulation,LucasArts,0,0.16,0,0.02,0.8 +ABBA: You Can Dance,Wii,2011,Misc,Ubisoft,0,0.5,0,0.11,0.8 +Moto Racer,PS,1997,Racing,Electronic Arts,0,0.3,0,0.05,0.8 +Hitman: Contracts,PS2,2004,Shooter,Eidos Interactive,0,0.31,0,0.1,0.8 +The Sims 2: Pets,PSP,2006,Simulation,Electronic Arts,0,0.39,0,0.22,0.8 +Final Fantasy Anthology,PS,1999,Role-Playing,Square EA,0,0.3,0,0.05,0.8 +Aliens: Colonial Marines,X360,2013,Shooter,Sega,0.36,0.37,0,0.07,0.8 +Pro Evolution Soccer 2010,PSP,2009,Sports,Konami Digital Entertainment,0,0.33,0.2,0.18,0.8 +[Prototype 2],X360,2012,Action,Activision,0,0.25,0,0.07,0.8 +Sonic & SEGA All-Stars Racing with Banjo-Kazooie,X360,2010,Racing,Sega,0.37,0.35,0,0.07,0.8 +Goldeneye 007: Reloaded,PS3,2011,Shooter,Activision,0,0.35,0,0.13,0.8 +NBA 2K16,PS3,2015,Sports,Take-Two Interactive,0,0.19,0.03,0.13,0.8 +All Star Cheer Squad,Wii,2008,Sports,THQ,0,0.29,0,0.08,0.8 +The Sims 2: Castaway,PSP,2007,Simulation,Electronic Arts,0.08,0.46,0,0.25,0.8 +Prince of Persia: Warrior Within,XB,2004,Action,Ubisoft,0.48,0.28,0,0.04,0.8 +Dragon's Dogma,X360,2012,Role-Playing,Capcom,0,0.24,0.07,0.06,0.8 +Darksiders II,X360,2012,Action,THQ,0.45,0.28,0,0.07,0.8 +Resident Evil: Revelations,PS3,2013,Action,Capcom,0.14,0.32,0.22,0.12,0.8 +Rayman Raving Rabbids 2,DS,2007,Misc,Ubisoft,0.73,0.01,0,0.06,0.8 +Super Robot Taisen ?,PS,2000,Strategy,Banpresto,0,0,0.75,0.05,0.8 +PES 2009: Pro Evolution Soccer,PSP,,Sports,Konami Digital Entertainment,0.04,0.33,0.26,0.17,0.8 +Need for Speed: Hot Pursuit 2,GC,2002,Racing,Electronic Arts,0.68,0.09,0,0.02,0.8 +Star Wars: The Force Unleashed II,Wii,2010,Action,LucasArts,0.54,0.19,0,0.06,0.8 +Band Hero,X360,2009,Misc,Activision,0.51,0.22,0,0.07,0.8 +Mario & Sonic at the Sochi 2014 Olympic Winter Games,WiiU,2013,Sports,Nintendo,0.39,0.22,0.13,0.06,0.8 +Tales of Destiny 2,PS2,2002,Role-Playing,Namco Bandai Games,0,0,0.8,0,0.8 +Capcom's Soccer Shootout,SNES,1993,Sports,Nintendo,0,0,0.8,0,0.8 +Sniper: Ghost Warrior,PS3,2011,Shooter,City Interactive,0.26,0.36,0.04,0.14,0.8 +The Godfather II,X360,2009,Action,Electronic Arts,0.47,0.24,0.01,0.08,0.79 +pro evolution soccer 2011,PSP,2010,Sports,Konami Digital Entertainment,0.05,0.3,0.29,0.16,0.79 +Alien,2600,1981,Action,20th Century Fox Video Games,0.74,0.04,0,0.01,0.79 +Dragon Ball Z: Budokai Tenkaichi 2,PS2,2006,Fighting,Atari,0.66,0.02,0,0.11,0.79 +The Walking Dead: Season One,PS3,2012,Adventure,Avanquest Software,0.4,0.25,0.03,0.11,0.79 +Rayman Origins,X360,2011,Platform,Ubisoft,0.38,0.34,0,0.08,0.79 +Guitar Hero: Aerosmith,PS2,2008,Misc,Activision,0.61,0,0,0.18,0.79 +Ridge Racer,PS,1994,Racing,Sony Computer Entertainment,0,0,0.74,0.05,0.79 +Final Fantasy Tactics A2: Grimoire of the Rift,DS,2007,Role-Playing,Square Enix,0.42,0.03,0.3,0.04,0.79 +Harvest Moon: A Wonderful Life,GC,2003,Role-Playing,Ubisoft,0.61,0.16,0,0.02,0.79 +Momotarou Dentetsu 7,PS,1997,Simulation,Hudson Entertainment,0,0,0.74,0.05,0.79 +Invizimals,PSP,2009,Strategy,Sony Computer Entertainment,0.17,0.51,0,0.11,0.79 +Motocross Mania,PS,2001,Racing,Take-Two Interactive,0.44,0.3,0,0.05,0.79 +Tiger Woods PGA Tour 10,PS3,2009,Sports,Electronic Arts,0.42,0.25,0,0.12,0.79 +Star Wars The Clone Wars: Jedi Alliance,DS,2008,Action,LucasArts,0.62,0.11,0,0.07,0.79 +WCW Mayhem,N64,1999,Fighting,Electronic Arts,0.63,0.15,0,0.01,0.79 +Mega Man 5,NES,1992,Platform,Capcom,0.39,0.07,0.32,0.01,0.79 +Star Ocean: The Last Hope,X360,2009,Role-Playing,Square Enix,0.32,0.2,0.21,0.06,0.79 +Dance Dance Revolution SuperNOVA 2,PS2,2007,Simulation,Konami Digital Entertainment,0.64,0.03,0.02,0.1,0.79 +Armored Core 2,PS2,2000,Simulation,Ubisoft,0.28,0.22,0.23,0.07,0.79 +Dragon Quest Monsters 2,3DS,2014,Role-Playing,Square Enix,0,0,0.79,0,0.79 +Ghost Squad,Wii,2007,Shooter,Sega,0.42,0.21,0.08,0.07,0.79 +Dead Island: Riptide,X360,2013,Action,Deep Silver,0.44,0.27,0.01,0.07,0.79 +Drawn to Life,DS,2007,Action,THQ,0.71,0.02,0,0.06,0.79 +Major League Baseball Featuring Ken Griffey Jr,N64,1998,Sports,Nintendo,0.75,0.03,0,0.01,0.79 +FIFA 12,Wii,2011,Sports,Electronic Arts,0.16,0.52,0,0.11,0.79 +Too Human,X360,2008,Role-Playing,Microsoft Game Studios,0.38,0.3,0.03,0.08,0.79 +Sid Meier's Civilization Revolution,PS3,2008,Strategy,Take-Two Interactive,0.49,0.19,0.01,0.1,0.79 +NCAA Football 08,PS2,2007,Sports,Electronic Arts,0.65,0.03,0,0.11,0.79 +FIFA Soccer 2004,XB,2003,Sports,Electronic Arts,0.24,0.49,0,0.05,0.79 +Personal Trainer: Walking,DS,2008,Sports,Nintendo,0.22,0.32,0.17,0.07,0.79 +Naruto Shippuden: Ultimate Ninja Storm 2,X360,2010,Fighting,Namco Bandai Games,0.43,0.27,0.01,0.07,0.79 +PokePark 2: Wonders Beyond,Wii,2011,Action,Nintendo,0.27,0.2,0.27,0.05,0.79 +Professor Layton and the Azran Legacy,3DS,2013,Puzzle,Nintendo,0,0.48,0.25,0.06,0.78 +Tom Clancy's Splinter Cell: Double Agent,X360,2006,Action,Ubisoft,0.67,0.05,0.01,0.06,0.78 +Yars' Revenge,2600,1982,Shooter,Atari,0.73,0.04,0,0.01,0.78 +Lips,X360,2008,Misc,Microsoft Game Studios,0.12,0.56,0,0.1,0.78 +Secret Agent Barbie: Royal Jewels Mission,GBA,2002,Platform,Vivendi Games,0.56,0.21,0,0.01,0.78 +Metroid Prime Hunters,DS,2006,Shooter,Nintendo,0.58,0.04,0.11,0.06,0.78 +The 7th Guest,PC,1992,Adventure,Virgin Interactive,0.01,0.77,0,0,0.78 +Doom,PS,1994,Shooter,Infogrames,0.43,0.3,0,0.05,0.78 +Buzz! The Hollywood Quiz,PS2,2007,Misc,Sony Computer Entertainment,0.17,0,0,0.61,0.78 +Puzzler World,DS,2009,Puzzle,Ubisoft,0.41,0.3,0,0.07,0.78 +My Little Pony: Pinkie Pie's Party,DS,2008,Adventure,THQ,0.72,0,0,0.06,0.78 +We Sing,Wii,2009,Misc,Nordic Games,0,0.69,0,0.09,0.78 +Marvel vs. Capcom: Clash of Super Heroes,PS,1999,Fighting,Capcom,0.43,0.3,0,0.05,0.78 +God of War Saga,PS3,2012,Action,Sony Computer Entertainment,0.72,0,0,0.06,0.78 +Battle Stations,PS,1997,Strategy,Electronic Arts,0.43,0.29,0,0.05,0.78 +Tetris Party Deluxe,DS,2010,Puzzle,Nintendo,0.29,0.3,0.12,0.07,0.78 +Pro Evolution Soccer 2016,PS4,2015,Sports,Konami Digital Entertainment,0.13,0.42,0.13,0.1,0.78 +Worms: Open Warfare,PSP,2006,Strategy,THQ,0.11,0.43,0,0.24,0.78 +Star Wars Battlefront: Elite Squadron,PSP,2009,Shooter,LucasArts,0.38,0.24,0,0.16,0.78 +UFC Personal Trainer: The Ultimate Fitness System,X360,2011,Sports,THQ,0.53,0.19,0,0.06,0.78 +Resident Evil: Operation Raccoon City,X360,2012,Action,Capcom,0.55,0.15,0.03,0.06,0.78 +NBA 2K7,PS2,2006,Sports,Take-Two Interactive,0.65,0.02,0,0.11,0.78 +Need for Speed: ProStreet,PSP,2008,Racing,Electronic Arts,0.24,0.33,0.01,0.2,0.78 +Toy Story 3: The Video Game,X360,2010,Action,Disney Interactive Studios,0.41,0.29,0,0.07,0.78 +Torneko no Daibouken: Fushigi no Dungeon,SNES,1993,Role-Playing,ChunSoft,0,0,0.78,0,0.78 +Jr. Pac-Man,2600,1983,Puzzle,Atari,0.72,0.05,0,0.01,0.78 +James Bond 007: Nightfire,GC,2002,Shooter,Electronic Arts,0.6,0.16,0,0.02,0.78 +Banjo-Kazooie: Nuts & Bolts,X360,2008,Platform,Microsoft Game Studios,0.32,0.36,0,0.09,0.78 +NBA ShootOut 98,PS,1998,Sports,Sony Computer Entertainment,0.43,0.29,0,0.05,0.78 +Avatar: The Game,X360,2009,Action,Ubisoft,0.34,0.35,0,0.08,0.78 +Harry Potter and the Half-Blood Prince,Wii,2009,Action,Electronic Arts,0.28,0.4,0,0.09,0.77 +DJ Hero,Wii,2009,Misc,Activision,0.47,0.23,0,0.07,0.77 +Perfect Dark Zero,X360,2005,Shooter,Microsoft Game Studios,0.66,0.02,0.03,0.06,0.77 +Galaxian,2600,1982,Shooter,Atari,0.72,0.05,0,0.01,0.77 +Andretti Racing,PS,1996,Racing,Electronic Arts,0.43,0.29,0,0.05,0.77 +Caesars Palace 2000: Millennium Gold Edition,PS,2000,Misc,Interplay,0.43,0.29,0,0.05,0.77 +Madden NFL 25,XOne,2013,Sports,Electronic Arts,0.67,0.05,0,0.05,0.77 +Air Raid,2600,1981,Action,Men-A-Vision,0.72,0.04,0,0.01,0.77 +Need For Speed: Undercover,PSP,2008,Racing,Electronic Arts,0.23,0.32,0.03,0.19,0.77 +Duke Nukem Forever,PS3,2011,Shooter,Take-Two Interactive,0.33,0.31,0,0.12,0.77 +Freedom Wars,PSV,2014,Role-Playing,Sony Computer Entertainment,0.22,0.14,0.32,0.1,0.77 +Marvel Nemesis: Rise of the Imperfects,PS2,2005,Fighting,Electronic Arts,0.64,0.02,0,0.1,0.77 +Boxing,2600,1980,Fighting,Activision,0.72,0.04,0,0.01,0.77 +Need for Speed: Porsche Unleashed,PS,1999,Racing,Electronic Arts,0.43,0.29,0,0.05,0.77 +Dragon Ball: Raging Blast,PS3,2009,Fighting,Namco Bandai Games,0.37,0.19,0.11,0.1,0.77 +Crystal Castles,2600,1983,Action,Atari,0.72,0.04,0,0.01,0.77 +Conker's Bad Fur Day,N64,2001,Platform,THQ,0.53,0.22,0,0.02,0.77 +Dragon Warrior I&II,GB,1999,Role-Playing,Enix Corporation,0,0,0.77,0,0.77 +Star Wars Episode II: Attack of the Clones,GBA,2002,Action,THQ,0.55,0.2,0,0.01,0.77 +My Baby Girl,DS,2008,Simulation,Nobilis,0.61,0.1,0,0.06,0.77 +LEGO Batman 2: DC Super Heroes,DS,2012,Action,Warner Bros. Interactive Entertainment,0.43,0.27,0,0.06,0.77 +Twisted Metal: Head On,PSP,2005,Action,Sony Computer Entertainment,0.71,0,0,0.06,0.77 +Conflict: Desert Storm II - Back to Bagdhad,PS2,2003,Shooter,SCi,0.38,0.29,0,0.1,0.77 +Maximo: Ghosts to Glory,PS2,2001,Platform,Capcom,0.38,0.29,0,0.1,0.77 +Pokemon Dash,DS,2004,Racing,Nintendo,0.21,0.14,0.38,0.04,0.77 +Donkey Kong Country 3,GBA,2005,Platform,Nintendo,0.45,0.17,0.14,0.01,0.77 +All-Star Baseball 2003,PS2,2002,Sports,Acclaim Entertainment,0.38,0.29,0,0.1,0.77 +Unlimited Saga,PS2,2002,Role-Playing,Atari,0.1,0.08,0.56,0.03,0.77 +Cabela's Deer Hunt: 2004 Season,PS2,2003,Sports,Activision Value,0.37,0.29,0,0.1,0.76 +Sonic Unleashed,PS2,2008,Platform,Sega,0.37,0.04,0,0.36,0.76 +Formula 1,PS,1996,Racing,Psygnosis,0.18,0.12,0.42,0.05,0.76 +Plants vs. Zombies: Garden Warfare,PS3,2014,Shooter,Electronic Arts,0.22,0.4,0.01,0.14,0.76 +Raving Rabbids: Travel in Time,Wii,2010,Adventure,Ubisoft,0.22,0.47,0,0.08,0.76 +The Sims 3,3DS,2011,Simulation,Electronic Arts,0.3,0.37,0.03,0.07,0.76 +Driv3r,XB,2004,Racing,Atari,0.36,0.38,0,0.03,0.76 +Mercenaries: Playground of Destruction,PS2,2005,Action,LucasArts,0.64,0.02,0,0.1,0.76 +MTV Celebrity Deathmatch,PS2,2003,Fighting,Gotham Games,0.37,0.29,0,0.1,0.76 +Street Fighter Alpha: Warriors' Dreams,PS,1995,Fighting,Virgin Interactive,0.17,0.11,0.43,0.05,0.76 +Mortal Kombat,PSV,2012,Fighting,Warner Bros. Interactive Entertainment,0.47,0.18,0,0.12,0.76 +ISS Pro Evolution,PS,1998,Sports,Konami Digital Entertainment,0,0,0.71,0.05,0.76 +Lost Planet 2,X360,2010,Shooter,Capcom,0.38,0.24,0.08,0.06,0.76 +SoulCalibur V,PS3,2012,Fighting,Namco Bandai Games,0.35,0.24,0.07,0.1,0.76 +Portal 2,PC,2011,Shooter,Valve Software,0.33,0.32,0,0.11,0.76 +Super Monkey Ball: Touch & Roll,DS,2005,Misc,Sega,0.7,0.01,0,0.06,0.76 +Pro Evolution Soccer 2015,PS4,2014,Sports,Konami Digital Entertainment,0.09,0.43,0.11,0.13,0.76 +Drawn to Life: The Next Chapter,Wii,2009,Puzzle,THQ,0.29,0.39,0,0.08,0.76 +The Lord of the Rings: Conquest,PS3,2009,Action,Electronic Arts,0.38,0.26,0,0.12,0.76 +Final Fantasy II,NES,1988,Role-Playing,SquareSoft,0,0,0.76,0,0.76 +Tony Hawk's Pro Skater 2,N64,2001,Sports,Activision,0.59,0.16,0,0.01,0.76 +Taiko no Tatsujin: Tatakon de Dodon ga Don,PS2,2002,Misc,Namco Bandai Games,0,0,0.76,0,0.76 +Mega Man Battle Network 6: Cybeast Falzar / Gregar,GBA,2005,Role-Playing,Capcom,0.09,0.03,0.62,0.02,0.76 +Syphon Filter: The Omega Strain,PS2,2004,Shooter,Sony Computer Entertainment,0.37,0.29,0,0.1,0.76 +FIFA Soccer 11,PS2,2010,Sports,Electronic Arts,0.11,0.29,0,0.36,0.76 +Deer Drive,Wii,2009,Sports,Big Ben Interactive,0.67,0.04,0,0.05,0.76 +Kane & Lynch: Dead Men,X360,2007,Shooter,Eidos Interactive,0.36,0.31,0.01,0.08,0.76 +Assassin's Creed: Revelations,PC,2011,Action,Ubisoft,0.14,0.48,0,0.14,0.76 +Mortal Kombat: Deception,XB,2004,Fighting,Midway Games,0.61,0.12,0,0.03,0.76 +Ace Attorney Investigations: Miles Edgeworth,DS,2009,Adventure,Capcom,0.27,0.15,0.3,0.04,0.76 +That's So Raven,GBA,2004,Adventure,Disney Interactive Studios,0.54,0.2,0,0.01,0.76 +FIFA 15,Wii,2014,Sports,Electronic Arts,0.24,0.46,0,0.06,0.76 +Marvel vs. Capcom 2: New Age of Heroes,PS2,2002,Fighting,Capcom,0.31,0.24,0.13,0.08,0.76 +Need for Speed: Shift,PSP,2009,Racing,Electronic Arts,0.16,0.38,0.01,0.21,0.76 +Kane & Lynch: Dead Men,PS3,2007,Shooter,Eidos Interactive,0.29,0.32,0.01,0.13,0.76 +Dark Souls II,X360,2014,Role-Playing,Namco Bandai Games,0.48,0.2,0.01,0.06,0.76 +True Crime: New York City,PS2,2005,Action,Activision,0.57,0.02,0.07,0.09,0.76 +Legends of Wrestling,PS2,2001,Fighting,Acclaim Entertainment,0.37,0.29,0,0.1,0.76 +Rockstar Games presents Table Tennis,X360,2006,Sports,Take-Two Interactive,0.28,0.39,0,0.09,0.76 +Monopoly Streets,Wii,2010,Misc,Electronic Arts,0.24,0.44,0,0.08,0.76 +Genji: Days of the Blade,PS3,2006,Action,Sony Computer Entertainment,0.18,0.38,0.06,0.14,0.76 +Harvest Moon: Animal Parade,Wii,2008,Simulation,Rising Star Games,0.6,0.09,0.02,0.05,0.76 +Final Fantasy Legend III,GB,1991,Role-Playing,SquareSoft,0,0,0.76,0,0.76 +Total War: Rome II,PC,2013,Strategy,Sega,0.12,0.53,0,0.11,0.76 +Rare Replay,XOne,2015,Misc,Microsoft Game Studios,0.47,0.21,0.01,0.07,0.75 +Spectrobes,DS,2007,Role-Playing,Disney Interactive Studios,0.67,0.03,0,0.06,0.75 +Wall-E,PS2,2008,Platform,THQ,0.21,0,0,0.54,0.75 +WWE SmackDown vs. Raw 2009,PSP,2008,Fighting,THQ,0.41,0.21,0,0.14,0.75 +Band Hero,PS3,2009,Misc,Activision,0.41,0.24,0,0.11,0.75 +Mega Man X5,PS,2000,Platform,Capcom,0.3,0.21,0.2,0.05,0.75 +Tearaway,PSV,2013,Adventure,Sony Computer Entertainment Europe,0.17,0.39,0,0.19,0.75 +DJ Hero 2,PS3,2010,Misc,Activision,0.47,0.19,0,0.09,0.75 +The Godfather II,PS3,2009,Action,Electronic Arts,0.41,0.22,0.01,0.11,0.75 +WWE SmackDown vs. Raw 2010,Wii,2009,Fighting,THQ,0.51,0.17,0,0.07,0.75 +Turok,X360,2008,Action,Touchstone,0.46,0.21,0.01,0.07,0.75 +[Prototype 2],PS3,2012,Action,Activision,0.36,0.28,0,0.11,0.75 +Shark Tale,PS2,2004,Action,Activision,0.37,0.29,0,0.1,0.75 +San Francisco Rush: Extreme Racing,N64,1997,Racing,GT Interactive,0.63,0.11,0,0.01,0.75 +The Amazing Spider-Man (Console Version),X360,2012,Action,Activision,0.43,0.26,0,0.06,0.75 +Zone of the Enders,PS2,2001,Shooter,Konami Digital Entertainment,0.3,0.24,0.13,0.08,0.75 +Red Faction: Guerrilla,PS3,2009,Shooter,THQ,0.33,0.28,0.02,0.12,0.75 +Street Fighter EX Plus Alpha,PS,1997,Fighting,Virgin Interactive,0.28,0.19,0.23,0.05,0.75 +Madden NFL 06,PSP,2005,Sports,Electronic Arts,0.69,0,0,0.06,0.75 +Coded Arms,PSP,2005,Shooter,Konami Digital Entertainment,0.28,0.29,0,0.18,0.75 +Tony Hawk's Underground 2,XB,2004,Sports,Activision,0.48,0.24,0,0.03,0.75 +Tales of Vesperia,X360,2008,Role-Playing,Atari,0.32,0.18,0.19,0.05,0.75 +X-Men Origins: Wolverine - Uncaged Edition,PS3,2009,Action,Activision,0.31,0.32,0,0.13,0.75 +Madagascar: Escape 2 Africa,DS,2008,Action,Activision,0.42,0.26,0,0.07,0.75 +Split/Second,PS3,2010,Racing,Disney Interactive Studios,0.31,0.31,0.01,0.12,0.75 +Capcom vs. SNK 2: Mark of the Millennium 2001,PS2,2001,Fighting,Capcom,0.22,0.17,0.3,0.06,0.75 +MVP 06 NCAA Baseball,PS2,2006,Sports,Electronic Arts,0.62,0.02,0,0.1,0.75 +Just Dance 2015,WiiU,2014,Misc,Ubisoft,0.4,0.28,0,0.07,0.75 +Borderlands: The Pre-Sequel,X360,2014,Shooter,Take-Two Interactive,0.46,0.22,0.01,0.06,0.75 +LittleBigPlanet 3,PS3,2014,Platform,Sony Computer Entertainment,0.2,0.43,0.01,0.11,0.75 +Marvel: Ultimate Alliance 2,PS3,2009,Role-Playing,Activision,0.49,0.16,0,0.09,0.75 +Sega Superstars Tennis,DS,2008,Sports,Sega,0.29,0.37,0,0.08,0.75 +The Walking Dead: Season One,X360,2012,Adventure,Avanquest Software,0.55,0.14,0,0.05,0.75 +Ace Combat: Assault Horizon,PS3,2011,Action,Namco Bandai Games,0.3,0.16,0.22,0.07,0.74 +Jump Ultimate Stars,DS,2006,Fighting,Nintendo,0,0,0.74,0,0.74 +Jampack Summer 2001,PS2,2001,Misc,Sony Computer Entertainment,0.36,0.28,0,0.1,0.74 +Resonance of Fate,PS3,2010,Role-Playing,Sega,0.2,0.22,0.24,0.09,0.74 +Burnout,PS2,2001,Racing,Acclaim Entertainment,0.36,0.28,0,0.1,0.74 +Tom Clancy's Rainbow Six: Vegas,PSP,2007,Shooter,Ubisoft,0.42,0.19,0,0.14,0.74 +Final Fantasy XIII-2,X360,2011,Role-Playing,Square Enix,0.36,0.3,0.02,0.06,0.74 +LEGO Batman 2: DC Super Heroes,3DS,2012,Action,Warner Bros. Interactive Entertainment,0.41,0.27,0,0.06,0.74 +Mortal Kombat: Unchained,PSP,2006,Fighting,Midway Games,0.67,0.01,0,0.06,0.74 +Mario & Luigi: Paper Jam,3DS,2015,Role-Playing,Nintendo,0.16,0.3,0.25,0.04,0.74 +Yu-Gi-Oh! Dungeon Dice Monsters,GBA,2001,Misc,Konami Digital Entertainment,0.42,0.16,0.15,0.01,0.74 +Brink,PS3,2011,Shooter,Bethesda Softworks,0.29,0.32,0.01,0.12,0.74 +LEGO Marvel Super Heroes,WiiU,2013,Action,Warner Bros. Interactive Entertainment,0.31,0.35,0.02,0.06,0.74 +Blur,PS3,2010,Racing,Activision,0.22,0.37,0.02,0.13,0.74 +Madden NFL 11,Wii,,Sports,Unknown,0.7,0,0,0.05,0.74 +Namco Museum Remix,Wii,2007,Misc,Atari,0.68,0,0,0.05,0.74 +Midnight Club 3: DUB Edition,XB,2005,Racing,Take-Two Interactive,0.61,0.1,0,0.03,0.74 +Crysis 2,PC,2011,Action,Electronic Arts,0.16,0.45,0,0.13,0.74 +The Lord of the Rings: The Two Towers,GBA,2002,Action,Electronic Arts,0.53,0.2,0,0.01,0.74 +Tiger Woods PGA Tour 2001,PS2,2001,Sports,Electronic Arts,0.36,0.28,0,0.09,0.74 +Indiana Jones and the Staff of Kings,Wii,2009,Action,Activision,0.36,0.3,0,0.08,0.74 +Jet Moto 3,PS,1999,Racing,Sony Computer Entertainment,0.41,0.28,0,0.05,0.74 +Naruto Shippuden: Ultimate Ninja Storm Generations,PS3,2012,Fighting,Namco Bandai Games,0.27,0.25,0.14,0.08,0.74 +Unreal Championship,XB,2002,Shooter,Atari,0.59,0.12,0,0.03,0.74 +WarioWare: Twisted!,GBA,,Puzzle,Unknown,0.16,0.06,0.5,0.02,0.74 +Pirates of the Caribbean: At World's End,PS3,2007,Action,Disney Interactive Studios,0.17,0.41,0,0.15,0.74 +Tiger Woods PGA Tour 08,PS3,2007,Sports,Electronic Arts,0.22,0.38,0,0.14,0.74 +Persona 4: Arena,PS3,2012,Fighting,Atlus,0.3,0.12,0.24,0.07,0.74 +Sword of Mana,GBA,2003,Role-Playing,Nintendo,0.31,0.11,0.3,0.02,0.74 +Harvest Moon DS: Island of Happiness,DS,2007,Simulation,Rising Star Games,0.44,0.01,0.25,0.04,0.74 +Star Ocean: The Last Hope International,PS3,2010,Role-Playing,Square Enix,0.28,0.16,0.22,0.08,0.73 +The Sims 2: Castaway,DS,2007,Simulation,Electronic Arts,0.63,0.05,0,0.06,0.73 +FIFA: Road to World Cup 98,PS,1997,Sports,Electronic Arts,0.14,0.09,0.46,0.05,0.73 +Dragon Ball Z: Ultime Menace,SNES,1993,Fighting,Namco Bandai Games,0,0,0.73,0,0.73 +Classic NES Series: Donkey Kong,GBA,2004,Platform,Nintendo,0.4,0.15,0.17,0.01,0.73 +Call of Duty: Ghosts,PC,2013,Shooter,Activision,0.23,0.41,0,0.09,0.73 +Yoshi,GB,1991,Puzzle,Nintendo,0,0,0.73,0,0.73 +Mortal Kombat 4,N64,1998,Fighting,GT Interactive,0.55,0.17,0,0.01,0.73 +F1 2011,X360,2011,Racing,Codemasters,0.11,0.51,0.01,0.09,0.73 +Madden NFL 10,Wii,2009,Sports,Electronic Arts,0.63,0.04,0,0.06,0.73 +Kirby: Canvas Curse,DS,2005,Platform,Nintendo,0.37,0,0.32,0.04,0.73 +Croc 2,PS,1999,Platform,Fox Interactive,0.41,0.28,0,0.05,0.73 +Practise English!,DS,2007,Misc,Nintendo,0,0,0.73,0,0.73 +Oddworld: Munch's Oddysee,XB,2001,Platform,Atari,0.54,0.16,0,0.03,0.73 +Berzerk,2600,1981,Shooter,Atari,0.68,0.04,0,0.01,0.73 +NHL 11,X360,2010,Sports,Electronic Arts,0.61,0.07,0,0.05,0.73 +Dragon Age: Inquisition,PC,2014,Role-Playing,Electronic Arts,0.32,0.34,0,0.07,0.73 +iCarly,DS,2009,Adventure,Activision,0.67,0.01,0,0.05,0.73 +DiRT 3,X360,2011,Racing,Codemasters,0.23,0.41,0.01,0.08,0.73 +NCAA Football 07,X360,2006,Sports,Electronic Arts,0.67,0,0,0.06,0.73 +Just Dance Wii,Wii,2011,Misc,Nintendo,0,0,0.73,0,0.73 +Full Spectrum Warrior,XB,2004,Strategy,THQ,0.54,0.16,0,0.03,0.73 +Katamari Damacy,PS2,2004,Puzzle,Namco Bandai Games,0.47,0.02,0.17,0.08,0.73 +Beyblade VForce: Ultimate Blader Jam,GBA,2003,Action,Atari,0.52,0.19,0,0.01,0.73 +Ratchet & Clank Collection,PS3,2012,Action,Sony Computer Entertainment,0.47,0.14,0.02,0.09,0.73 +Avatar: The Game,Wii,2009,Action,Ubisoft,0.33,0.32,0,0.08,0.73 +Shaun Palmer's Pro Snowboarder,PS2,2001,Sports,Codemasters,0.36,0.28,0,0.09,0.73 +MX vs. ATV Reflex,X360,2009,Racing,THQ,0.52,0.15,0,0.06,0.73 +Imagine: Interior Designer,DS,2008,Simulation,Ubisoft,0.34,0.31,0,0.08,0.73 +SSX,X360,2012,Sports,Electronic Arts,0.38,0.28,0,0.06,0.72 +Style Savvy: Trendsetters,3DS,2012,Simulation,Nintendo,0.16,0.02,0.53,0.01,0.72 +James Bond 007: Agent Under Fire,GC,2002,Shooter,Electronic Arts,0.56,0.15,0,0.02,0.72 +XCOM: Enemy Unknown,PC,2012,Strategy,Take-Two Interactive,0.26,0.36,0,0.1,0.72 +Rabbids Go Home,DS,2009,Platform,Ubisoft,0.35,0.3,0,0.07,0.72 +Star Wars Episode III: Revenge of the Sith,GBA,2005,Action,Ubisoft,0.52,0.19,0,0.01,0.72 +Ultimate Spider-Man,PS2,2005,Action,Activision,0.6,0.02,0,0.1,0.72 +FIFA Soccer 13,Wii,2012,Action,Electronic Arts,0.19,0.46,0,0.08,0.72 +God Eater,PSP,2010,Action,Unknown,0,0,0.72,0,0.72 +Final Fantasy XIV: A Realm Reborn,PS4,2014,Role-Playing,Square Enix,0.32,0.22,0.08,0.1,0.72 +SD Gundam G Generation,PS,1998,Strategy,Namco Bandai Games,0,0,0.67,0.05,0.72 +Area 51,PS,1996,Shooter,GT Interactive,0.4,0.27,0,0.05,0.72 +NBA Live 08,PS2,2007,Sports,Electronic Arts,0.59,0.02,0.01,0.1,0.72 +Dead to Rights,XB,2002,Shooter,Electronic Arts,0.53,0.17,0,0.03,0.72 +Tiger Woods PGA Tour 07,PS2,2006,Sports,Electronic Arts,0.6,0.02,0,0.1,0.72 +Test Drive 6,PS,1999,Racing,Atari,0.4,0.27,0,0.05,0.72 +Kouchuu Ouja Mushi King,GBA,2005,Action,Sega,0,0,0.7,0.02,0.72 +LEGO Harry Potter: Years 5-7,DS,,Action,Warner Bros. Interactive Entertainment,0.35,0.3,0,0.07,0.72 +Major League Baseball 2K7,X360,2007,Sports,Spike,0.67,0,0,0.05,0.72 +X-Men: Mutant Academy 2,PS,2001,Fighting,Activision,0.4,0.27,0,0.05,0.72 +Terraria,X360,2013,Action,505 Games,0.35,0.31,0,0.06,0.72 +Jampack Winter 2001,PS2,2001,Misc,Sony Computer Entertainment,0.35,0.28,0,0.09,0.72 +Kangaroo,2600,1982,Platform,Atari,0.67,0.04,0,0.01,0.72 +James Bond 007: Blood Stone,PS3,2010,Shooter,Activision,0.18,0.38,0.02,0.13,0.72 +Ben 10: Protector of Earth,PSP,2007,Action,D3Publisher,0.23,0.31,0,0.18,0.72 +Skate,X360,2007,Sports,Electronic Arts,0.62,0.04,0,0.06,0.72 +Super Monkey Ball Jr.,GBA,2002,Puzzle,Atari,0.51,0.19,0,0.01,0.72 +Driver: San Francisco,X360,2011,Racing,Ubisoft,0.25,0.39,0,0.08,0.72 +MLB 09: The Show,PS3,2009,Sports,Sony Computer Entertainment,0.66,0,0,0.05,0.72 +Monster Hunter Tri,WiiU,2012,Role-Playing,Nintendo,0.26,0.19,0.22,0.04,0.72 +Mobile Suit Gundam: Encounters in Space,PS2,2003,Simulation,Namco Bandai Games,0.05,0.04,0.61,0.01,0.72 +Catherine,PS3,2011,Adventure,Deep Silver,0.3,0.15,0.2,0.07,0.72 +Fear Effect,PS,1998,Action,Eidos Interactive,0.4,0.27,0,0.05,0.72 +FIFA Soccer 11,DS,2010,Sports,Electronic Arts,0.13,0.5,0,0.09,0.72 +Crysis,PC,2007,Shooter,Electronic Arts,0,0.69,0,0.03,0.72 +Battlefield: Bad Company 2,PC,2010,Shooter,Electronic Arts,0.19,0.53,0,0,0.71 +The Lord of the Rings: The Two Towers,XB,2002,Action,Electronic Arts,0.45,0.24,0,0.03,0.71 +Madden NFL 2003,XB,2002,Sports,Electronic Arts,0.67,0.02,0,0.03,0.71 +Dragon Quest Swords: The Masked Queen and the Tower of Mirrors,Wii,2007,Role-Playing,Square Enix,0.18,0.01,0.5,0.02,0.71 +MLB 13: The Show,PS3,2013,Sports,Sony Computer Entertainment,0.66,0,0,0.05,0.71 +Omerta: City of Gangsters,X360,2011,Simulation,Konami Digital Entertainment,0.42,0.23,0,0.06,0.71 +Dragon Quest Heroes: The World's Tree Woe and the Blight Below,PS4,2015,Action,Square Enix,0.16,0.13,0.37,0.06,0.71 +Virtua Fighter 4: Evolution,PS2,2003,Fighting,Sega,0.35,0.27,0,0.09,0.71 +Top Spin 4,PS3,2011,Sports,Take-Two Interactive,0.17,0.4,0,0.14,0.71 +Resident Evil: Survivor,PS,2000,Action,Eidos Interactive,0.23,0.15,0.29,0.05,0.71 +Dynasty Warriors 6,PS3,2007,Action,Tecmo Koei,0.18,0.08,0.41,0.04,0.71 +Super Trucks Racing,PS2,2002,Racing,Jester Interactive,0.35,0.27,0,0.09,0.71 +Persona Q: Shadow of the Labyrinth,3DS,2014,Role-Playing,Nippon Ichi Software,0.33,0.07,0.27,0.04,0.71 +Madden NFL 08,PSP,2007,Sports,Electronic Arts,0.6,0.04,0,0.07,0.71 +Godzilla: Destroy All Monsters Melee,GC,2002,Fighting,Atari,0.55,0.14,0,0.02,0.71 +Jeremy McGrath Supercross 2000,PS,2000,Racing,Acclaim Entertainment,0.4,0.27,0,0.05,0.71 +Conker: Live And Reloaded,XB,2005,Adventure,Microsoft Game Studios,0.49,0.2,0,0.02,0.71 +Silent Hill 3,PS2,2003,Action,Konami Digital Entertainment,0.35,0.27,0,0.09,0.71 +Madden NFL 09,PSP,2008,Sports,Electronic Arts,0.65,0,0,0.06,0.71 +Final Fantasy X/X-2 HD Remaster,PS4,2015,Role-Playing,Square Enix,0.29,0.25,0.06,0.11,0.71 +Yu-Gi-Oh! The Falsebound Kingdom,GC,2002,Strategy,Konami Digital Entertainment,0.49,0.13,0.07,0.02,0.71 +LEGO Rock Band,Wii,2009,Misc,Warner Bros. Interactive Entertainment,0.42,0.22,0,0.07,0.71 +MLB 10: The Show,PS3,2010,Sports,Sony Computer Entertainment,0.66,0,0,0.05,0.71 +Spyro: Enter the Dragonfly,GC,2002,Platform,Universal Interactive,0.55,0.14,0,0.02,0.71 +Scooby-Doo 2: Monsters Unleashed,GBA,2004,Action,THQ,0.51,0.19,0,0.01,0.71 +Power Rangers: Dino Thunder,PS2,2004,Action,THQ,0.35,0.27,0,0.09,0.71 +Rhythm Heaven: The Best+,3DS,2015,Misc,Nintendo,0,0,0.71,0,0.71 +LEGO Racers,N64,1999,Racing,LEGO Media,0.51,0.18,0,0.01,0.71 +WWF Attitude,N64,1999,Fighting,Acclaim Entertainment,0.57,0.13,0,0.01,0.71 +Blast Corps,N64,1997,Action,Nintendo,0.39,0.09,0.17,0.06,0.71 +LEGO Harry Potter: Years 1-4,PSP,2010,Action,Warner Bros. Interactive Entertainment,0.14,0.37,0,0.19,0.71 +Tactics Ogre: Let Us Cling Together,SNES,1995,Role-Playing,Quest,0,0,0.71,0,0.71 +"WarioWare, Inc.: Mega Party Game$",GC,2003,Puzzle,Nintendo,0.2,0.05,0.44,0.02,0.71 +Football Manager 2014,PC,2013,Sports,Sega,0,0.6,0,0.1,0.71 +Battle Arena Toshinden 2,PS,1995,Fighting,Sony Computer Entertainment,0.15,0.1,0.41,0.05,0.71 +WWE SmackDown vs. Raw 2011,PSP,2010,Fighting,THQ,0.22,0.31,0,0.17,0.71 +Jeopardy!,PS,1997,Misc,Hasbro Interactive,0.39,0.27,0,0.05,0.71 +South Park,PS,1998,Shooter,Acclaim Entertainment,0.39,0.27,0,0.05,0.71 +Metal Gear Solid V: The Phantom Pain,XOne,2015,Action,Konami Digital Entertainment,0.37,0.26,0.01,0.06,0.71 +Two Worlds,X360,2007,Role-Playing,SouthPeak Games,0.41,0.23,0,0.07,0.71 +Doom 3: Resurrection of Evil,XB,2005,Shooter,Activision,0.53,0.15,0,0.03,0.71 +NCAA Football 09,X360,2008,Sports,Electronic Arts,0.65,0,0,0.05,0.71 +NBA Live 09,X360,2008,Sports,Electronic Arts,0.5,0.14,0,0.07,0.71 +Ratchet & Clank: Into the Nexus,PS3,2013,Shooter,Sony Computer Entertainment,0.3,0.29,0,0.11,0.71 +Spider-Man 2,PSP,2005,Action,Activision,0.35,0.21,0,0.14,0.71 +2014 FIFA World Cup Brazil,PS3,2014,Sports,Electronic Arts,0.15,0.39,0.01,0.16,0.71 +London 2012: The Official Video Game of the Olympic Games,PS3,2012,Sports,Sega,0.06,0.5,0,0.15,0.7 +NHL 12,X360,2011,Sports,Electronic Arts,0.55,0.1,0,0.05,0.7 +Tony Hawk's Underground,GC,2003,Sports,Activision,0.54,0.14,0,0.02,0.7 +Infinite Undiscovery,X360,2008,Role-Playing,Square Enix,0.34,0.18,0.12,0.06,0.7 +Super Bomberman 3,SNES,1994,Puzzle,Hudson Soft,0,0,0.7,0,0.7 +Command & Conquer: Red Alert Retaliation,PS,1998,Strategy,Virgin Interactive,0.39,0.27,0,0.05,0.7 +The Sims 2: Apartment Pets,DS,2008,Simulation,Electronic Arts,0.32,0.31,0,0.07,0.7 +Star Wars: Obi-Wan,XB,2001,Action,Activision,0.52,0.16,0,0.02,0.7 +NCAA Football 08,X360,2007,Sports,Electronic Arts,0.65,0,0,0.05,0.7 +Kill.Switch,PS2,2003,Shooter,Sony Computer Entertainment,0.34,0.27,0,0.09,0.7 +Lalaloopsy,DS,2011,Simulation,Activision,0.54,0.1,0,0.06,0.7 +Madden NFL 2005,GC,2004,Sports,Electronic Arts,0.54,0.14,0,0.02,0.7 +F-14 Tomcat,GBA,2001,Action,Majesco Entertainment,0.5,0.19,0,0.01,0.7 +SplashDown,PS2,2001,Racing,Atari,0.34,0.27,0,0.09,0.7 +NCAA Football 98,PS,1997,Sports,Electronic Arts,0.39,0.27,0,0.05,0.7 +Jade Empire,XB,2005,Role-Playing,Microsoft Game Studios,0.48,0.19,0,0.03,0.7 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",PS3,2009,Shooter,Activision,0.28,0.3,0,0.12,0.7 +The Sims 3,DS,2010,Simulation,Electronic Arts,0.39,0.25,0,0.06,0.7 +Skylanders: Trap Team,WiiU,2014,Action,Activision,0.39,0.25,0,0.06,0.7 +Prince of Persia: The Forgotten Sands,PS3,2010,Action,Ubisoft,0.19,0.36,0.01,0.13,0.7 +Chocobo's Dungeon 2,PS,1998,Role-Playing,SquareSoft,0.04,0.03,0.58,0.05,0.7 +Advance Wars,GBA,2001,Strategy,Nintendo,0.5,0.19,0,0.01,0.7 +Hannah Montana: The Movie,DS,2009,Adventure,Disney Interactive Studios,0.38,0.25,0,0.07,0.7 +World of Zoo,DS,2009,Simulation,THQ,0.43,0.2,0,0.06,0.7 +Ape Escape: On the Loose,PSP,2005,Platform,Sony Computer Entertainment,0.52,0.01,0.12,0.05,0.7 +NASCAR 2001,PS2,2000,Racing,Electronic Arts,0.34,0.27,0,0.09,0.7 +IL-2 Sturmovik: Birds of Prey,PS3,2009,Simulation,505 Games,0.34,0.26,0,0.1,0.7 +Book of Spells,PS3,2012,Action,Sony Computer Entertainment,0.13,0.4,0,0.16,0.7 +NCAA Football 2001,PS,2000,Sports,Electronic Arts,0.39,0.26,0,0.05,0.7 +Mafia,PS2,2004,Action,Illusion Softworks,0.34,0.27,0,0.09,0.7 +Mobile Suit Gundam: Journey to Jaburo,PS2,2000,Simulation,Namco Bandai Games,0.16,0.13,0.36,0.04,0.7 +Metal Gear Solid V: The Phantom Pain,PS3,2015,Action,Konami Digital Entertainment,0.21,0.18,0.22,0.08,0.7 +TimeSplitters 2,PS2,2002,Shooter,Eidos Interactive,0.34,0.27,0,0.09,0.7 +MotionSports,X360,2010,Sports,Ubisoft,0.38,0.26,0,0.06,0.7 +MLB 08: The Show,PS3,2008,Sports,Sony Computer Entertainment,0.64,0,0,0.05,0.7 +Classic NES Series: Zelda II: The Adventure of Link,GBA,2004,Adventure,Nintendo,0.37,0.14,0.17,0.01,0.7 +Fire Emblem: Monsh? no Nazo,SNES,1994,Role-Playing,Nintendo,0,0,0.7,0,0.7 +Disney's Chicken Little,GBA,2005,Platform,Disney Interactive Studios,0.5,0.18,0,0.01,0.7 +King Kong,2600,1981,Action,Tigervision,0.65,0.04,0,0.01,0.69 +WWE 2K15,X360,2014,Sports,Take-Two Interactive,0.38,0.26,0,0.06,0.69 +The LEGO Movie Videogame,3DS,2014,Action,Warner Bros. Interactive Entertainment,0.28,0.31,0.05,0.05,0.69 +X-Men Origins: Wolverine - Uncaged Edition,X360,2009,Action,Activision,0.42,0.21,0,0.06,0.69 +Metal Gear Solid: Portable Ops Plus,PSP,2007,Action,Konami Digital Entertainment,0.26,0.01,0.26,0.17,0.69 +Disney Tangled,Wii,2010,Action,Disney Interactive Studios,0.47,0.17,0,0.05,0.69 +Shrek the Third,X360,2007,Action,Activision,0.54,0.1,0,0.06,0.69 +Test Drive Unlimited 2,X360,,Racing,Atari,0.3,0.32,0,0.07,0.69 +Moto Racer 2,PS,1997,Racing,Electronic Arts,0.39,0.26,0,0.05,0.69 +Halo 2 Multiplayer Map Pack,XB,2005,Shooter,Microsoft Game Studios,0.54,0.13,0,0.02,0.69 +Minecraft: Story Mode,PS3,2015,Adventure,Mojang,0.25,0.33,0,0.11,0.69 +Mortal Kombat: Shaolin Monks,PS2,2005,Action,Midway Games,0.58,0.02,0,0.09,0.69 +MX vs. ATV Unleashed: On the Edge,PSP,2006,Racing,THQ,0.64,0,0,0.05,0.69 +Skylanders: Trap Team,PS3,2014,Action,Activision,0.24,0.33,0,0.12,0.69 +Mario Pinball Land,GBA,2004,Misc,Nintendo,0.5,0.18,0,0.01,0.69 +Mappy,NES,1984,Platform,Namco Bandai Games,0,0,0.69,0,0.69 +J-League Soccer: Prime Goal,SNES,1993,Sports,Namco Bandai Games,0,0,0.69,0,0.69 +Dragon Ball Z: Budokai,GC,2003,Fighting,Atari,0.53,0.14,0,0.02,0.69 +NFL Xtreme,PS,1998,Sports,Sony Computer Entertainment,0.38,0.26,0,0.05,0.69 +The Sly Collection,PS3,2010,Platform,Sony Computer Entertainment,0.52,0.09,0.01,0.07,0.69 +One Piece: Pirate Warriors 2,PS3,2013,Action,Namco Bandai Games,0,0.2,0.42,0.07,0.69 +Assassin's Creed IV: Black Flag,PC,2013,Action,Ubisoft,0.22,0.38,0,0.1,0.69 +Harry Potter and the Chamber of Secrets,GC,2002,Action,Electronic Arts,0.53,0.14,0,0.02,0.69 +Need for Speed: Shift 2 Unleashed,PS3,2011,Racing,Electronic Arts,0.2,0.36,0,0.13,0.69 +The Lord of the Rings: The Return of the King,GC,2003,Action,Electronic Arts,0.53,0.14,0,0.02,0.69 +Nintendo Presents: New Style Boutique 2 - Fashion Forward,3DS,2015,Misc,Nintendo,0.01,0.61,0.02,0.04,0.69 +MX vs. ATV Untamed,X360,2007,Racing,THQ,0.55,0.08,0,0.06,0.69 +The Last Remnant,X360,2008,Role-Playing,Square Enix,0.25,0.2,0.18,0.06,0.69 +Frozen: Olaf's Quest,DS,2013,Platform,Disney Interactive Studios,0.28,0.35,0,0.06,0.69 +The Sims: Medieval,PC,2011,Simulation,Electronic Arts,0.27,0.32,0,0.1,0.69 +Baldur's Gate: Dark Alliance II,PS2,2004,Role-Playing,Interplay,0.34,0.26,0,0.09,0.68 +Shark Tale,GBA,2004,Action,Activision,0.49,0.18,0,0.01,0.68 +Plants vs. Zombies: Garden Warfare,XOne,2014,Shooter,Electronic Arts,0.39,0.23,0,0.06,0.68 +Kirby's Dream Collection: Special Edition,Wii,2012,Action,Nintendo,0.34,0,0.33,0.02,0.68 +Bakugan: Battle Brawlers,Wii,2009,Action,Activision,0.6,0.03,0,0.05,0.68 +Star Wars: Masters of Teras Kasi,PS,1997,Action,LucasArts,0.38,0.26,0,0.04,0.68 +The Last Story,Wii,2011,Role-Playing,Nintendo,0.32,0.13,0.18,0.04,0.68 +NBA Street Vol. 2,XB,2003,Sports,Electronic Arts,0.62,0.04,0,0.02,0.68 +Iron Man,PS3,2008,Action,Sega,0.32,0.25,0,0.11,0.68 +Disney Infinity 3.0,PS4,2015,Action,Disney Interactive Studios,0.21,0.36,0,0.11,0.68 +Spider-Man 3,PS3,2007,Platform,Activision,0.26,0.29,0.02,0.12,0.68 +NCAA Football 2005,XB,2004,Sports,Electronic Arts,0.63,0.02,0,0.03,0.68 +Mortal Kombat Mythologies: Sub-Zero,PS,1997,Fighting,GT Interactive,0.38,0.26,0,0.04,0.68 +Rayman Legends,WiiU,2013,Platform,Ubisoft,0.26,0.33,0.03,0.06,0.68 +Naruto: Clash of Ninja,GC,2003,Fighting,Tomy Corporation,0.53,0.14,0,0.02,0.68 +Prince of Persia: The Two Thrones,PS2,2005,Action,Ubisoft,0.57,0.02,0,0.09,0.68 +Hot Shots Golf: Open Tee 2,PSP,2007,Sports,Sony Computer Entertainment,0.21,0.11,0.28,0.08,0.68 +Metro: Last Light,PS4,2014,Action,Deep Silver,0.22,0.3,0.04,0.12,0.68 +Fossil Fighters: Champions,DS,2010,Role-Playing,Nintendo,0.32,0,0.34,0.02,0.68 +Mercenaries: Playground of Destruction,XB,2005,Action,LucasArts,0.54,0.11,0,0.03,0.68 +Sniper Elite 3,PS4,2014,Shooter,505 Games,0.22,0.33,0,0.13,0.68 +Doom (2016),XOne,2016,Shooter,Bethesda Softworks,0.39,0.23,0,0.06,0.68 +Bushido Blade 2,PS,1998,Fighting,SquareSoft,0.25,0.17,0.22,0.04,0.68 +Suikoden II,PS,1998,Role-Playing,Konami Digital Entertainment,0.15,0.1,0.38,0.04,0.68 +Need for Speed (2015),XOne,2015,Racing,Electronic Arts,0.3,0.33,0,0.06,0.68 +Cars: Mater-National Championship,DS,2007,Racing,THQ,0.63,0.01,0,0.05,0.68 +FIFA Soccer 06,XB,2005,Sports,Electronic Arts,0.29,0.38,0,0.01,0.68 +Hidden Objects: Mystery Stories,DS,2009,Adventure,GSP,0.19,0.43,0,0.05,0.68 +Red Steel,Wii,2006,Shooter,Ubisoft,0.55,0.04,0.04,0.05,0.68 +Fight Night 2004,XB,2004,Fighting,Electronic Arts,0.51,0.15,0,0.02,0.68 +Tourist Trophy: The Real Riding Simulator,PS2,2006,Racing,Sony Computer Entertainment,0.28,0.22,0.11,0.07,0.68 +Mass Effect,PC,2008,Role-Playing,Electronic Arts,0,0.59,0,0.09,0.68 +.hack//Mutation Part 2,PS2,2002,Role-Playing,Atari,0.23,0.18,0.2,0.06,0.68 +Country Dance,Wii,2011,Misc,Funbox Media,0.59,0.04,0,0.04,0.68 +Turok,PS3,2008,Action,Touchstone,0.35,0.22,0.01,0.1,0.68 +Midway Arcade Treasures 2,PS2,2004,Misc,Midway Games,0.33,0.26,0,0.09,0.68 +100 Classic Books,DS,2008,Misc,Nintendo,0.13,0.52,0,0.02,0.67 +Unreal Tournament III,PS3,2007,Shooter,Midway Games,0.33,0.24,0,0.11,0.67 +Final Fantasy Crystal Chronicles: Ring of Fates,DS,2007,Role-Playing,Square Enix,0.22,0.01,0.42,0.02,0.67 +Return to Castle Wolfenstein: Tides of War,XB,2003,Shooter,Activision,0.49,0.16,0,0.02,0.67 +Need for Speed Rivals,XOne,2013,Racing,Electronic Arts,0.45,0.17,0,0.05,0.67 +Lollipop Chainsaw,PS3,2012,Action,Warner Bros. Interactive Entertainment,0.26,0.21,0.11,0.09,0.67 +The Darkness,PS3,2007,Shooter,Take-Two Interactive,0.2,0.34,0,0.13,0.67 +Street Sk8er,PS,1998,Sports,Electronic Arts,0.37,0.25,0,0.04,0.67 +Club Penguin: Elite Penguin Force - Herbert's Revenge,DS,2010,Adventure,Disney Interactive Studios,0.4,0.22,0,0.06,0.67 +Contra: Legacy of War,PS,1996,Shooter,Konami Digital Entertainment,0.37,0.25,0,0.04,0.67 +Blazing Angels: Squadrons of WWII,PS3,2006,Simulation,Ubisoft,0.35,0.22,0,0.1,0.67 +Fight Night Round 2004,XB,2004,Fighting,Electronic Arts,0.46,0.18,0,0.03,0.67 +Wolfenstein: The New Order,XOne,2014,Shooter,Bethesda Softworks,0.33,0.28,0,0.06,0.67 +The Biggest Loser: Challenge,Wii,2010,Sports,THQ,0.49,0.13,0,0.05,0.67 +Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS,DS,2006,Misc,Rocket Company,0,0,0.67,0,0.67 +Spice World,PS,1998,Action,Sony Computer Entertainment,0.37,0.25,0,0.04,0.67 +Star Wars: Republic Commando,XB,2005,Shooter,Activision,0.48,0.17,0,0.02,0.67 +Armored Core 3,PS2,2002,Simulation,Metro 3D,0.22,0.17,0.23,0.06,0.67 +Need For Speed: Undercover,Wii,2008,Racing,Electronic Arts,0.27,0.32,0,0.07,0.67 +Taiko no Tatsujin Wii,Wii,2008,Misc,Namco Bandai Games,0,0,0.67,0,0.67 +The Witcher 3: Wild Hunt,PC,2015,Role-Playing,Namco Bandai Games,0.2,0.42,0,0.05,0.67 +Virtua Tennis: World Tour (US & Others sales),PSP,2005,Sports,Sega,0.16,0.36,0,0.14,0.67 +The LEGO Movie Videogame,PS4,2014,Action,Warner Bros. Interactive Entertainment,0.24,0.31,0.01,0.11,0.67 +Ratatouille,PSP,2007,Action,THQ,0.22,0.28,0,0.16,0.67 +RIFT,PC,2011,Role-Playing,Unknown,0.44,0.16,0,0.07,0.67 +Wild ARMs 2,PS,1999,Role-Playing,Sony Computer Entertainment,0.19,0.13,0.31,0.04,0.67 +Summer Sports: Paradise Island (Others sales),Wii,2008,Sports,Ubisoft,0,0.66,0,0.01,0.67 +Castlevania: Lords of Shadow,X360,2010,Action,Konami Digital Entertainment,0.42,0.18,0.01,0.05,0.67 +BioShock Infinite,PC,2013,Shooter,Take-Two Interactive,0.28,0.3,0,0.08,0.67 +Minecraft: Story Mode,PS4,2015,Adventure,Mojang,0.23,0.33,0,0.11,0.67 +TV Show King Party,Wii,2008,Puzzle,Ubisoft,0.18,0.41,0,0.08,0.67 +Crafting Mama,DS,2010,Simulation,505 Games,0.4,0.21,0.01,0.05,0.67 +007: Quantum of Solace,Wii,2008,Action,Activision,0.3,0.29,0.01,0.07,0.67 +Rock Band 3,Wii,2010,Misc,MTV Games,0.56,0.06,0,0.05,0.67 +Command & Conquer: Red Alert 3,PC,2008,Strategy,Electronic Arts,0.01,0.64,0,0.02,0.67 +The Fairly Odd Parents: Breakin Da Rules,PS2,2003,Platform,THQ,0.33,0.25,0,0.09,0.67 +WWE SmackDown vs. RAW 2007,PSP,2006,Fighting,THQ,0.33,0.2,0,0.14,0.67 +Peppa Pig: Fun and Games,DS,2010,Misc,Ubisoft,0,0.58,0,0.09,0.67 +Adventures of Tron,2600,1981,Action,Mattel Interactive,0.63,0.03,0,0.01,0.67 +Phoenix Wright: Ace Attorney - Trials and Tribulations,DS,2007,Adventure,Capcom,0.33,0.05,0.25,0.04,0.67 +NHL 13,X360,2012,Sports,Electronic Arts,0.51,0.11,0,0.05,0.67 +Borderlands: The Pre-Sequel,PS3,2014,Shooter,Take-Two Interactive,0.25,0.26,0.05,0.11,0.67 +The Sims 3: High-End Loft Stuff,PC,2010,Simulation,Electronic Arts,0.01,0.53,0,0.12,0.67 +"The Chronicles of Narnia: The Lion, The Witch and The Wardrobe",GBA,,Action,Disney Interactive Studios,0.48,0.18,0,0.01,0.67 +Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou,DS,2006,Misc,IE Institute,0,0,0.66,0,0.66 +Pro Pinball: Big Race USA,PS,1999,Simulation,Take-Two Interactive,0.37,0.25,0,0.04,0.66 +NFL Street,XB,2004,Sports,Electronic Arts,0.49,0.15,0,0.02,0.66 +Shaun White Snowboarding,PS3,2008,Sports,Ubisoft,0.31,0.24,0.01,0.1,0.66 +The LEGO Movie Videogame,WiiU,2014,Action,Warner Bros. Interactive Entertainment,0.35,0.23,0.03,0.06,0.66 +Tony Hawk's Proving Ground,PS2,2007,Sports,Activision,0.55,0.02,0,0.09,0.66 +MLB 2004,PS2,2003,Sports,Sony Computer Entertainment,0.32,0.25,0,0.08,0.66 +Naruto Shippuden: Ultimate Ninja 4,PS2,2007,Fighting,Atari,0.26,0.01,0.13,0.26,0.66 +Tiger Woods PGA Tour 2000,PS,1998,Sports,Electronic Arts,0.37,0.25,0,0.04,0.66 +Darkstone,PS,2001,Role-Playing,Electronic Arts,0.37,0.25,0,0.04,0.66 +NCAA March Madness 2003,PS2,2002,Sports,Electronic Arts,0.32,0.25,0,0.08,0.66 +Finding Nemo,XB,2003,Action,THQ,0.48,0.16,0,0.02,0.66 +Thrillville,PS2,2006,Strategy,Atari,0.55,0.02,0,0.09,0.66 +NHL 10,X360,2009,Sports,Electronic Arts,0.51,0.1,0,0.06,0.66 +Jikkyou World Soccer 2000 Final Edition,PS2,2000,Sports,Konami Digital Entertainment,0,0,0.66,0,0.66 +Madagascar,GC,2005,Platform,Activision,0.52,0.13,0,0.02,0.66 +Puzzler Brain Games,Wii,2012,Puzzle,Namco Bandai Games,0,0,0.66,0,0.66 +Dragon Quest Monsters: Caravan Heart,GBA,2003,Role-Playing,Enix Corporation,0,0,0.64,0.02,0.66 +Strawberry Shortcake: Summertime Adventure,GBA,2004,Adventure,Majesco Entertainment,0.47,0.18,0,0.01,0.66 +Rayman Legends,PS3,2013,Platform,Ubisoft,0.14,0.38,0,0.14,0.66 +Rocksmith 2014,PC,2013,Misc,Ubisoft,0.35,0.24,0,0.07,0.66 +Street Fighter Anniversary Collection,PS2,2004,Fighting,Capcom,0.32,0.25,0,0.08,0.66 +Legend of Legaia,PS,1998,Role-Playing,Sony Computer Entertainment,0.37,0.25,0,0.04,0.66 +Napoleon: Total War,PC,2010,Strategy,Sega,0.02,0.52,0,0.12,0.66 +Fist of the North Star: Ken's Rage,PS3,2010,Action,Ubisoft Annecy,0.06,0.03,0.55,0.02,0.66 +Wario: Master of Disguise,DS,2007,Platform,Nintendo,0.28,0.02,0.33,0.03,0.66 +Toy Story 3: The Video Game,PSP,2010,Action,Disney Interactive Studios,0.27,0.25,0,0.14,0.66 +The Sims: Bustin' Out,GC,2003,Simulation,Electronic Arts,0.43,0.2,0,0.03,0.66 +Tiger Woods PGA Tour 09,PS3,2008,Sports,Electronic Arts,0.34,0.22,0,0.1,0.66 +Keystone Kapers,2600,1982,Action,Activision,0.62,0.04,0,0.01,0.66 +LEGO Marvel Super Heroes,PSV,2013,Action,Warner Bros. Interactive Entertainment,0.15,0.35,0,0.16,0.66 +New Play Control! Pikmin,Wii,2008,Strategy,Nintendo,0.29,0.14,0.19,0.04,0.66 +Shrek: Hassle at the Castle,GBA,2002,Action,TDK Mediactive,0.47,0.17,0,0.01,0.66 +Suikoden IV,PS2,2004,Role-Playing,Konami Digital Entertainment,0.17,0.13,0.3,0.05,0.66 +Gods Eater Burst,PSP,2010,Action,Namco Bandai Games,0.03,0,0.62,0,0.66 +Disney's Kim Possible 2: Drakken's Demise,GBA,2004,Platform,Disney Interactive Studios,0.47,0.17,0,0.01,0.66 +Um Jammer Lammy,PS,1998,Misc,Sony Computer Entertainment,0.12,0.08,0.41,0.04,0.66 +Brothers In Arms: Road to Hill 30,XB,2005,Shooter,Ubisoft,0.49,0.14,0,0.02,0.66 +Madden NFL 10,PSP,2009,Sports,Electronic Arts,0.5,0.08,0,0.08,0.66 +"Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)",PSP,2007,Action,Activision,0.23,0.27,0,0.16,0.66 +Taiko no Tatsujin DS: Touch de Dokodon!,DS,2007,Misc,Namco Bandai Games,0,0,0.66,0,0.66 +F1 2015,PS4,2015,Racing,Codemasters,0.09,0.44,0.03,0.09,0.66 +Scene It? Box Office Smash,X360,2008,Misc,Microsoft Game Studios,0.33,0.25,0,0.07,0.66 +Animaniacs Ten Pin Alley,PS,1998,Sports,ASC Games,0.36,0.25,0,0.04,0.66 +Disney Infinity 2.0: Marvel Super Heroes,WiiU,2014,Action,Disney Interactive Studios,0.38,0.22,0,0.06,0.65 +NHL 13,PS3,2012,Sports,Electronic Arts,0.33,0.22,0,0.1,0.65 +Kung Fu Panda,PS2,2008,Action,Activision,0.24,0,0,0.41,0.65 +Tom Clancy's EndWar,PS3,2008,Strategy,Ubisoft,0.32,0.22,0.01,0.1,0.65 +The Evil Within,XOne,2014,Action,Bethesda Softworks,0.35,0.25,0,0.05,0.65 +Tiger Woods PGA Tour 09,X360,2008,Sports,Electronic Arts,0.35,0.23,0,0.07,0.65 +Radiata Stories,PS2,2005,Role-Playing,Square Enix,0.18,0.14,0.29,0.05,0.65 +F-Zero GX,GC,2003,Racing,Nintendo,0.41,0.11,0.12,0.02,0.65 +Disney's Chicken Little,PS2,2005,Platform,Disney Interactive Studios,0.32,0.25,0,0.08,0.65 +Wall-E,PSP,2008,Platform,THQ,0.29,0.22,0,0.14,0.65 +Yoshi Topsy-Turvy,GBA,2004,Platform,Nintendo,0.25,0.09,0.3,0.01,0.65 +Up,DS,2009,Action,THQ,0.31,0.28,0,0.07,0.65 +Monster Jam: Maximum Destruction,PS2,2002,Racing,Ubisoft,0.32,0.25,0,0.08,0.65 +Real Heroes: Firefighter,Wii,2009,Action,Rondomedia,0.56,0.04,0,0.05,0.65 +Cartoon Network Block Party / Cartoon Network Speedway Double Pack,GBA,2005,Misc,THQ,0.47,0.17,0,0.01,0.65 +World of Dragon Warrior - Torneko: The Last Hope,PS,1999,Role-Playing,Enix Corporation,0.02,0.01,0.58,0.04,0.65 +Drawn to Life: The Next Chapter,DS,2009,Puzzle,THQ,0.45,0.14,0,0.06,0.65 +MLB 14: The Show,PS4,2014,Sports,Sony Computer Entertainment America,0.58,0,0,0.07,0.65 +Tiger Woods PGA Tour 10,X360,2009,Sports,Electronic Arts,0.39,0.2,0,0.06,0.65 +Advance Wars 2: Black Hole Rising,GBA,2003,Strategy,Nintendo,0.47,0.17,0,0.01,0.65 +Fire Emblem: Shadow Dragon,DS,2008,Role-Playing,Nintendo,0.31,0.03,0.27,0.03,0.65 +Centipede,PS,1998,Shooter,Atari,0.36,0.25,0,0.04,0.65 +Drakengard,PS2,2003,Role-Playing,Square Enix,0.19,0.15,0.26,0.05,0.65 +SingStar Pop Hits,PS2,2007,Misc,Sony Computer Entertainment,0,0.5,0,0.15,0.65 +Kung-Fu Master,2600,1987,Action,Activision,0.6,0.04,0,0.01,0.65 +Champions: Return to Arms,PS2,2005,Role-Playing,Sony Online Entertainment,0.32,0.25,0,0.08,0.65 +Harry Potter and the Goblet of Fire,PS2,2005,Action,Electronic Arts,0.54,0.02,0,0.09,0.65 +SingStar R&B,PS2,2007,Misc,Sony Computer Entertainment,0,0.05,0,0.6,0.65 +Mary-Kate and Ashley: Magical Mystery Mall,PS,2000,Adventure,Acclaim Entertainment,0.36,0.24,0,0.04,0.65 +MX vs. ATV Untamed,PSP,2007,Racing,THQ,0.35,0.18,0,0.12,0.65 +Disney Sing It: Party Hits,Wii,2010,Misc,Disney Interactive Studios,0.5,0.11,0,0.05,0.65 +Dead or Alive 5,PS3,2012,Fighting,Tecmo Koei,0.23,0.15,0.2,0.07,0.65 +Star Ocean: First Departure,PSP,2007,Role-Playing,Square Enix,0.2,0.14,0.22,0.09,0.65 +Super Robot Taisen Impact,PS2,2002,Strategy,Banpresto,0,0,0.65,0,0.65 +Dragon Age: Inquisition,PS3,2014,Role-Playing,Electronic Arts,0.26,0.23,0.05,0.1,0.65 +The Black Eyed Peas Experience,Wii,2011,Misc,Ubisoft,0.39,0.2,0,0.06,0.65 +Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken,DS,2008,Misc,Namco Bandai Games,0,0,0.65,0,0.65 +Sengoku Basara: Samurai Heroes,PS3,2010,Action,Capcom,0.17,0.04,0.4,0.03,0.65 +Crysis 3,PC,2013,Shooter,Electronic Arts,0.17,0.39,0,0.09,0.64 +Paws & Claws: Pet Vet,DS,2007,Simulation,THQ,0.6,0,0,0.05,0.64 +Harry Potter and the Half-Blood Prince,PS2,2009,Action,Electronic Arts,0.13,0.07,0,0.44,0.64 +Crash Bandicoot Purple: Ripto's Rampage,GBA,2004,Platform,Vivendi Games,0.46,0.17,0,0.01,0.64 +Diablo III,XOne,2014,Role-Playing,Activision,0.35,0.24,0,0.05,0.64 +Spyro: A Hero's Tail,PS2,2004,Platform,Vivendi Games,0.32,0.25,0,0.08,0.64 +Crash of the Titans,PSP,2007,Action,Vivendi Games,0.25,0.25,0,0.15,0.64 +Aliens: Colonial Marines,PS3,2013,Shooter,Sega,0.2,0.31,0,0.13,0.64 +Crash: Twinsanity,PS2,2004,Platform,Vivendi Games,0.32,0.25,0,0.08,0.64 +Test Drive Unlimited 2,PS3,,Racing,Atari,0.16,0.35,0.01,0.12,0.64 +Max Payne 2: The Fall of Max Payne,XB,2003,Shooter,Take-Two Interactive,0.47,0.15,0,0.02,0.64 +Dragon Ball: Raging Blast 2,X360,2010,Fighting,Namco Bandai Games,0.49,0.09,0.01,0.05,0.64 +GoldenEye: Rogue Agent,PS2,2004,Shooter,Electronic Arts,0.54,0.02,0,0.09,0.64 +NBA 2K17,XOne,2016,Sports,Take-Two Interactive,0.54,0.04,0,0.07,0.64 +Lost Planet: Extreme Condition,PS3,2008,Shooter,Capcom,0.31,0.17,0.07,0.09,0.64 +XCOM: Enemy Unknown,X360,2012,Strategy,Take-Two Interactive,0.36,0.23,0,0.05,0.64 +Rayman 3D,3DS,2011,Platform,Ubisoft,0.23,0.35,0,0.06,0.64 +LEGO Marvel's Avengers,PS4,2016,Action,Warner Bros. Interactive Entertainment,0.25,0.29,0,0.1,0.64 +James Bond 007: Everything or Nothing,XB,2004,Shooter,Electronic Arts,0.43,0.19,0,0.02,0.64 +X2: Wolverine's Revenge,PS2,2003,Platform,Activision,0.31,0.24,0,0.08,0.64 +Stuntman: Ignition,X360,2007,Racing,THQ,0.25,0.32,0,0.07,0.64 +NBA Live 06,XB,2005,Sports,Electronic Arts,0.57,0.04,0,0.03,0.64 +Dragon Age II,PC,2011,Action,Electronic Arts,0.23,0.33,0,0.09,0.64 +LEGO Star Wars II: The Original Trilogy,X360,2006,Action,LucasArts,0.55,0.04,0,0.05,0.64 +Tom Clancy's Rainbow Six,N64,1999,Shooter,Red Storm Entertainment,0.48,0.15,0,0.01,0.64 +Castlevania,N64,1999,Platform,Konami Digital Entertainment,0.44,0.1,0.04,0.05,0.64 +Rayman 2: The Great Escape,N64,1999,Platform,Ubisoft,0.4,0.22,0,0.02,0.64 +Nicktoons Collection: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.46,0.17,0,0.01,0.64 +The Lord of the Rings: Conquest,X360,2009,Action,Electronic Arts,0.37,0.21,0,0.06,0.64 +TimeSplitters 2,XB,2002,Shooter,Eidos Interactive,0.29,0.33,0,0.01,0.64 +Onimusha: Dawn of Dreams,PS2,2006,Action,Capcom,0.15,0.12,0.34,0.04,0.64 +NieR,PS3,2010,Role-Playing,Square Enix,0.17,0.2,0.2,0.07,0.64 +The Princess and the Frog,DS,2009,Platform,Disney Interactive Studios,0.41,0.17,0,0.06,0.64 +Sega Rally Revo,PS3,2007,Racing,Sega,0.07,0.43,0,0.14,0.64 +SpongeBob SquarePants: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.46,0.17,0,0.01,0.64 +Gravity Rush,PSV,2012,Action,Sony Computer Entertainment,0.26,0.2,0.09,0.1,0.64 +Konami Collector's Series: Arcade Advanced,GBA,2002,Misc,Konami Digital Entertainment,0.46,0.17,0,0.01,0.64 +White Knight Chronicles II,PS3,2010,Role-Playing,Sony Computer Entertainment,0.23,0.09,0.27,0.05,0.64 +Wolfenstein,PS3,2009,Shooter,Activision,0.25,0.28,0,0.11,0.64 +Jampack Volume 13 (RP-T),PS2,2005,Misc,Sony Computer Entertainment,0.31,0.24,0,0.08,0.64 +LEGO Dimensions,PS4,2015,Action,Warner Bros. Interactive Entertainment,0.22,0.32,0,0.1,0.64 +Start the Party!,PS3,2010,Misc,Sony Computer Entertainment,0.07,0.42,0,0.14,0.64 +Cruis'n World,N64,1998,Racing,Nintendo,0.59,0.04,0,0.01,0.64 +Madden NFL 2001,N64,2000,Sports,Electronic Arts,0.6,0.03,0,0.01,0.64 +NBA Live 08,PS3,2007,Sports,Electronic Arts,0.56,0.02,0.01,0.05,0.64 +The Walking Dead: Survival Instinct,X360,2013,Shooter,Activision,0.46,0.12,0,0.05,0.64 +Donkey Kong Barrel Blast,Wii,2007,Racing,Nintendo,0.2,0.26,0.11,0.06,0.64 +Okami,Wii,2008,Action,Capcom,0.45,0.1,0.04,0.05,0.64 +Lemony Snicket's A Series of Unfortunate Events,PS2,2004,Platform,Activision,0.31,0.24,0,0.08,0.64 +Middle-Earth: Shadow of Mordor,PS3,2014,Action,Warner Bros. Interactive Entertainment,0.2,0.33,0.01,0.1,0.64 +Family Feud: 2010 Edition,Wii,2009,Misc,Ubisoft,0.59,0,0,0.04,0.64 +Red Steel 2,Wii,2010,Shooter,Ubisoft,0.36,0.21,0.01,0.06,0.63 +X-Men Legends II: Rise of Apocalypse,PS2,2005,Role-Playing,Activision,0.53,0.02,0,0.09,0.63 +Nightmare Creatures,PS,1997,Action,Sony Computer Entertainment,0.35,0.24,0,0.04,0.63 +SingStar Queen,PS2,2009,Misc,Sony Computer Entertainment,0.08,0.12,0,0.44,0.63 +Just Dance 2015,X360,2014,Misc,Ubisoft,0.41,0.16,0,0.06,0.63 +F1 2013,PS3,2013,Racing,Codemasters,0.01,0.45,0.03,0.15,0.63 +Juiced 2: Hot Import Nights,X360,2007,Racing,THQ,0.22,0.34,0,0.07,0.63 +Tony Hawk's Pro Skater 2x,XB,2001,Sports,Activision,0.41,0.19,0,0.03,0.63 +Sim Theme Park,PS,1999,Strategy,Electronic Arts,0.35,0.24,0,0.04,0.63 +FIFA Soccer 2003,XB,2002,Sports,Electronic Arts,0.2,0.4,0,0.04,0.63 +Ghostbusters: The Video Game,X360,2009,Action,Atari,0.43,0.14,0,0.06,0.63 +Monster Hunter 2,PS2,,Role-Playing,Capcom,0,0,0.63,0,0.63 +NASCAR 06: Total Team Control,PS2,2005,Racing,Electronic Arts,0.53,0.02,0,0.09,0.63 +Tony Hawk's Project 8,PS3,2006,Sports,Activision,0.3,0.23,0.01,0.1,0.63 +Dogz,GBA,2004,Simulation,Ubisoft,0.45,0.17,0,0.01,0.63 +Disney Universe,PS3,2011,Action,Disney Interactive Studios,0.3,0.23,0,0.09,0.63 +Guitar Hero: Metallica,PS3,2009,Misc,Activision,0.28,0.24,0,0.1,0.63 +Iron Man,PSP,2008,Action,Sega,0.46,0.09,0,0.09,0.63 +Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb,3DS,2012,Misc,Namco Bandai Games,0,0,0.63,0,0.63 +Harry Potter and the Half-Blood Prince,DS,2009,Action,Electronic Arts,0.21,0.35,0,0.07,0.63 +A Bug's Life,N64,1998,Platform,Activision,0.49,0.13,0,0.01,0.63 +Super Castlevania IV,SNES,1991,Platform,Konami Digital Entertainment,0.32,0.05,0.25,0.01,0.63 +DJ Hero 2,Wii,2010,Misc,Activision,0.49,0.09,0,0.04,0.63 +Angry Birds Trilogy,3DS,2012,Action,Activision,0.38,0.2,0,0.05,0.63 +Condemned 2: Bloodshot,X360,2008,Action,Sega,0.38,0.19,0,0.06,0.63 +Cabela's Big Game Hunter (2008),Wii,2007,Sports,Activision,0.58,0,0,0.05,0.63 +Mobile Suit Z Gundam: AEUG vs. Titans,PS2,2003,Fighting,Namco Bandai Games,0,0,0.63,0,0.63 +Just Dance 3,PS3,2011,Misc,Ubisoft,0.33,0.21,0,0.09,0.63 +Call of Duty: Black Ops,DS,2010,Shooter,Activision,0.54,0.05,0,0.04,0.63 +God of War III,PS4,2015,Action,Sony Computer Entertainment,0.23,0.29,0.01,0.1,0.63 +Ape Escape 2,PS2,2002,Platform,Sony Computer Entertainment,0.12,0.09,0.38,0.03,0.63 +Metroid Prime: Trilogy,Wii,2009,Shooter,Nintendo,0.43,0.05,0,0.14,0.63 +X-Man,2600,1982,Action,Universal Gamex,0.58,0.04,0,0.01,0.63 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",X360,2009,Shooter,Activision,0.34,0.23,0,0.06,0.63 +Advance Wars: Days of Ruin,DS,,Strategy,Nintendo,0.44,0.13,0,0.06,0.63 +The Sims 3: Generations,PC,2011,Simulation,Electronic Arts,0.4,0.23,0,0,0.63 +The Crew,XOne,2014,Racing,Ubisoft,0.24,0.34,0,0.05,0.63 +Battle of Giants: Dragons,DS,2009,Strategy,Ubisoft,0.31,0.25,0,0.06,0.63 +Dragon Quest Monsters Joker 3,3DS,2016,Role-Playing,Square Enix,0,0,0.63,0,0.63 +Sonic & All-Stars Racing Transformed,X360,2012,Racing,Sega,0.2,0.37,0,0.06,0.63 +Shin Megami Tensei: Persona 3 FES,PS2,2007,Role-Playing,Tecmo Koei,0.22,0.2,0.16,0.05,0.63 +FIFA Soccer 2002,PS2,2001,Sports,Electronic Arts,0.31,0.24,0,0.08,0.63 +Shin Megami Tensei: Persona 3 Portable,PSP,2009,Role-Playing,Ghostlight,0.18,0.06,0.34,0.04,0.63 +Final Fantasy VII International,PS,1997,Role-Playing,Square,0,0,0.59,0.04,0.63 +Tiger Woods PGA Tour 12: The Masters,X360,2011,Sports,Electronic Arts,0.4,0.17,0,0.05,0.63 +Okami,PS2,2006,Action,Capcom,0.11,0.03,0.15,0.34,0.63 +NHL 2001,PS,2000,Sports,Electronic Arts,0.35,0.24,0,0.04,0.63 +World of Zoo,Wii,2009,Simulation,THQ,0.41,0.16,0,0.05,0.63 +LEGO Jurassic World,XOne,2015,Action,Warner Bros. Interactive Entertainment,0.35,0.22,0,0.06,0.63 +Wet,PS3,2009,Shooter,Bethesda Softworks,0.22,0.27,0.01,0.11,0.63 +MySims Racing,DS,2009,Racing,Electronic Arts,0.26,0.29,0,0.07,0.63 +Buzz Lightyear of Star Command,PS,2000,Platform,Activision,0.35,0.24,0,0.04,0.63 +Namco Museum,GC,2002,Misc,Namco Bandai Games,0.48,0.13,0,0.02,0.63 +Nobunaga no Yabou: Haouden,SNES,1993,Strategy,Tecmo Koei,0.3,0,0.32,0,0.62 +Virtua Cop,SAT,1995,Shooter,Sega,0,0,0.62,0,0.62 +Metal Gear Solid 2: Substance,XB,,Action,Konami Digital Entertainment,0.38,0.22,0,0.03,0.62 +Tony Hawk's American Wasteland,XB,2005,Sports,Activision,0.4,0.2,0,0.03,0.62 +WWF in Your House,PS,1996,Fighting,Acclaim Entertainment,0.35,0.24,0,0.04,0.62 +Prince of Persia: The Forgotten Sands,X360,2010,Action,Ubisoft,0.3,0.26,0,0.06,0.62 +Vanquish,PS3,2010,Shooter,Sega,0.21,0.22,0.11,0.09,0.62 +Wild ARMs 3,PS2,2002,Role-Playing,Ubisoft,0.16,0.13,0.29,0.04,0.62 +NBA ShootOut '97,PS,1997,Sports,Sony Computer Entertainment,0.35,0.24,0,0.04,0.62 +Sacred 2: Fallen Angel,PS3,2009,Role-Playing,Deep Silver,0.22,0.23,0.08,0.09,0.62 +Madden NFL 07,GC,2006,Sports,Electronic Arts,0.48,0.13,0,0.02,0.62 +Far Cry 4,PC,2014,Shooter,Ubisoft,0.15,0.42,0,0.05,0.62 +Battlezone,2600,1982,Shooter,Atari,0.58,0.03,0,0.01,0.62 +Tiger Woods PGA Tour 2004,XB,2003,Sports,Electronic Arts,0.47,0.13,0,0.02,0.62 +LEGO Pirates of the Caribbean: The Video Game,3DS,2011,Action,Disney Interactive Studios,0.29,0.28,0,0.06,0.62 +Pro Evolution Soccer 2015,PS3,2014,Sports,Konami Digital Entertainment,0.1,0.23,0.22,0.08,0.62 +Evolve,XOne,2015,Shooter,Take-Two Interactive,0.36,0.2,0,0.06,0.62 +Tak 2: The Staff of Dreams,PS2,2004,Platform,THQ,0.3,0.24,0,0.08,0.62 +Dead Island: Riptide,PS3,2013,Action,Deep Silver,0.26,0.2,0.07,0.09,0.62 +Warriors Orochi 3,PS3,2011,Action,Ubisoft Annecy,0,0.04,0.57,0.01,0.62 +Bolt,DS,2008,Adventure,Disney Interactive Studios,0.35,0.21,0,0.06,0.62 +Viewtiful Joe,GC,2003,Action,Capcom,0.38,0.1,0.12,0.02,0.62 +The Urbz: Sims in the City,GBA,2004,Simulation,Electronic Arts,0.37,0.22,0,0.03,0.62 +Beetle Adventure Racing!,N64,1999,Racing,Electronic Arts,0.4,0.2,0,0.02,0.62 +FIFA Soccer,PSV,2012,Sports,Electronic Arts,0.17,0.34,0.02,0.09,0.62 +Disney's 102 Dalmatians: Puppies to the Rescue,PS,2000,Platform,Eidos Interactive,0.34,0.23,0,0.04,0.62 +Wipeout: The Game,DS,2010,Misc,Activision,0.58,0,0,0.04,0.62 +Strike Force Bowling,PS2,2004,Sports,Play It,0.3,0.24,0,0.08,0.62 +SpongeBob's Atlantis SquarePantis,Wii,2007,Action,THQ,0.57,0.01,0,0.04,0.62 +Metal Gear Solid V: Ground Zeroes,PS3,2014,Action,Konami Digital Entertainment,0.14,0.14,0.27,0.06,0.62 +Halloween,2600,1982,Action,Wizard Video Games,0.58,0.03,0,0.01,0.62 +Dragon Ball Z: Ultimate Tenkaichi,PS3,2011,Fighting,Namco Bandai Games,0.27,0.18,0.09,0.08,0.62 +WWE SmackDown vs. Raw 2010,PSP,2009,Fighting,THQ,0.25,0.23,0,0.14,0.62 +Bass Landing,PS,1999,Sports,ASCII Entertainment,0.21,0.14,0.23,0.04,0.62 +XGRA: Extreme G-Racing Association,PS2,2004,Racing,Eidos Interactive,0.3,0.24,0,0.08,0.62 +Mario's Picross,GB,1995,Puzzle,Nintendo,0,0,0.62,0,0.62 +Pac-Man Player's Choice Bundle,GC,2003,Misc,Namco Bandai Games,0.48,0.12,0,0.02,0.62 +Rocksmith 2014,PS4,2014,Misc,Ubisoft,0.34,0.17,0,0.11,0.62 +Fighters MEGAMiX,SAT,1996,Fighting,Sega,0,0,0.62,0,0.62 +Bahamut Lagoon,SNES,1996,Role-Playing,SquareSoft,0,0,0.62,0,0.62 +Wall-E,X360,2008,Platform,THQ,0.29,0.26,0,0.07,0.62 +Tomb Raider III: Adventures of Lara Croft,PC,1998,Action,Eidos Interactive,0.59,0.03,0,0,0.62 +Toshochu: Run for Money,3DS,2012,Adventure,Namco Bandai Games,0,0,0.62,0,0.62 +Dragon Quest Monsters: Joker 2 Professional,DS,2011,Role-Playing,Square Enix,0,0,0.62,0,0.62 +NFL Quarterback Club 99,N64,1998,Sports,Acclaim Entertainment,0.59,0.02,0,0,0.62 +Super Robot Taisen ? Gaiden,PS,2001,Strategy,Banpresto,0,0,0.58,0.04,0.62 +Formula 1: Championship Edition,PS3,2006,Racing,Sony Computer Entertainment,0,0.57,0.04,0,0.61 +Muramasa: The Demon Blade,Wii,2009,Role-Playing,Rising Star Games,0.33,0.13,0.11,0.04,0.61 +NBA 2K9,PS3,2008,Sports,Take-Two Interactive,0.56,0,0,0.05,0.61 +SingStar Singalong With Disney,PS2,2008,Misc,Sony Computer Entertainment,0,0.04,0,0.57,0.61 +NHL 16,PS4,2015,Sports,Electronic Arts,0.35,0.15,0,0.11,0.61 +Plants vs. Zombies: Garden Warfare,PS4,2014,Shooter,Electronic Arts,0.21,0.29,0.01,0.11,0.61 +NFL Fever 2003,XB,2002,Sports,Microsoft Game Studios,0.46,0.13,0,0.02,0.61 +Samurai Warriors 2,PS2,2006,Action,Tecmo Koei,0.02,0.02,0.57,0.01,0.61 +Dynasty Warriors 8,PS3,2013,Action,Tecmo Koei,0.12,0.11,0.34,0.05,0.61 +Disney Sing It: Family Hits,Wii,2010,Misc,Disney Interactive Studios,0.39,0.18,0,0.05,0.61 +2 Games in 1: Sonic Battle & ChuChu Rocket!,GBA,2005,Misc,THQ,0.44,0.16,0,0.01,0.61 +Robotech: Battlecry,PS2,2002,Shooter,TDK Mediactive,0.3,0.23,0,0.08,0.61 +Dora the Explorer: Super Spies,GBA,2004,Platform,Gotham Games,0.44,0.16,0,0.01,0.61 +New Carnival Games,Wii,2010,Misc,Take-Two Interactive,0.35,0.21,0,0.05,0.61 +Tony Hawk: RIDE,X360,2009,Sports,Activision,0.46,0.1,0,0.05,0.61 +Just Dance 2014,WiiU,2013,Misc,Ubisoft,0.33,0.23,0,0.05,0.61 +Cooking Mama 4: Kitchen Magic!,3DS,2011,Simulation,505 Games,0.5,0.07,0,0.04,0.61 +Texas Hold 'Em Poker,GBA,2004,Misc,Majesco Entertainment,0.44,0.16,0,0.01,0.61 +Time Crisis 3,PS2,2003,Shooter,Namco Bandai Games,0.3,0.23,0,0.08,0.61 +Cabela's Monster Buck Hunter,Wii,2010,Sports,Activision,0.58,0,0,0.03,0.61 +Ganbaru Watashi no Kakei Diary,DS,2007,Misc,Nintendo,0,0,0.61,0,0.61 +pro evolution soccer 2011,X360,2010,Sports,Konami Digital Entertainment,0.09,0.44,0,0.07,0.61 +New Play Control! Donkey Kong Jungle Beat,Wii,2008,Platform,Nintendo,0.24,0.17,0.14,0.05,0.61 +Small Soldiers,PS,1998,Platform,Electronic Arts,0.34,0.23,0,0.04,0.61 +Yakuza: Dead Souls,PS3,2011,Shooter,Sega,0.09,0.07,0.42,0.03,0.61 +Littlest Pet Shop: Garden,DS,2008,Simulation,Electronic Arts,0.31,0.24,0,0.06,0.61 +Half-Life 2,XB,2005,Shooter,Electronic Arts,0.37,0.21,0,0.03,0.61 +Duke Nukem: Total Meltdown,PS,1997,Shooter,GT Interactive,0.34,0.23,0,0.04,0.61 +Pac-Man Party,Wii,2010,Misc,Namco Bandai Games,0.47,0.09,0.01,0.04,0.61 +Jak and Daxter: The Lost Frontier,PSP,2009,Platform,Sony Computer Entertainment,0.18,0.27,0,0.15,0.61 +Major League Baseball 2K8,X360,2008,Sports,Bethesda Softworks,0.56,0,0,0.05,0.61 +SimCity DS,DS,2007,Simulation,Electronic Arts,0.33,0.03,0.21,0.03,0.61 +Major League Baseball 2K9,X360,2009,Sports,Spike,0.56,0,0,0.05,0.61 +Petz: Dogz Pack,DS,2008,Simulation,Ubisoft,0.56,0,0,0.05,0.61 +Split/Second,X360,2010,Racing,Disney Interactive Studios,0.32,0.23,0,0.06,0.61 +Final Fantasy IV Advance,GBA,2005,Role-Playing,Nintendo,0.27,0.1,0.22,0.01,0.61 +Madden NFL 2003,GBA,2002,Sports,Electronic Arts,0.44,0.16,0,0.01,0.61 +Tomb Raider Chronicles,PS,1999,Action,Eidos Interactive,0.34,0.23,0,0.04,0.61 +Harry Potter and the Goblet of Fire,GBA,2005,Action,Electronic Arts,0.44,0.16,0,0.01,0.61 +Dragon Ball Z: Buu's Fury,GBA,2004,Action,Atari,0.44,0.16,0,0.01,0.61 +Madden NFL 2002,GC,2001,Sports,Electronic Arts,0.47,0.12,0,0.02,0.61 +Guitar Hero: Smash Hits,Wii,2009,Misc,Activision,0.33,0.21,0,0.06,0.61 +Disney TH!NK Fast: The Ultimate Trivia Showdown,Wii,2008,Misc,Disney Interactive Studios,0.37,0.16,0.01,0.06,0.61 +Spider-Man: Mysterio's Menace,GBA,2001,Action,Activision,0.43,0.16,0,0.01,0.61 +Madden NFL 2000,N64,1999,Sports,Electronic Arts,0.58,0.02,0,0,0.61 +"Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)",X360,2007,Action,Activision,0.51,0.05,0,0.05,0.61 +Game & Watch Gallery 4,GBA,2002,Misc,Nintendo,0.43,0.16,0,0.01,0.61 +Littlest Pet Shop: Jungle,DS,2008,Simulation,Electronic Arts,0.34,0.2,0,0.06,0.61 +Naruto: Ultimate Ninja,PS2,2003,Fighting,Atari,0.5,0.02,0,0.08,0.61 +Fighters Uncaged,X360,2010,Fighting,Ubisoft,0.31,0.24,0,0.06,0.61 +Call of Juarez: Bound in Blood,X360,2009,Shooter,Ubisoft,0.3,0.24,0,0.06,0.61 +New Play Control! Pikmin 2,Wii,2009,Strategy,Nintendo,0.11,0.14,0.33,0.02,0.6 +Tony Hawk's Underground,GBA,2003,Sports,Activision,0.43,0.16,0,0.01,0.6 +Hot Shots Golf: World Invitational,PSV,2011,Sports,Sony Computer Entertainment,0.19,0.11,0.25,0.06,0.6 +Monster Trucks,GBA,2004,Racing,Majesco Entertainment,0.43,0.16,0,0.01,0.6 +Shadow The Hedgehog,PS2,2005,Platform,Sega,0.5,0.02,0,0.08,0.6 +Wave Race: Blue Storm,GC,2001,Racing,Nintendo,0.4,0.1,0.09,0.02,0.6 +Backyard Wrestling: Don't Try This at Home,PS2,2003,Fighting,Eidos Interactive,0.3,0.23,0,0.08,0.6 +Fight Night Round 2,XB,2005,Fighting,Electronic Arts,0.42,0.16,0,0.02,0.6 +MonHun Nikki: Poka Poka Ailu Mura,PSP,2010,Role-Playing,Capcom,0,0,0.6,0,0.6 +The Golden Compass,DS,2007,Action,Sega,0.28,0.25,0,0.06,0.6 +NBA 2K8,PS2,2007,Sports,Take-Two Interactive,0.5,0.02,0,0.08,0.6 +Phineas and Ferb: Across the 2nd Dimension,Wii,2011,Action,Disney Interactive Studios,0.36,0.19,0,0.05,0.6 +Disney Infinity,WiiU,2013,Action,Disney Interactive Studios,0.33,0.22,0,0.05,0.6 +The Golden Compass,Wii,,Action,Sega,0.26,0.28,0,0.07,0.6 +WarioWare D.I.Y.,DS,2009,Misc,Nintendo,0.18,0.19,0.2,0.04,0.6 +Tony Hawk: RIDE,PS3,2009,Sports,Activision,0.38,0.15,0,0.08,0.6 +LEGO Jurassic World,3DS,2015,Action,Warner Bros. Interactive Entertainment,0.31,0.22,0.03,0.05,0.6 +Alice: Madness Returns,PS3,2011,Adventure,Electronic Arts,0.22,0.25,0.04,0.09,0.6 +LEGO The Hobbit,PS4,2014,Action,Warner Bros. Interactive Entertainment,0.12,0.37,0,0.1,0.6 +Suikoden,PS,1995,Role-Playing,Konami Digital Entertainment,0.21,0.14,0.21,0.04,0.6 +Secret Agent Clank,PS2,2009,Platform,Sony Computer Entertainment,0.13,0.18,0,0.29,0.6 +Rayman Arena,PS2,2001,Racing,Ubisoft,0.29,0.23,0,0.08,0.6 +Avatar: The Game,PSP,2009,Action,Ubisoft,0.22,0.24,0,0.14,0.6 +Jaws Unleashed,PS2,2006,Action,THQ,0.5,0.02,0,0.08,0.6 +Puyo Puyo Sun,SAT,1997,Puzzle,Compile,0,0,0.6,0,0.6 +Half-Life,PS2,2001,Shooter,Vivendi Games,0.29,0.23,0,0.08,0.6 +Tomb Raider (2013),XOne,2014,Action,Square Enix,0.34,0.21,0,0.05,0.6 +Mickey's Speedway USA,N64,2000,Racing,Nintendo,0.37,0.08,0.14,0.01,0.6 +International Superstar Soccer 64,N64,1997,Sports,Konami Digital Entertainment,0.09,0.26,0.23,0.02,0.6 +Skylanders SWAP Force,WiiU,2013,Platform,Activision,0.4,0.15,0,0.06,0.6 +NASCAR Heat 2002,PS2,2001,Racing,Infogrames,0.29,0.23,0,0.08,0.6 +Disney Sing It! High School Musical 3: Senior Year,Wii,2008,Misc,Disney Interactive Studios,0.32,0.23,0,0.04,0.6 +From TV Animation One Piece: Grand Battle 2,PS,2002,Fighting,Namco Bandai Games,0,0,0.56,0.04,0.6 +BeatMania Append 3rdMix,PS,1998,Simulation,Konami Digital Entertainment,0,0,0.56,0.04,0.6 +PGR3 - Project Gotham Racing 3,X360,2005,Racing,Microsoft Game Studios,0.49,0.03,0.03,0.05,0.6 +XCOM: Enemy Unknown,PS3,2012,Strategy,Take-Two Interactive,0.24,0.25,0,0.11,0.6 +Blur,X360,2010,Racing,Activision,0.25,0.28,0,0.06,0.6 +Xena: Warrior Princess,PS,1998,Adventure,Electronic Arts,0.33,0.23,0,0.04,0.6 +Scribblenauts: Unlimited,3DS,2012,Action,Warner Bros. Interactive Entertainment,0.55,0.01,0,0.04,0.6 +Front Mission,SNES,1995,Strategy,SquareSoft,0,0,0.6,0,0.6 +NHL 11,PS3,2010,Sports,Electronic Arts,0.4,0.13,0,0.07,0.6 +Kinect Rush: A Disney Pixar Adventure,X360,2012,Adventure,Microsoft Game Studios,0.38,0.16,0,0.05,0.6 +Monopoly,X360,2008,Misc,Electronic Arts,0.34,0.2,0,0.06,0.6 +Disney Infinity 2.0: Marvel Super Heroes,PS4,2014,Action,Disney Interactive Studios,0.26,0.24,0,0.1,0.6 +Major League Baseball 2K7,PS2,2007,Sports,Spike,0.29,0.23,0,0.08,0.6 +Asphalt: Urban GT,DS,2004,Racing,Ubisoft,0.31,0.22,0,0.06,0.6 +The Fight: Lights Out,PS3,2010,Fighting,Sony Computer Entertainment,0.29,0.22,0,0.09,0.6 +Dai-2-Ji Super Robot Taisen ?,PS2,2003,Strategy,Banpresto,0,0,0.6,0,0.6 +Pokemon Trozei!,DS,2005,Puzzle,Nintendo,0.26,0,0.31,0.02,0.6 +Dead Space,PC,2008,Action,Electronic Arts,0,0.53,0,0.06,0.59 +Hot Wheels: Stunt Track Challenge,PS2,2004,Racing,THQ,0.29,0.23,0,0.08,0.59 +Rayman Origins,PSV,2012,Platform,Ubisoft,0.13,0.35,0,0.11,0.59 +London 2012: The Official Video Game of the Olympic Games,X360,2012,Sports,Sega,0.07,0.46,0,0.07,0.59 +Beijing 2008,X360,2008,Sports,Sega,0.15,0.38,0,0.07,0.59 +Dai-3-Ji Super Robot Taisen ?: Shuuen no Ginga e,PS2,2005,Strategy,Banpresto,0,0,0.59,0,0.59 +Jeopardy!,Wii,2010,Misc,THQ,0.56,0,0,0.03,0.59 +Jikkyou Powerful Pro Yakyuu '97 Kaimakuban,PS,1997,Sports,Konami Digital Entertainment,0,0,0.56,0.04,0.59 +Assassin's Creed: Brotherhood,PC,2011,Action,Ubisoft,0.15,0.34,0,0.1,0.59 +CyberTiger,PS,1998,Sports,Electronic Arts,0.33,0.22,0,0.04,0.59 +Jampack Fall 2001,PS,2001,Misc,Sony Computer Entertainment,0.33,0.22,0,0.04,0.59 +Medal of Honor: Frontline,GC,2002,Shooter,Electronic Arts,0.46,0.12,0,0.02,0.59 +Final Fantasy: The 4 Heroes of Light,DS,2009,Role-Playing,Square Enix,0.23,0.11,0.23,0.03,0.59 +Iron Man,Wii,2008,Action,Sega,0.31,0.22,0,0.06,0.59 +Kane & Lynch 2: Dog Days,PS3,2010,Shooter,Square Enix,0.17,0.28,0.05,0.1,0.59 +NFL Blitz 2001,PS,2000,Sports,Midway Games,0.33,0.22,0,0.04,0.59 +Total War: Shogun 2,PC,2011,Strategy,Sega,0.19,0.31,0,0.09,0.59 +Jikkyou Powerful Pro Yakyuu '98 Kaimakuban,PS,1998,Sports,Konami Digital Entertainment,0,0,0.55,0.04,0.59 +Rock Band 2,PS2,2008,Misc,MTV Games,0.29,0.23,0,0.08,0.59 +Yakuza 5,PS3,2012,Action,Sega,0,0,0.59,0,0.59 +LEGO Indiana Jones 2: The Adventure Continues,PSP,2009,Action,Activision,0.21,0.24,0,0.14,0.59 +BurgerTime,2600,1981,Puzzle,Mattel Interactive,0.55,0.03,0,0.01,0.59 +Naruto: The Broken Bond,X360,2008,Action,Ubisoft,0.24,0.28,0,0.07,0.59 +2002 FIFA World Cup,PS2,2002,Sports,Electronic Arts,0.21,0.17,0.16,0.06,0.59 +MVP Baseball 2004,XB,2004,Sports,Electronic Arts,0.44,0.13,0,0.02,0.59 +Crash Bandicoot: The Wrath of Cortex,GC,2002,Platform,Universal Interactive,0.46,0.12,0,0.02,0.59 +Smurf: Rescue In Gargamel's Castle,2600,1981,Action,Coleco,0.55,0.03,0,0.01,0.59 +Spelling Challenges and more!,DS,2007,Misc,505 Games,0.54,0,0,0.04,0.59 +Go Diego Go! Great Dinosaur Rescue,Wii,2008,Action,Take-Two Interactive,0.53,0.02,0,0.04,0.59 +"Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)",Wii,2007,Action,Activision,0.52,0.03,0,0.04,0.59 +Extreme-G,N64,1997,Racing,Acclaim Entertainment,0.47,0.11,0,0.01,0.59 +Ready 2 Rumble Boxing,N64,1999,Sports,Midway Games,0.47,0.11,0,0.01,0.59 +Payday 2,X360,2013,Shooter,505 Games,0.33,0.21,0,0.05,0.59 +Dead or Alive Xtreme Beach Volleyball,XB,2003,Sports,Microsoft Game Studios,0.36,0.08,0.14,0.02,0.59 +Tales of Rebirth,PS2,2004,Role-Playing,Namco Bandai Games,0,0,0.59,0,0.59 +SoulCalibur V,X360,2012,Fighting,Namco Bandai Games,0.39,0.14,0.02,0.04,0.59 +NHL 12,PS3,2011,Sports,Electronic Arts,0.36,0.16,0,0.07,0.59 +Tales of Zestiria,PS3,2015,Role-Playing,Namco Bandai Games,0.05,0.09,0.42,0.03,0.59 +Silent Hill: Shattered Memories,PS2,2010,Action,Konami Digital Entertainment,0.13,0.22,0.01,0.23,0.59 +Madden NFL 06,X360,,Sports,Electronic Arts,0.54,0,0.01,0.03,0.59 +Skate it,Wii,2008,Sports,Electronic Arts,0.51,0.04,0,0.05,0.59 +Game Party in Motion,X360,2010,Misc,Warner Bros. Interactive Entertainment,0.36,0.18,0,0.05,0.59 +Barbie: Race & Ride,PS,1999,Action,Sony Computer Entertainment,0.33,0.22,0,0.04,0.59 +Lost: Via Domus,X360,2008,Action,Ubisoft,0.18,0.34,0,0.07,0.59 +Mega Man Anniversary Collection,PS2,2004,Platform,Capcom,0.29,0.22,0,0.08,0.59 +Final Fantasy Anniversary Edition,PSP,2007,Role-Playing,Square Enix,0.39,0.02,0.13,0.04,0.59 +Dark Souls II,PS4,2015,Role-Playing,Namco Bandai Games,0.2,0.22,0.08,0.08,0.59 +Ben 10: Alien Force,PSP,2008,Action,Koch Media,0.35,0.14,0,0.1,0.59 +Deus Ex: Human Revolution,PC,2011,Shooter,Square Enix,0.25,0.25,0,0.09,0.59 +Zumba Fitness,PS3,2010,Sports,505 Games,0.28,0.21,0,0.09,0.59 +Harvest Moon: Friends of Mineral Town,GBA,2003,Simulation,Ubisoft,0.34,0.13,0.11,0.01,0.59 +Backyard NBA Basketball,PS2,2003,Sports,Atari,0.29,0.22,0,0.07,0.59 +FIFA Soccer 10,DS,2009,Sports,Electronic Arts,0.14,0.37,0,0.07,0.59 +Kirby's Dream Course,SNES,1994,Sports,Nintendo,0,0,0.59,0,0.59 +Doom 3 BFG Edition,PS3,2012,Shooter,Bethesda Softworks,0.26,0.22,0,0.1,0.59 +Mega Man X7,PS2,2003,Action,Capcom,0.22,0.17,0.14,0.06,0.58 +Top Spin 3,Wii,2008,Action,Take-Two Interactive,0.15,0.37,0,0.07,0.58 +Petz Dogz 2,Wii,2007,Simulation,Ubisoft,0.53,0.01,0,0.04,0.58 +SpongeBob SquarePants featuring Nicktoons: Globs of Doom,PS2,2008,Action,THQ,0.29,0.22,0,0.07,0.58 +The Conduit,Wii,2009,Shooter,Sega,0.29,0.23,0,0.06,0.58 +Just Dance 2016,WiiU,2015,Misc,Ubisoft,0.28,0.25,0,0.05,0.58 +Tokimeki Memorial: Forever with You,PS,1995,Simulation,Konami Digital Entertainment,0,0,0.55,0.04,0.58 +Diablo,PS,1997,Role-Playing,Electronic Arts,0.29,0.19,0.07,0.04,0.58 +Cabela's Dangerous Hunts 2011,Wii,2010,Sports,Activision,0.53,0.02,0,0.04,0.58 +NHL 15,PS4,2014,Sports,Electronic Arts,0.3,0.18,0,0.1,0.58 +Q*bert,2600,1982,Puzzle,Parker Bros.,0.55,0.03,0,0.01,0.58 +Romancing SaGa,PS2,2005,Role-Playing,Square Enix,0.06,0.04,0.47,0.01,0.58 +The Lord of the Rings: The Third Age,PS2,2004,Role-Playing,Electronic Arts,0.49,0.02,0,0.08,0.58 +Harvest Moon: Sunshine Islands,DS,2008,Simulation,Rising Star Games,0.35,0.03,0.17,0.03,0.58 +Trivial Pursuit,Wii,2009,Misc,Electronic Arts,0.21,0.31,0,0.07,0.58 +The Legend of Spyro: Dawn of the Dragon,Wii,2008,Platform,Vivendi Games,0.35,0.18,0,0.05,0.58 +The Sims 3: World Adventures,PC,2009,Simulation,Electronic Arts,0.02,0.18,0,0.39,0.58 +Kinect Sports Rivals,XOne,2014,Sports,Microsoft Game Studios,0.3,0.22,0.02,0.04,0.58 +Rayman Origins,Wii,2011,Platform,Ubisoft,0.23,0.29,0,0.07,0.58 +WWE 2K16,XOne,2015,Sports,Take-Two Interactive,0.31,0.22,0,0.05,0.58 +Titanfall,PC,2014,Shooter,Electronic Arts,0.21,0.3,0,0.07,0.58 +NCAA Football 09,PS3,2008,Sports,Electronic Arts,0.54,0,0,0.04,0.58 +Tom Clancy's HAWX,X360,2009,Action,Ubisoft,0.31,0.19,0.02,0.06,0.58 +Sammy Sosa High Heat Baseball 2001,PS,2000,Sports,3DO,0.32,0.22,0,0.04,0.58 +Frozen: Olaf's Quest,3DS,2013,Platform,Disney Interactive Studios,0.27,0.26,0,0.05,0.58 +Terminator 3: Rise of the Machines,PS2,2003,Action,Atari,0.28,0.22,0,0.07,0.58 +"Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)",X360,2010,Shooter,Activision,0.37,0.15,0,0.05,0.58 +Harvest Moon: The Tale of Two Towns,DS,2010,Simulation,Natsume,0.27,0.06,0.22,0.03,0.58 +FIFA: Road to World Cup 98,N64,1997,Sports,Electronic Arts,0.15,0.39,0,0.03,0.58 +World Cup 98,N64,1998,Sports,Electronic Arts,0.14,0.4,0,0.04,0.58 +International Superstar Soccer '98,N64,1998,Sports,Konami Digital Entertainment,0.06,0.3,0.19,0.03,0.58 +NASCAR: Dirt to Daytona,PS2,,Racing,Unknown,0.28,0.22,0,0.07,0.58 +Unreal Tournament,PS2,2000,Shooter,Infogrames,0.28,0.22,0,0.07,0.58 +Digimon World 2,PS,2000,Role-Playing,Namco Bandai Games,0.23,0.16,0.16,0.04,0.58 +Tales of Phantasia,PS,1998,Role-Playing,Namco Bandai Games,0,0,0.54,0.04,0.58 +Prince of Persia: The Two Thrones,XB,2005,Action,Ubisoft,0.33,0.22,0,0.03,0.58 +Xenosaga Episode II: Jenseits von Gut und B?se,PS2,2004,Role-Playing,Sony Computer Entertainment,0.28,0.22,0,0.07,0.58 +Gex: Enter the Gecko,PS,1998,Platform,BMG Interactive Entertainment,0.32,0.22,0,0.04,0.58 +Shrek 2: Beg for Mercy,GBA,2004,Adventure,Activision,0.42,0.15,0,0.01,0.58 +Mega Man Star Force 2: Zerker x Ninja / Saurian,DS,2007,Action,Capcom,0.25,0,0.31,0.02,0.58 +JoJo's Bizarre Adventure: All Star Battle,PS3,2013,Fighting,Namco Bandai Games,0.05,0.02,0.5,0.01,0.58 +Petz Nursery,DS,2009,Simulation,Ubisoft,0.53,0,0,0.04,0.58 +Contra: Shattered Soldier,PS2,2002,Shooter,Konami Digital Entertainment,0.28,0.22,0,0.07,0.58 +Championship Motocross featuring Ricky Carmichael,PS,1998,Racing,THQ,0.32,0.22,0,0.04,0.58 +Dragon Ball Z: Chou Saiya Densetsu,SNES,1992,Role-Playing,Namco Bandai Games,0,0,0.58,0,0.58 +NBA 2K7,X360,2006,Sports,Take-Two Interactive,0.53,0,0,0.04,0.58 +WWE 2K16,PS3,2015,Sports,Take-Two Interactive,0.21,0.27,0,0.09,0.58 +Phoenix Wright: Ace Attorney - Justice for All,DS,2006,Adventure,Capcom,0.24,0.05,0.26,0.03,0.58 +Fire Emblem: Seisen no Keifu,SNES,1996,Strategy,Nintendo,0,0,0.58,0,0.58 +Rock Band 3,PS3,2010,Misc,MTV Games,0.43,0.09,0,0.06,0.58 +Disgaea 4: A Promise Unforgotten,PS3,2011,Role-Playing,Nippon Ichi Software,0.27,0.11,0.14,0.06,0.58 +BlazBlue: Calamity Trigger,PS3,2009,Fighting,PQube,0.36,0.1,0.06,0.06,0.58 +Tenchu 2: Birth of the Stealth Assassins,PS,2000,Action,Activision,0.32,0.22,0,0.04,0.58 +Tony Hawk's Pro Skater 4,GC,2002,Sports,Activision,0.45,0.12,0,0.02,0.58 +MLB 11: The Show,PS3,2011,Sports,Sony Computer Entertainment,0.54,0,0,0.04,0.58 +Naruto: Uzumaki Chronicles 2,PS2,2006,Action,Namco Bandai Games,0.28,0.22,0,0.07,0.58 +NHL 06,PS2,2005,Sports,Electronic Arts,0.48,0.02,0,0.08,0.58 +NHL 10,PS3,2009,Sports,Electronic Arts,0.38,0.12,0,0.07,0.58 +Rooms: The Main Building,DS,2010,Adventure,Nintendo,0.1,0.41,0.01,0.06,0.58 +Rapala: We Fish,Wii,2009,Sports,Activision,0.52,0.02,0,0.04,0.58 +Parasite Eve II,PS,1999,Role-Playing,SquareSoft,0.32,0.22,0,0.04,0.58 +Tetris Party Deluxe,Wii,2010,Puzzle,Nintendo,0.34,0.17,0.02,0.05,0.58 +NFL Blitz 2000,N64,1999,Sports,Midway Games,0.55,0.02,0,0,0.58 +Ratchet & Clank: Quest for Booty,PS3,2008,Platform,Sony Computer Entertainment,0,0.53,0,0.04,0.58 +Madden NFL 2002,XB,,Sports,Unknown,0.53,0.02,0,0.03,0.58 +NCAA Football 10,PS2,2009,Sports,Electronic Arts,0.28,0.22,0,0.07,0.58 +Top Spin 3,PS3,2008,Action,Take-Two Interactive,0.08,0.37,0,0.12,0.57 +Shin Megami Tensei IV,3DS,2013,Role-Playing,Atlus,0.28,0,0.27,0.02,0.57 +Theme Park,PS,1994,Simulation,Electronic Arts,0.24,0.16,0.13,0.04,0.57 +Blacksite: Area 51,X360,2007,Shooter,Midway Games,0.29,0.23,0,0.06,0.57 +Spider-Man 3,X360,2007,Platform,Activision,0.49,0.04,0,0.04,0.57 +ATV Offroad Fury: Blazin' Trails,PSP,2005,Racing,SouthPeak Games,0.53,0,0,0.04,0.57 +Far Cry Instincts,XB,2005,Shooter,Ubisoft,0.32,0.24,0,0.02,0.57 +Hasbro Family Game Night,PS2,2008,Puzzle,Electronic Arts,0.28,0.22,0,0.07,0.57 +Tony Hawk's Pro Skater 4,GBA,2002,Sports,Activision,0.41,0.15,0,0.01,0.57 +Up,Wii,2009,Action,THQ,0.23,0.28,0,0.06,0.57 +Tales of the Abyss,PS2,2005,Role-Playing,Namco Bandai Games,0,0,0.57,0,0.57 +Disney Universe,X360,2011,Action,Disney Interactive Studios,0.37,0.15,0,0.05,0.57 +Iron Man,X360,2008,Action,Sega,0.27,0.24,0,0.06,0.57 +Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu,PS,2000,Strategy,Namco Bandai Games,0,0,0.54,0.04,0.57 +Spyro Orange: The Cortex Conspiracy,GBA,2004,Action,Vivendi Games,0.41,0.15,0,0.01,0.57 +Enslaved: Odyssey to the West,PS3,2010,Action,Namco Bandai Games,0.24,0.24,0.01,0.09,0.57 +SpongeBob SquarePants featuring Nicktoons: Globs of Doom,DS,2008,Action,THQ,0.53,0,0,0.04,0.57 +Beyond The Beyond,PS,1995,Role-Playing,Sony Computer Entertainment,0.11,0.08,0.35,0.04,0.57 +Ben 10: Alien Force,PS2,2008,Action,Koch Media,0.22,0.02,0,0.33,0.57 +Tomb Raider: Anniversary,PSP,2007,Action,Eidos Interactive,0.21,0.23,0,0.13,0.57 +"Warhammer 40,000: Space Marine",X360,2011,Shooter,THQ,0.25,0.27,0,0.06,0.57 +Madden NFL 06,GC,2005,Sports,Electronic Arts,0.44,0.11,0,0.02,0.57 +No More Heroes,Wii,2007,Action,Rising Star Games,0.3,0.17,0.04,0.05,0.57 +Assassin's Creed II,PC,2010,Action,Ubisoft,0.01,0.45,0,0.11,0.57 +Petz Wild Animals: Tigerz,DS,2008,Simulation,Ubisoft,0.52,0.01,0,0.04,0.57 +Naruto: Ultimate Ninja 2,PS2,2004,Fighting,Namco Bandai Games,0.47,0.02,0,0.08,0.57 +Defiance,X360,2013,Shooter,Trion Worlds,0.38,0.15,0,0.04,0.57 +Dogz,DS,2006,Simulation,Ubisoft,0.51,0.02,0,0.04,0.57 +3D Dot Game Heroes,PS3,2009,Role-Playing,SouthPeak Games,0.36,0.12,0.03,0.07,0.57 +The Mysterious Murasame Castle,NES,1986,Action,Nintendo,0,0,0.57,0,0.57 +NBA Hangtime,N64,1997,Sports,GT Interactive,0.48,0.08,0,0,0.57 +Jillian Michaels Fitness Ultimatum 2010,Wii,2009,Sports,Majesco Entertainment,0.52,0.01,0,0.04,0.57 +Pro Evolution Soccer 2012,PSP,2011,Action,Konami Digital Entertainment,0.1,0.12,0.29,0.07,0.57 +Grease,Wii,2010,Misc,505 Games,0.27,0.25,0,0.05,0.57 +Blood Wake,XB,2001,Shooter,Microsoft Game Studios,0.43,0.12,0,0.02,0.57 +Dynasty Warriors 5: Xtreme Legends,PS2,2005,Action,Tecmo Koei,0.11,0.08,0.35,0.03,0.57 +Skylanders: Spyro's Adventure,3DS,2011,Action,Activision,0.32,0.2,0,0.05,0.57 +Dora The Explorer: Dora Saves the Snow Princess,Wii,2008,Platform,Take-Two Interactive,0.5,0.03,0,0.04,0.57 +Jampack Summer 2002,PS2,2002,Misc,Sony Computer Entertainment,0.28,0.22,0,0.07,0.57 +FIFA World Cup Germany 2006,PS2,2006,Sports,Electronic Arts,0.47,0.02,0,0.08,0.57 +Wreckless: ThE YaKuza MisSiOns,XB,2002,Racing,Activision,0.42,0.11,0.02,0.02,0.57 +Super Bomberman,SNES,1992,Puzzle,Hudson Soft,0,0,0.57,0,0.57 +SpongeBob SquarePants: Battle for Bikini Bottom,XB,2003,Platform,THQ,0.45,0.1,0,0.02,0.57 +Spec Ops: The Line,PS3,2012,Shooter,Take-Two Interactive,0.19,0.25,0.04,0.09,0.57 +SD Gundam G Generation Neo,PS2,2002,Strategy,Namco Bandai Games,0,0,0.57,0,0.57 +Bratz 4 Real,DS,2007,Adventure,THQ,0.29,0.22,0,0.06,0.57 +RalliSport Challenge,XB,2002,Racing,Microsoft Game Studios,0.39,0.16,0,0.02,0.57 +Resident Evil Outbreak File #2,PS2,2004,Action,Capcom,0.19,0.15,0.17,0.05,0.57 +Bob the Builder: Can We Fix It?,PS,2000,Action,THQ,0.31,0.21,0,0.04,0.57 +XIII,PS2,2003,Shooter,Ubisoft,0.28,0.22,0,0.07,0.57 +NHL 14,PS3,2013,Sports,Electronic Arts,0.28,0.19,0,0.09,0.57 +LEGO Rock Band,X360,2009,Misc,Warner Bros. Interactive Entertainment,0.4,0.12,0,0.05,0.57 +Bolt,Wii,2008,Adventure,Disney Interactive Studios,0.19,0.31,0,0.06,0.57 +Top Spin 3,X360,2008,Action,Take-Two Interactive,0.09,0.4,0,0.07,0.57 +Tom Clancy's HAWX,PS3,2009,Action,Ubisoft,0.21,0.22,0.05,0.09,0.57 +LEGO Dimensions,X360,2015,Action,Warner Bros. Interactive Entertainment,0.24,0.28,0,0.05,0.56 +Breath of Fire IV,PS,2000,Role-Playing,Capcom,0.11,0.08,0.34,0.04,0.56 +True Crime: Streets of LA,GC,2003,Action,Activision,0.44,0.11,0,0.02,0.56 +Odin Sphere,PS2,2007,Role-Playing,Square Enix,0.23,0.18,0.09,0.06,0.56 +Donkey Kong Jungle Climber,DS,2007,Platform,Nintendo,0.26,0.04,0.24,0.03,0.56 +The Incredible Hulk,GBA,2003,Action,Universal Interactive,0.4,0.15,0,0.01,0.56 +Ms. Pac-Man Maze Madness,GBA,2004,Puzzle,Zoo Digital Publishing,0.4,0.15,0,0.01,0.56 +Arena Football,PS2,2006,Sports,Electronic Arts,0.28,0.22,0,0.07,0.56 +The Lord of the Rings: The Return of the King,GBA,2003,Action,Electronic Arts,0.4,0.15,0,0.01,0.56 +NHL Hitz 20-02,PS2,2001,Sports,Midway Games,0.28,0.22,0,0.07,0.56 +Classic NES Series: Dr. Mario,GBA,2004,Puzzle,Nintendo,0.31,0.11,0.13,0.01,0.56 +The Sims: Bustin' Out,XB,2003,Simulation,Electronic Arts,0.4,0.14,0,0.02,0.56 +NCAA March Madness 07,PS2,2007,Sports,Electronic Arts,0.28,0.22,0,0.07,0.56 +"Monsters, Inc. Scream Team",PS,2001,Platform,Sony Computer Entertainment,0.31,0.21,0,0.04,0.56 +Harry Potter Collection,PS2,2006,Misc,Electronic Arts,0.28,0.21,0,0.07,0.56 +Tony Hawk's Project 8,PSP,2006,Sports,Activision,0.41,0.08,0,0.07,0.56 +Yu-Gi-Oh! World Championship Tournament 2004,GBA,2004,Misc,Konami Digital Entertainment,0.4,0.15,0,0.01,0.56 +Cabela's Big Game Hunter 2005 Adventures,PS2,2004,Sports,Activision,0.28,0.21,0,0.07,0.56 +Hotel Dusk: Room 215,DS,2007,Adventure,Nintendo,0.27,0.05,0.22,0.03,0.56 +Knockout Kings 2001,PS2,2001,Fighting,Electronic Arts,0.28,0.21,0,0.07,0.56 +Army Men: Sarge's Heroes,PS,1999,Action,3DO,0.31,0.21,0,0.04,0.56 +Phineas and Ferb: Across the 2nd Dimension,DS,2011,Action,Disney Interactive Studios,0.32,0.19,0,0.05,0.56 +Petz Dogz 2,PS2,2007,Simulation,Ubisoft,0.28,0.21,0,0.07,0.56 +Battlefield 2: Modern Combat,XB,2005,Shooter,Electronic Arts,0.39,0.15,0,0.02,0.56 +Wolfenstein,X360,2009,Shooter,Activision,0.28,0.22,0,0.06,0.56 +All-Star Baseball 2002,PS2,2001,Sports,Acclaim Entertainment,0.27,0.21,0,0.07,0.56 +Backyard NFL Football,GBA,2002,Sports,Infogrames,0.4,0.15,0,0.01,0.56 +Need for Speed: Most Wanted,GC,2005,Racing,Electronic Arts,0.43,0.11,0,0.02,0.56 +NASCAR Rumble,PS,2000,Racing,Electronic Arts,0.31,0.21,0,0.04,0.56 +Tony Hawk: Shred,Wii,2010,Sports,Activision,0.41,0.11,0,0.04,0.56 +Tony Hawk's Proving Ground,X360,2007,Sports,Activision,0.49,0.02,0,0.04,0.56 +WWE Raw 2,XB,2003,Fighting,THQ,0.43,0.11,0,0.02,0.56 +Resident Evil 2,N64,1999,Action,Virgin Interactive,0.39,0.09,0.07,0.01,0.56 +Mega Man X2,SNES,1993,Platform,Laguna,0.09,0.02,0.45,0,0.56 +Manhunt 2,PS2,2007,Action,Take-Two Interactive,0.27,0.21,0,0.07,0.56 +Xenoblade Chronicles,3DS,2015,Role-Playing,Nintendo,0.26,0.14,0.12,0.04,0.56 +Fullmetal Alchemist and the Broken Angel,PS2,2003,Role-Playing,Square Enix,0.15,0.12,0.26,0.04,0.56 +Monster High: Ghoul Spirit,Wii,2011,Misc,THQ,0.44,0.08,0,0.04,0.56 +Final Fantasy IV: The Complete Collection,PSP,2011,Role-Playing,Square Enix,0.13,0.09,0.27,0.06,0.56 +Frontlines: Fuel of War,X360,2008,Shooter,THQ,0.34,0.15,0.01,0.05,0.56 +Lips: Number One Hits,X360,2009,Misc,Microsoft Game Studios,0.15,0.35,0,0.07,0.56 +Hamtaro: Ham-Hams Unite!,GB,2001,Role-Playing,Nintendo,0,0,0.56,0,0.56 +Batman Begins,PS2,2005,Action,Electronic Arts,0.27,0.21,0,0.07,0.56 +Viva Pinata: Pocket Paradise,DS,2008,Simulation,THQ,0.27,0.23,0,0.06,0.56 +Dr. Seuss' The Cat in the Hat,PS2,2003,Misc,Vivendi Games,0.27,0.21,0,0.07,0.56 +Barbie Groovy Games,GBA,2002,Misc,Universal Interactive,0.4,0.15,0,0.01,0.56 +Yu-Gi-Oh! Reshef of Destruction,GBA,2003,Strategy,Konami Digital Entertainment,0.4,0.15,0,0.01,0.56 +Blinx: The Time Sweeper,XB,2002,Platform,Microsoft Game Studios,0.39,0.15,0,0.02,0.56 +Madagascar: Escape 2 Africa,Wii,2008,Action,Activision,0.32,0.18,0,0.05,0.56 +Archer Maclean's Mercury,PSP,2005,Puzzle,Ignition Entertainment,0.17,0.24,0,0.14,0.56 +ESPN NFL Football,PS2,2003,Sports,Sega,0.27,0.21,0,0.07,0.56 +Fatal Fury Special,SNES,1994,Fighting,Takara,0,0,0.56,0,0.56 +Catz,DS,2006,Simulation,Ubisoft,0.49,0.02,0,0.04,0.56 +Major League Baseball 2K5,XB,2005,Sports,Take-Two Interactive,0.52,0.02,0,0.02,0.56 +DS Bimoji Training,DS,2008,Misc,Nintendo,0,0,0.56,0,0.56 +WWE 2K15,XOne,2014,Sports,Take-Two Interactive,0.28,0.23,0,0.04,0.56 +Petz Catz Clan,DS,2008,Simulation,Ubisoft,0.48,0.04,0,0.04,0.56 +Soul Sacrifice,PSV,2013,Role-Playing,Sony Computer Entertainment,0.18,0.09,0.22,0.06,0.56 +G-Force,DS,2009,Action,Disney Interactive Studios,0.27,0.23,0,0.06,0.56 +Tiger Woods PGA Tour 11,Wii,2010,Sports,Electronic Arts,0.24,0.26,0,0.06,0.56 +Soldier of Fortune: Gold Edition,PS2,2001,Shooter,Codemasters,0.27,0.21,0,0.07,0.56 +Rune Factory: A Fantasy Harvest Moon,DS,2006,Role-Playing,Rising Star Games,0.37,0.02,0.14,0.03,0.56 +Monster Jam: Path of Destruction,Wii,2010,Racing,Activision,0.5,0.02,0,0.03,0.56 +Rapala Tournament Fishing!,Wii,2006,Sports,Activision,0.51,0,0,0.04,0.56 +MX 2002 Featuring Ricky Carmichael,PS2,2001,Racing,THQ,0.27,0.21,0,0.07,0.56 +Purr Pals,DS,2007,Simulation,THQ,0.18,0.36,0,0.02,0.56 +NCAA Football 07,XB,2006,Sports,Electronic Arts,0.42,0.12,0,0.01,0.56 +God of War: Origins Collection,PS3,2011,Action,Sony Computer Entertainment,0.39,0.08,0.02,0.06,0.56 +MX vs. ATV: Alive,X360,2011,Racing,THQ,0.37,0.14,0,0.05,0.56 +Lunar: Silver Star Story Complete,PS,1998,Role-Playing,Kadokawa Shoten,0.27,0.18,0.06,0.04,0.55 +Dragon Ball: XenoVerse,PS3,2015,Fighting,Namco Bandai Games,0.15,0.2,0.14,0.07,0.55 +NBA Showtime: NBA on NBC,PS,1999,Sports,Midway Games,0.31,0.21,0,0.04,0.55 +ZhuZhu Pets 2: Featuring The Wild Bunch,DS,2010,Simulation,Activision,0.41,0.11,0,0.04,0.55 +Dragon Age: Inquisition,X360,2014,Role-Playing,Electronic Arts,0.35,0.16,0,0.05,0.55 +Soul Reaver 2,PS2,2001,Action,Eidos Interactive,0.27,0.21,0,0.07,0.55 +Metal Gear Solid 3: Subsistence,PS2,2005,Action,Konami Digital Entertainment,0.34,0.01,0.15,0.06,0.55 +Sly Cooper: Thieves in Time,PS3,2013,Platform,Sony Computer Entertainment Europe,0.35,0.13,0,0.08,0.55 +The Godfather (old US sales),XB,2006,Action,Electronic Arts,0.42,0.11,0,0.02,0.55 +Daytona USA,SAT,1994,Racing,Sega,0,0,0.55,0,0.55 +Harry Potter and the Deathly Hallows - Part 1,Wii,2010,Action,Electronic Arts,0.22,0.28,0,0.05,0.55 +Tiger Woods PGA Tour 13,PS3,2012,Sports,Electronic Arts,0.24,0.22,0,0.09,0.55 +WWF Raw,XB,2002,Fighting,THQ,0.4,0.13,0,0.02,0.55 +Shin Super Robot Taisen,PS,1996,Role-Playing,Banpresto,0,0,0.52,0.04,0.55 +Jump Super Stars,DS,2005,Fighting,Nintendo,0,0,0.55,0,0.55 +Legends of WrestleMania,PS3,2009,Fighting,THQ,0.3,0.17,0,0.07,0.55 +The Activision Decathlon,2600,1982,Sports,Activision,0.52,0.03,0,0.01,0.55 +Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~,PS,2001,Shooter,D3Publisher,0.31,0.21,0,0.04,0.55 +50 Classic Games,DS,2009,Misc,Destineer,0.52,0,0,0.04,0.55 +Fighting Force 2,PS,1999,Action,Eidos Interactive,0.31,0.21,0,0.04,0.55 +Sakura Wars,SAT,1996,Adventure,Sega,0,0,0.55,0,0.55 +Yokai Sangokushi,3DS,2016,Action,Level 5,0,0,0.55,0,0.55 +Extermination,PS2,2001,Action,Sony Computer Entertainment,0.21,0.16,0.12,0.05,0.55 +Batman: Vengeance,PS2,2001,Adventure,Ubisoft,0.27,0.21,0,0.07,0.55 +Unit 13,PSV,2012,Shooter,Sony Computer Entertainment,0.29,0.15,0.04,0.07,0.55 +Tatsunoko vs. Capcom: Ultimate All-Stars,Wii,2010,Fighting,Capcom,0.32,0.16,0.03,0.05,0.55 +TMNT,X360,2007,Action,Ubisoft,0.47,0.04,0,0.04,0.55 +F.E.A.R.,PS3,2007,Shooter,Vivendi Games,0.18,0.27,0,0.1,0.55 +Secret Agent Clank(US sales),PSP,2008,Platform,Sony Computer Entertainment,0.33,0.22,0,0,0.55 +Assassin's Creed: Unity,PC,2014,Action,Ubisoft,0.17,0.33,0,0.05,0.55 +Derby Stallion 04,PS2,2004,Sports,Enterbrain,0,0,0.55,0,0.55 +NBA 2K8,PS3,2007,Sports,Take-Two Interactive,0.5,0.01,0,0.05,0.55 +Barbie Horse Adventures: Riding Camp,DS,2008,Sports,Activision,0.51,0,0,0.04,0.55 +CrossworDS,DS,2008,Puzzle,Deep Silver,0.51,0,0,0.04,0.55 +Tony Hawk's Pro Skater 3,XB,2002,Sports,Activision,0.34,0.18,0,0.02,0.55 +Mega Man Zero,GBA,2002,Platform,Capcom,0.22,0.08,0.24,0.01,0.55 +Contender 2,PS,2000,Fighting,3DO,0.31,0.21,0,0.04,0.55 +The Amazing Spider-Man 2 (2014),PS4,2014,Action,Activision,0.2,0.25,0.02,0.09,0.55 +Star Wars: Dark Forces,PS,1996,Shooter,LucasArts,0.31,0.21,0,0.04,0.55 +SD Gundam G Generation Zero,PS,1999,Strategy,Namco Bandai Games,0,0,0.51,0.04,0.55 +Super Robot Taisen F,SAT,1997,Strategy,Banpresto,0,0,0.55,0,0.55 +Shrek 2,XB,2004,Platform,Activision,0.4,0.13,0,0.02,0.55 +Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!,PS2,2002,Sports,Sega,0,0,0.55,0,0.55 +Time Crisis: Razing Storm,PS3,2010,Shooter,Namco Bandai Games,0.18,0.21,0.07,0.08,0.55 +SpongeBob SquarePants: SuperSponge,GBA,2001,Action,THQ,0.39,0.15,0,0.01,0.55 +Super Robot Taisen F Kanketsuhen,SAT,1998,Strategy,Banpresto,0,0,0.55,0,0.55 +Enslaved: Odyssey to the West,X360,2010,Action,Namco Bandai Games,0.3,0.19,0,0.05,0.55 +Rune Factory 4,3DS,2012,Role-Playing,Xseed Games,0.31,0,0.21,0.03,0.55 +Summer Sports: Paradise Island,Wii,2008,Sports,Ubisoft,0.49,0.02,0,0.04,0.55 +Tak and the Power of Juju,GBA,2003,Platform,THQ,0.39,0.15,0,0.01,0.55 +Dynasty Warriors: Gundam 3,PS3,2010,Action,Tecmo Koei,0.11,0.05,0.36,0.02,0.55 +Mortal Kombat 3,PS,1995,Fighting,Sony Computer Entertainment,0.29,0.2,0.02,0.04,0.55 +Turok: Evolution,XB,2002,Shooter,Acclaim Entertainment,0.39,0.14,0,0.02,0.55 +Jak X: Combat Racing,PS2,2005,Racing,Sony Computer Entertainment,0.45,0.02,0,0.07,0.55 +Metro 2033,X360,2010,Shooter,THQ,0.22,0.24,0.03,0.05,0.55 +Are You Smarter than a 5th Grader? Make the Grade,Wii,2008,Misc,THQ,0.51,0,0,0.04,0.55 +American Idol,PS2,2003,Misc,Codemasters,0.27,0.21,0,0.07,0.55 +Top Gun: Fire at Will!,PS,1996,Misc,Microprose,0.3,0.21,0,0.04,0.55 +Red Dead Revolver,XB,2004,Shooter,Take-Two Interactive,0.4,0.12,0,0.02,0.55 +Dragon Ball Z: Shin Budokai,PSP,2006,Fighting,Atari,0.26,0.08,0.13,0.07,0.55 +LEGO The Hobbit,PS3,2014,Action,Warner Bros. Interactive Entertainment,0.12,0.32,0,0.1,0.54 +Iron Man,PS2,2008,Action,Sega,0.36,0,0,0.19,0.54 +SingStar Summer Party,PS2,2008,Misc,Sony Computer Entertainment,0,0.06,0,0.48,0.54 +Tiger Woods PGA Tour 08,X360,2007,Sports,Electronic Arts,0.49,0.02,0,0.04,0.54 +NBA Live 10,PS3,2009,Sports,Electronic Arts,0.46,0.03,0.01,0.05,0.54 +The SpongeBob SquarePants Movie,XB,2004,Platform,THQ,0.4,0.12,0,0.02,0.54 +FIFA Soccer 07,XB,2006,Sports,Electronic Arts,0.16,0.35,0,0.04,0.54 +Gekikuukan Pro Yakyuu: At the End of the Century 1999,PS2,2000,Sports,SquareSoft,0,0,0.54,0,0.54 +Medarot 2: Kabuto / Kuwagata Version,GB,1999,Role-Playing,Imagineer,0,0,0.54,0,0.54 +Excite Truck,Wii,2006,Racing,Nintendo,0.4,0.03,0.08,0.04,0.54 +Sacred 2: Fallen Angel,X360,2009,Role-Playing,Deep Silver,0.29,0.17,0.04,0.05,0.54 +System 3 presents Ferrari Challenge Trofeo Pirelli,Wii,2008,Racing,System 3 Arcade Software,0.07,0.4,0,0.07,0.54 +Dance Dance Revolution Ultramix,XB,2003,Simulation,Konami Digital Entertainment,0.42,0.11,0,0.02,0.54 +ModNation Racers,PSP,2010,Racing,Sony Computer Entertainment,0.11,0.27,0.02,0.14,0.54 +Crash Tag Team Racing,PS2,2005,Racing,Vivendi Games,0.27,0.21,0,0.07,0.54 +Two Worlds II,X360,2011,Role-Playing,Unknown,0.4,0.08,0.03,0.04,0.54 +Sonic & All-Stars Racing Transformed,PS3,2012,Racing,Sega,0.08,0.33,0.01,0.11,0.54 +Michael Jackson: The Experience,PS3,2011,Misc,Ubisoft,0.25,0.2,0,0.08,0.54 +Front Mission 4,PS2,2003,Strategy,Square Enix,0.14,0.11,0.25,0.04,0.54 +The Fairly Odd Parents: Breakin' Da Rules,GBA,2003,Platform,THQ,0.39,0.14,0,0.01,0.54 +LEGO Dimensions,PS3,2015,Action,Warner Bros. Interactive Entertainment,0.15,0.3,0,0.09,0.54 +Inazuma Eleven,DS,2008,Role-Playing,Nintendo,0,0.14,0.38,0.02,0.54 +Ninokuni: Shikkoku no Madoushi,DS,2010,Role-Playing,Level 5,0,0,0.54,0,0.54 +Minecraft: Story Mode,XOne,2015,Adventure,Mojang,0.29,0.21,0,0.05,0.54 +Resident Evil: Revelations 2,PS4,2015,Action,Capcom,0.13,0.24,0.1,0.07,0.54 +Manhunt 2,Wii,2007,Action,Take-Two Interactive,0.25,0.23,0,0.06,0.54 +SRS: Street Racing Syndicate,PS2,2004,Racing,Namco Bandai Games,0.26,0.21,0,0.07,0.54 +Despicable Me: The Game - Minion Mayhem,DS,2010,Puzzle,D3Publisher,0.42,0.09,0,0.04,0.54 +Def Jam: Fight for NY,XB,,Fighting,Electronic Arts,0.43,0.1,0,0.02,0.54 +Action Force,2600,1982,Action,CPG Products,0.5,0.03,0,0.01,0.54 +Gauntlet Legends,N64,1999,Action,Midway Games,0.43,0.1,0,0.01,0.54 +FIFA 99,N64,1998,Sports,Electronic Arts,0.11,0.39,0,0.03,0.54 +Kidou Senshi Gundam: Extreme VS,PS3,2011,Fighting,Namco Bandai Games,0,0,0.54,0,0.54 +Dragon Ball Z: Ultimate Tenkaichi,X360,2011,Fighting,Namco Bandai Games,0.39,0.1,0.01,0.04,0.54 +Tales of Symphonia,PS3,2013,Role-Playing,Namco Bandai Games,0.21,0.13,0.13,0.06,0.54 +Bust A Groove,PS,1998,Misc,Sony Computer Entertainment,0.09,0.06,0.35,0.04,0.54 +Fire Emblem: Path of Radiance,GC,2005,Action,Nintendo,0.29,0.08,0.16,0.01,0.54 +Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon,PS2,2002,Role-Playing,Enix Corporation,0,0,0.54,0,0.54 +Let's Draw!,DS,2008,Misc,Ubisoft,0.24,0.23,0,0.06,0.54 +Pachi-Slot Aruze Oukoku 2,PS,1999,Misc,Aruze Corp,0,0,0.5,0.04,0.54 +NHL 14,X360,2013,Sports,Electronic Arts,0.4,0.1,0,0.04,0.54 +Valkyria Chronicles II,PSP,2010,Role-Playing,Sega,0.12,0.16,0.18,0.09,0.54 +Middle-Earth: Shadow of Mordor,X360,2014,Action,Warner Bros. Interactive Entertainment,0.28,0.21,0,0.05,0.54 +Madden NFL 13,Wii,2012,Sports,Electronic Arts,0.51,0,0,0.03,0.54 +Rune Factory 2: A Fantasy Harvest Moon,DS,2008,Role-Playing,Rising Star Games,0.33,0.03,0.15,0.03,0.54 +Terminator Salvation,PS3,2009,Shooter,Warner Bros. Interactive Entertainment,0.13,0.29,0.01,0.11,0.54 +Cars 2,PS3,2011,Racing,Disney Interactive Studios,0.22,0.23,0,0.09,0.54 +Bratz: Rock Angelz,GBA,2004,Misc,THQ,0.39,0.14,0,0.01,0.54 +How to Train Your Dragon,DS,2010,Action,Activision,0.32,0.17,0,0.05,0.54 +SSX Tricky,GC,2001,Sports,Electronic Arts,0.42,0.11,0,0.01,0.54 +WWE SmackDown vs. Raw 2010,DS,2009,Fighting,THQ,0.35,0.14,0,0.05,0.54 +Greg Hastings' Tournament Paintball,XB,2004,Shooter,Activision,0.46,0.06,0,0.02,0.54 +Hello Kitty: Big City Dreams,DS,2008,Puzzle,Empire Interactive,0.42,0.08,0,0.04,0.54 +Star Fox Command,DS,2006,Shooter,Nintendo,0.39,0.01,0.1,0.04,0.54 +World Soccer Winning Eleven 7 International (JP version),PS2,2004,Sports,Konami Digital Entertainment,0,0,0.54,0,0.54 +ESPN NBA Basketball,PS2,2003,Sports,Sega,0.26,0.21,0,0.07,0.54 +Inazuma Eleven GO,3DS,2011,Role-Playing,Nintendo,0,0.05,0.48,0,0.54 +Over the Hedge,PS2,2006,Platform,Activision,0.45,0.02,0,0.07,0.54 +Mat Hoffman's Pro BMX,PS,2001,Sports,Activision,0.3,0.2,0,0.04,0.54 +Lego Star Wars: The Force Awakens,PS4,2016,Action,Warner Bros. Interactive Entertainment,0.14,0.32,0,0.08,0.54 +Epic Mickey 2: The Power of Two,X360,2012,Action,Disney Interactive Studios,0.32,0.17,0,0.04,0.54 +Popeye,2600,1982,Platform,Parker Bros.,0.5,0.03,0,0.01,0.54 +Magician's Quest: Mysterious Times,DS,2008,Role-Playing,Konami Digital Entertainment,0.04,0.01,0.48,0,0.54 +The Hobbit,PS2,2003,Platform,Vivendi Games,0.26,0.2,0,0.07,0.54 +War of the Monsters,PS2,2003,Fighting,Sony Computer Entertainment,0.26,0.2,0,0.07,0.54 +Tales of Symphonia: Dawn of the New World,Wii,2008,Role-Playing,Namco Bandai Games,0.22,0.05,0.24,0.03,0.54 +NBA Street Vol. 2,GC,,Sports,Electronic Arts,0.41,0.11,0,0.01,0.54 +The Incredible Hulk: Ultimate Destruction,PS2,2005,Action,Vivendi Games,0.26,0.2,0,0.07,0.54 +Star Wars Battlefront (2015),PC,2015,Shooter,Electronic Arts,0.13,0.37,0,0.04,0.54 +"Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare",SAT,1998,Adventure,Sega,0,0,0.53,0,0.53 +Jewel Master Egypt,DS,2009,Puzzle,Rondomedia,0.21,0.27,0,0.05,0.53 +Time Crisis II,PS2,2001,Shooter,Namco Bandai Games,0.26,0.2,0,0.07,0.53 +Clock Tower,PS,1996,Adventure,ASCII Entertainment,0.07,0.05,0.38,0.03,0.53 +NCAA March Madness 06,PS2,2005,Sports,Electronic Arts,0.45,0.02,0,0.07,0.53 +SpongeBob SquarePants featuring Nicktoons: Globs of Doom,Wii,2008,Action,THQ,0.49,0,0,0.04,0.53 +Jampack Volume 11,PS2,2004,Misc,Sony Computer Entertainment,0.26,0.2,0,0.07,0.53 +Dragon's Crown,PS3,2013,Role-Playing,Nippon Ichi Software,0.25,0.07,0.17,0.05,0.53 +Tactics Ogre: Let Us Cling Together,PSP,2010,Role-Playing,Square Enix,0.15,0.07,0.27,0.05,0.53 +Legacy of Kain: Defiance,PS2,2003,Action,Eidos Interactive,0.26,0.2,0,0.07,0.53 +SpongeBob SquarePants: Game Boy Advance Video Volume 2,GBA,2004,Misc,,0.38,0.14,0,0.01,0.53 +NCAA March Madness 2005,PS2,2004,Sports,Electronic Arts,0.44,0.02,0,0.07,0.53 +007 Racing,PS,2000,Racing,Electronic Arts,0.3,0.2,0,0.03,0.53 +Conflict: Vietnam,PS2,2004,Shooter,SCi,0.26,0.2,0,0.07,0.53 +2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe,XB,2004,Misc,Sega,0.4,0.11,0,0.02,0.53 +Mystery Dungeon: Shiren the Wanderer,DS,2006,Role-Playing,Sega,0.18,0,0.33,0.02,0.53 +SimAnimals,DS,2009,Simulation,Electronic Arts,0.26,0.21,0,0.06,0.53 +MLB SlugFest 20-04,PS2,2003,Sports,Midway Games,0.26,0.2,0,0.07,0.53 +Gex 3: Deep Cover Gecko,PS,1999,Platform,Eidos Interactive,0.3,0.2,0,0.03,0.53 +NASCAR 09,PS2,2008,Racing,Electronic Arts,0.26,0.2,0,0.07,0.53 +Blitz: The League,XB,2004,Sports,Midway Games,0.4,0.11,0,0.02,0.53 +Jampack Vol. 2,PS,1996,Misc,Sony Computer Entertainment,0.3,0.2,0,0.03,0.53 +LEGO Jurassic World,WiiU,2015,Action,Warner Bros. Interactive Entertainment,0.28,0.19,0.02,0.04,0.53 +Sesame Street: Once Upon A Monster,X360,2011,Misc,Warner Bros. Interactive Entertainment,0.39,0.1,0,0.04,0.53 +Virtual Soccer,SNES,1993,Sports,Hudson Soft,0,0,0.53,0,0.53 +Romance of the Three Kingdoms IV: Wall of Fire,SNES,1994,Strategy,Tecmo Koei,0,0,0.53,0,0.53 +Winning Post,SNES,1993,Sports,Tecmo Koei,0,0,0.53,0,0.53 +Peter Jackson's King Kong: The Official Game of the Movie,XB,2005,Action,Ubisoft,0.34,0.17,0,0.02,0.53 +SingStar Dance,PS3,2010,Misc,Sony Computer Entertainment,0.09,0.32,0,0.12,0.53 +Kirby and the Rainbow Curse,WiiU,2015,Platform,Nintendo,0.23,0.14,0.12,0.04,0.53 +Burnout Revenge,XB,2005,Racing,Electronic Arts,0.32,0.19,0,0.01,0.53 +FIFA 12,PSP,2011,Sports,Electronic Arts,0.12,0.26,0.02,0.14,0.53 +Medal of Honor: European Assault,XB,2005,Shooter,Electronic Arts,0.32,0.19,0,0.02,0.53 +Batman: Arkham City,PC,2011,Action,Warner Bros. Interactive Entertainment,0.16,0.28,0,0.09,0.53 +Ty the Tasmanian Tiger 2: Bush Rescue,PS2,2004,Platform,Electronic Arts,0.26,0.2,0,0.07,0.53 +The Lord of the Rings: The Fellowship of the Ring,XB,2002,Action,Universal Interactive,0.31,0.19,0,0.03,0.53 +NBA 06,PS2,2005,Sports,Sony Computer Entertainment,0.26,0.2,0,0.07,0.53 +Sonic & All-Stars Racing Transformed,WiiU,2012,Racing,Sega,0.2,0.27,0.02,0.05,0.53 +Spider-Man,N64,2000,Action,Activision,0.43,0.09,0,0.01,0.53 +We Cheer,Wii,2008,Simulation,505 Games,0,0,0,0.04,0.53 +Tom Clancy's Ghost Recon Advanced Warfighter 2,PSP,2007,Shooter,Ubisoft,0.35,0.1,0,0.08,0.53 +X-Men Legends,GC,2004,Role-Playing,Activision,0.41,0.11,0,0.01,0.53 +Alice in Wonderland,Wii,2010,Adventure,Disney Interactive Studios,0,0.21,0,0.05,0.53 +Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team,DS,2010,Simulation,Electronic Arts,0,0,0,0.03,0.53 +Front Mission 2,PS,1997,Strategy,SquareSoft,0,0,0.49,0.03,0.53 +Bulletstorm,PS3,2011,Shooter,Electronic Arts,0,0.2,0.01,0.08,0.53 +F.E.A.R. 2: Project Origin,X360,2009,Shooter,Warner Bros. Interactive Entertainment,0.32,0.15,0,0.05,0.53 +Tiger Woods PGA Tour 11,X360,2010,Sports,Electronic Arts,0,0.2,0,0.05,0.53 +Stuntman: Ignition,PS3,2007,Racing,THQ,0,0.26,0,0.1,0.53 +Are You Smarter Than A 5th Grader?,DS,2007,Misc,Mindscape,0,0,0,0.04,0.53 +F1 2009,PSP,2009,Racing,Codemasters,0,0.29,0,0.16,0.53 +Oni,PS2,2001,Action,Take-Two Interactive,0,0.2,0,0.07,0.53 +The Lord of the Rings: The Two Towers,GC,2002,Action,Electronic Arts,0,0.11,0,0.01,0.53 +Juiced,PS2,2005,Racing,THQ,0.26,0.2,0,0.07,0.53 +The Warriors,PS2,2005,Action,Take-Two Interactive,0.44,0.02,0,0.07,0.53 +Batman: Arkham Origins Blackgate,PSV,2013,Action,Warner Bros. Interactive Entertainment,0.2,0.2,0,0.13,0.53 +J-League Soccer: Prime Goal 2,SNES,1994,Sports,Namco Bandai Games,0,0,0.53,0,0.53 +Go Diego Go! Safari Rescue,Wii,2008,Action,Take-Two Interactive,0.48,0.01,0,0.04,0.53 +The Walking Dead: Survival Instinct,PS3,2013,Shooter,Activision,0.28,0.17,0,0.08,0.53 +Picross 3D,DS,2009,Puzzle,Nintendo,0.3,0.03,0.16,0.03,0.53 +Just Dance 2015,XOne,2014,Misc,Ubisoft,0.35,0.13,0,0.05,0.53 +Silent Hill: Origins,PSP,2007,Action,Konami Digital Entertainment,0.22,0.16,0.04,0.1,0.53 +NASCAR 2000,N64,1999,Racing,Electronic Arts,0.49,0.03,0,0,0.53 +Wayne Gretzky's 3D Hockey,N64,1996,Sports,Nintendo,0.49,0.03,0,0,0.53 +Pachi-Slot Aruze Oukoku 4,PS,2000,Misc,Aruze Corp,0,0,0.49,0.03,0.53 +Return to Castle Wolfenstein: Operation Resurrection,PS2,2003,Shooter,Activision,0.26,0.2,0,0.07,0.53 +Mario Tennis: Power Tour,GBA,2005,Sports,Nintendo,0.24,0.09,0.19,0.01,0.52 +Seaman,DC,1999,Simulation,Sega,0,0,0.52,0,0.52 +Guinness World Records: The Videogame,DS,2008,Action,Warner Bros. Interactive Entertainment,0.47,0.01,0,0.04,0.52 +The Grinch,PS,1999,Adventure,Konami Digital Entertainment,0.29,0.2,0,0.03,0.52 +GT Pro Series,Wii,2006,Racing,Ubisoft,0.46,0.01,0.02,0.04,0.52 +Tales of Destiny,PS2,2006,Role-Playing,Namco Bandai Games,0,0,0.52,0,0.52 +Spectrobes: Beyond the Portals,DS,2008,Role-Playing,Disney Interactive Studios,0.37,0.11,0,0.04,0.52 +Classic Word Games,DS,2009,Misc,Ubisoft,0.09,0.37,0,0.07,0.52 +Naruto Shippuden: Clash of Ninja Revolution 3,Wii,2009,Fighting,Nintendo,0.45,0.04,0,0.04,0.52 +Fight Night Round 3,PSP,2006,Fighting,Electronic Arts,0.46,0.02,0,0.05,0.52 +The Golden Compass,PS2,2007,Action,Sega,0.13,0,0,0.39,0.52 +Final Fantasy Chronicles,PS,2001,Role-Playing,Square,0.29,0.2,0,0.03,0.52 +NBA Live 08,X360,2007,Sports,Electronic Arts,0.47,0,0,0.04,0.52 +Syphon Filter 3,PS,2001,Shooter,Sony Computer Entertainment,0.29,0.2,0,0.03,0.52 +Star Wars Battlefront: Elite Squadron,DS,2009,Shooter,LucasArts,0.44,0.04,0,0.04,0.52 +Metal Gear Solid 2: Substance,PS2,2002,Action,Konami Digital Entertainment,0.18,0.14,0.16,0.05,0.52 +We Love Katamari,PS2,2005,Puzzle,Electronic Arts,0.26,0.2,0,0.07,0.52 +NCAA Football 2003,XB,2002,Sports,Electronic Arts,0.39,0.11,0,0.02,0.52 +Way of the Samurai 3,PS3,2008,Action,Gamebridge,0.18,0.08,0.22,0.04,0.52 +NBA Live 09,PS3,2008,Sports,Electronic Arts,0.46,0,0.02,0.04,0.52 +DC Universe Online,PS3,2011,Role-Playing,Sony Online Entertainment,0.35,0.12,0,0.06,0.52 +Ready 2 Rumble Boxing: Round 2,PS,2000,Fighting,Midway Games,0.29,0.2,0,0.03,0.52 +Mega Man 6,NES,1993,Platform,Capcom,0.28,0.07,0.16,0.01,0.52 +Mission: Impossible,PS,1999,Action,Infogrames,0.29,0.2,0,0.03,0.52 +Final Fantasy Explorers,3DS,2014,Role-Playing,Square Enix,0.15,0.07,0.28,0.02,0.52 +Rival Schools: United By Fate,PS,1998,Fighting,Capcom,0.12,0.08,0.28,0.03,0.52 +Bully: Scholarship Edition,Wii,2008,Action,Take-Two Interactive,0.17,0.29,0,0.06,0.52 +IL-2 Sturmovik: Birds of Prey,X360,2009,Simulation,505 Games,0.23,0.24,0,0.05,0.52 +PlayStation All-Stars Battle Royale,PSV,2012,Action,Sony Computer Entertainment,0.26,0.15,0.01,0.1,0.52 +Ratatouille,PS3,2007,Action,THQ,0.09,0.32,0,0.11,0.52 +Cars Toon: Mater's Tall Tales,Wii,2010,Misc,Disney Interactive Studios,0.46,0.02,0,0.03,0.52 +Kung Fu Panda,PS3,2008,Action,Activision,0.21,0.21,0,0.09,0.52 +Swing Away Golf,PS2,2000,Sports,Electronic Arts,0.17,0.13,0.18,0.04,0.52 +J-League Pro Soccer Club o Tsukurou! 3,PS2,2003,Sports,Sega,0,0,0.52,0,0.52 +Tomb Raider: Legend,PS2,2006,Action,Eidos Interactive,0.25,0.19,0.02,0.06,0.52 +Ratatouille,Wii,2007,Action,THQ,0.44,0.04,0,0.04,0.52 +Freedom Fighters,PS2,2003,Shooter,Electronic Arts,0.25,0.2,0,0.07,0.52 +Gun,XB,2005,Shooter,Activision,0.38,0.12,0,0.02,0.52 +That's So Raven 2: Supernatural Style,GBA,2005,Adventure,Disney Interactive Studios,0.37,0.14,0,0.01,0.52 +Lair,PS3,2007,Action,Sony Computer Entertainment,0.36,0.04,0.08,0.04,0.52 +Madden NFL 07,PS3,2006,Sports,Electronic Arts,0.47,0,0.01,0.04,0.52 +The Punisher,PS2,2005,Action,THQ,0.25,0.2,0,0.07,0.52 +Front Mission 3,PS,1999,Strategy,SquareSoft,0.1,0.07,0.31,0.03,0.52 +Kenkou Ouen Recipe 1000: DS Kondate Zenshuu,DS,2006,Misc,Nintendo,0,0,0.52,0,0.52 +SSX On Tour,PS2,2005,Sports,Electronic Arts,0.25,0.2,0,0.07,0.52 +Tony Hawk's Pro Skater 3,GBA,2002,Sports,Activision,0.37,0.14,0,0.01,0.52 +Harry Potter and the Prisoner of Azkaban,GBA,2004,Action,Electronic Arts,0.37,0.14,0,0.01,0.52 +Petz: Hamsterz Life 2,DS,2007,Misc,Ubisoft,0.48,0,0,0.04,0.52 +Omega Boost,PS,1999,Shooter,Sony Computer Entertainment,0.17,0.11,0.2,0.03,0.52 +The Sims 2: Open for Business,PC,2006,Simulation,Electronic Arts,0.46,0.05,0,0,0.52 +Iron Man,DS,2008,Action,Sega,0.35,0.12,0,0.05,0.52 +NFL 2K3,XB,2002,Sports,Sega,0.38,0.11,0,0.02,0.52 +NBA Live 2002,PS,2001,Sports,Electronic Arts,0.29,0.19,0,0.03,0.52 +Jampack Winter 2002,PS2,2002,Misc,Sony Computer Entertainment,0.25,0.2,0,0.07,0.52 +My Word Coach,Wii,2007,Misc,Ubisoft,0.46,0.02,0,0.04,0.51 +Way of the Samurai,PS2,2002,Action,Eidos Interactive,0.13,0.1,0.25,0.03,0.51 +Dragon Age: Origins,PC,2009,Role-Playing,Electronic Arts,0,0.46,0,0.06,0.51 +Naruto Shippuden: Ultimate Ninja Storm 3,X360,2013,Fighting,Namco Bandai Games,0.29,0.17,0.01,0.04,0.51 +Fishing Derby,2600,,Sports,Activision,0.48,0.03,0,0.01,0.51 +Pac-Man Fever,PS2,2001,Misc,Sony Computer Entertainment,0.25,0.2,0,0.07,0.51 +The LEGO Movie Videogame,XOne,2014,Action,Warner Bros. Interactive Entertainment,0.34,0.13,0,0.04,0.51 +The 3rd Birthday,PSP,2010,Role-Playing,Square Enix,0.13,0.07,0.27,0.05,0.51 +Prince of Persia Trilogy,PS3,2010,Action,Ubisoft,0.17,0.25,0,0.09,0.51 +International Track & Field,PS,1996,Sports,Konami Digital Entertainment,0.08,0.05,0.35,0.03,0.51 +100 All-Time Favorites,DS,2009,Puzzle,Ubisoft,0.35,0.12,0,0.04,0.51 +HSX HyperSonic.Xtreme,PS2,2002,Racing,Midas Interactive Entertainment,0.25,0.2,0,0.07,0.51 +StarCraft II: Legacy of the Void,PC,2015,Strategy,Activision,0.18,0.29,0,0.04,0.51 +Tiger Woods PGA Tour 13,X360,2012,Sports,Electronic Arts,0.29,0.18,0,0.04,0.51 +SoulCalibur: Broken Destiny,PSP,2009,Fighting,Namco Bandai Games,0.12,0.2,0.07,0.12,0.51 +The Saboteur,X360,2009,Action,Electronic Arts,0.26,0.21,0,0.05,0.51 +Lords of the Fallen,PS4,2014,Role-Playing,Square Enix,0.17,0.23,0.02,0.09,0.51 +Pro Evolution Soccer 2010,Wii,2009,Sports,Konami Digital Entertainment,0.12,0.27,0.06,0.05,0.51 +Goldeneye 007: Reloaded,X360,2011,Shooter,Activision,0.25,0.21,0,0.05,0.51 +Jam With the Band,DS,2008,Misc,Nintendo,0,0,0.51,0,0.51 +Madden NFL 2004,GC,2003,Sports,Electronic Arts,0.4,0.1,0,0.01,0.51 +Jikkyou Powerful Pro Yakyuu 10,PS2,2003,Sports,Konami Digital Entertainment,0,0,0.51,0,0.51 +Summoner,PS2,2000,Role-Playing,THQ,0.25,0.2,0,0.07,0.51 +Virtual Pool,PS,1997,Sports,Interplay,0.28,0.19,0,0.03,0.51 +NBA Live 07,PSP,2006,Sports,Electronic Arts,0.47,0,0,0.04,0.51 +Sega Bass Fishing,Wii,2008,Sports,Sega,0.46,0.01,0,0.04,0.51 +Fire Emblem: Radiant Dawn,Wii,2007,Strategy,Nintendo,0.28,0.03,0.17,0.03,0.51 +Dynasty Warriors,PSP,2004,Action,Tecmo Koei,0.18,0.01,0.3,0.02,0.51 +"SpongeBob SquarePants: Lights, Camera, Pants!",GBA,2005,Misc,THQ,0.37,0.14,0,0.01,0.51 +Dragon Ball: Raging Blast,X360,2009,Fighting,Namco Bandai Games,0.36,0.09,0.02,0.04,0.51 +Rugrats: Scavenger Hunt,N64,1999,Misc,THQ,0.41,0.09,0,0.01,0.51 +Wrecking Crew,NES,1985,Platform,Nintendo,0,0,0.51,0,0.51 +International Superstar Soccer 2000 (All region sales),N64,1999,Sports,Konami Digital Entertainment,0.01,0.26,0.22,0.02,0.51 +Major League Baseball 2K10,X360,2010,Sports,Take-Two Interactive,0.47,0,0,0.04,0.51 +Monsters vs. Aliens,DS,2009,Action,Activision,0.33,0.13,0,0.05,0.51 +"Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)",PS3,2010,Shooter,Activision,0.24,0.19,0,0.08,0.51 +SpongeBob SquarePants: Creature from the Krusty Krab,Wii,2006,Platform,THQ,0.45,0.02,0,0.04,0.51 +Lost: Via Domus,PS3,2008,Action,Ubisoft,0.19,0.23,0,0.09,0.51 +NBA Live 2004,XB,2003,Sports,Electronic Arts,0.44,0.04,0,0.02,0.51 +Dai-4-Ji Super Robot Taisen S,PS,1996,Strategy,Banpresto,0,0,0.48,0.03,0.51 +Disney's Kim Possible: Revenge of Monkey Fist,GBA,2002,Platform,THQ,0.37,0.14,0,0.01,0.51 +WWE SmackDown vs. RAW 2007,X360,2006,Fighting,THQ,0.44,0.03,0,0.04,0.51 +Ace Combat Zero: The Belkan War,PS2,2006,Simulation,Namco Bandai Games,0.15,0.12,0.2,0.04,0.51 +R.U.S.E.,PS3,2010,Strategy,Ubisoft,0.18,0.22,0.02,0.09,0.51 +Disgaea 3: Absence of Justice,PS3,2008,Role-Playing,Square Enix,0.32,0.04,0.11,0.04,0.51 +Test Drive Unlimited,PSP,2007,Racing,Atari,0.08,0.28,0,0.15,0.51 +LEGO Dimensions,WiiU,2015,Action,Warner Bros. Interactive Entertainment,0.3,0.16,0,0.05,0.51 +Picross DS,DS,2007,Puzzle,Nintendo,0.17,0.02,0.3,0.02,0.51 +Final Fantasy II Anniversary Edition,PSP,2007,Role-Playing,Square Enix,0.36,0.03,0.07,0.04,0.51 +NHL 07,PS2,2006,Sports,Electronic Arts,0.42,0.02,0,0.07,0.51 +Harry Potter and the Half-Blood Prince,PSP,2009,Action,Electronic Arts,0.18,0.21,0,0.12,0.51 +Quantum Break,XOne,2016,Action,Microsoft Game Studios,0.27,0.19,0.01,0.04,0.51 +NBA 2K11,Wii,2010,Action,Take-Two Interactive,0.47,0.01,0,0.03,0.51 +World Championship Poker,XB,2004,Misc,Crave Entertainment,0.37,0.11,0,0.02,0.51 +The BIGS,PS2,2007,Sports,Take-Two Interactive,0.25,0.19,0,0.06,0.51 +Final Fantasy,WS,2000,Role-Playing,SquareSoft,0,0,0.51,0,0.51 +Burnout Revenge,X360,2006,Racing,Electronic Arts,0.42,0.05,0,0.04,0.51 +Rory McIlroy PGA Tour,PS4,2015,Action,Electronic Arts,0.18,0.24,0,0.08,0.51 +Euro Truck Simulator,PC,2008,Simulation,Rondomedia,0,0.42,0,0.09,0.51 +Dragon Ball Z: Supersonic Warriors,GBA,2004,Fighting,Atari,0.36,0.13,0,0.01,0.51 +Dishonored,PC,2012,Action,Bethesda Softworks,0.26,0.19,0,0.06,0.51 +Paws & Claws: Dogs & Cats Best Friends,DS,2007,Simulation,THQ,0.46,0.01,0,0.04,0.51 +NBA Ballers,XB,2004,Sports,Midway Games,0.37,0.11,0,0.02,0.51 +Silent Hill 4: The Room,PS2,2004,Action,Konami Digital Entertainment,0.25,0.19,0,0.06,0.51 +River Raid II,2600,1988,Shooter,Activision,0.47,0.03,0,0.01,0.51 +Capcom Classics Collection,PS2,2005,Misc,Capcom,0.22,0.17,0.05,0.06,0.51 +Guitar Hero Live,XOne,2015,Misc,Activision,0.29,0.17,0,0.05,0.51 +Wolfenstein: The New Order,PS3,2014,Shooter,Bethesda Softworks,0.14,0.25,0.02,0.09,0.51 +Monopoly Party,PS2,2002,Misc,Infogrames,0.25,0.19,0,0.06,0.51 +Hidden Mysteries: Titanic - Secrets of the Fateful Voyage,DS,2009,Adventure,GSP,0.12,0.33,0,0.06,0.51 +NHL FaceOff 98,PS,1997,Sports,Sony Computer Entertainment,0.28,0.19,0,0.03,0.51 +The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies,GBA,2004,Action,THQ,0.36,0.13,0,0.01,0.5 +F1 2012,X360,2012,Racing,Codemasters,0.1,0.35,0,0.06,0.5 +NHL 09,X360,2008,Sports,Electronic Arts,0.45,0.01,0,0.04,0.5 +Sonic Riders,PS2,2006,Racing,Sega,0.42,0.02,0,0.07,0.5 +Looney Tunes: Back in Action,PS2,2003,Platform,Warner Bros. Interactive Entertainment,0.25,0.19,0,0.06,0.5 +Wet,X360,,Shooter,Bethesda Softworks,0.23,0.21,0.01,0.05,0.5 +Midnight Magic,2600,1983,Action,Atari,0.47,0.03,0,0.01,0.5 +Alice: Madness Returns,X360,2011,Adventure,Electronic Arts,0.27,0.15,0.04,0.04,0.5 +Pro Evolution Soccer 2012,X360,2011,Action,Konami Digital Entertainment,0.1,0.34,0,0.07,0.5 +Tiger Woods PGA Tour 07,PS3,2006,Sports,Electronic Arts,0.31,0.12,0,0.07,0.5 +Midnight Club II,XB,2003,Racing,Take-Two Interactive,0.42,0.06,0,0.02,0.5 +Atelier Rorona: Alchemist of Arland,PS3,2009,Role-Playing,Nippon Ichi Software,0.22,0.12,0.11,0.05,0.5 +Monster Hunter Freedom 2,PS3,2011,Role-Playing,Capcom,0,0,0.5,0,0.5 +Dragon Ball Z: Supersonic Warriors 2,DS,2005,Fighting,Atari,0.14,0.02,0.32,0.02,0.5 +Avatar: The Last Airbender,GC,2006,Adventure,THQ,0.39,0.1,0,0.01,0.5 +Blue's Clues: Blue's Big Musical,PS,2001,Misc,THQ,0.28,0.19,0,0.03,0.5 +The Mummy Returns,PS2,2001,Action,Universal Interactive,0.25,0.19,0,0.06,0.5 +Hitman: Blood Money,PS2,2006,Action,Eidos Interactive,0.25,0.19,0,0.06,0.5 +Disney Sing It,PS2,2008,Misc,Disney Interactive Studios,0.25,0.19,0,0.06,0.5 +Chopper Command,2600,1982,Shooter,Activision,0.47,0.03,0,0.01,0.5 +Activision Anthology,PS2,2002,Misc,Activision,0.25,0.19,0,0.06,0.5 +Crash: Mind Over Mutant,PS2,2008,Platform,Vivendi Games,0.25,0.19,0,0.06,0.5 +WWE 2K16,X360,2015,Sports,Take-Two Interactive,0.27,0.19,0,0.04,0.5 +LEGO The Hobbit,X360,2014,Action,Warner Bros. Interactive Entertainment,0.2,0.26,0,0.04,0.5 +Babysitting Mama,Wii,2010,Simulation,505 Games,0.34,0.12,0,0.04,0.5 +Boogie,Wii,2007,Misc,Electronic Arts,0.43,0.03,0,0.04,0.5 +Theatrhythm: Final Fantasy,3DS,2012,Misc,Square Enix,0.22,0.07,0.18,0.02,0.5 +Bleach: Soul Resurreccion,PS3,2011,Fighting,Nippon Ichi Software,0.27,0.11,0.07,0.05,0.5 +Madden NFL 07,Wii,2006,Sports,Electronic Arts,0.46,0,0,0.04,0.5 +Rugrats in Paris: The Movie,N64,2000,Action,THQ,0.4,0.09,0,0.01,0.5 +Dance Dance Revolution Universe 2,X360,2007,Simulation,Konami Digital Entertainment,0.46,0.01,0,0.04,0.5 +Star Wars: Jedi Starfighter,PS2,2002,Simulation,Activision,0.24,0.19,0,0.06,0.5 +Tactics Ogre: The Knight of Lodis,GBA,2001,Role-Playing,Nintendo,0.13,0.05,0.31,0.01,0.5 +Fortune Street,Wii,2011,Misc,Nintendo,0.27,0.04,0.17,0.02,0.5 +Super Robot Taisen MX,PS2,2004,Strategy,Banpresto,0,0,0.5,0,0.5 +Alice in Wonderland,DS,2010,Adventure,Disney Interactive Studios,0.27,0.18,0,0.05,0.5 +NBA Street Homecourt,X360,2007,Sports,Electronic Arts,0.45,0.01,0,0.04,0.5 +Spider-Man 2,DS,2004,Action,Activision,0.41,0.02,0.03,0.04,0.5 +Bases Loaded '96: Double Header,PS,1995,Sports,Jaleco,0.28,0.19,0,0.03,0.5 +Dead or Alive Ultimate,XB,2004,Fighting,Tecmo Koei,0.3,0.1,0.08,0.02,0.5 +RPG Maker,PS,1997,Role-Playing,ASCII Entertainment,0.11,0.07,0.29,0.03,0.5 +FIFA 14,PSV,2013,Sports,Electronic Arts,0.11,0.25,0.01,0.13,0.5 +Star Wars: Clone Wars,PS2,2002,Shooter,LucasArts,0.24,0.19,0,0.06,0.5 +The Saboteur,PS3,2009,Action,Electronic Arts,0.2,0.22,0,0.08,0.5 +The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies,PS2,2004,Action,THQ,0.24,0.19,0,0.06,0.5 +Metal Gear Rising: Revengeance,X360,2013,Action,Konami Digital Entertainment,0.29,0.16,0,0.04,0.5 +Madden NFL 11,PS2,2010,Sports,Electronic Arts,0.41,0.02,0,0.07,0.5 +Major League Baseball 2K12,X360,2012,Sports,Take-Two Interactive,0.47,0,0,0.03,0.5 +Alien: Isolation,XOne,2014,Shooter,Sega,0.22,0.24,0,0.04,0.5 +The Price is Right,DS,2008,Misc,Ubisoft,0.46,0,0,0.04,0.5 +Monster Hunter,PS2,2004,Role-Playing,Capcom,0.11,0.08,0.28,0.03,0.5 +Cars 2,X360,2011,Racing,Disney Interactive Studios,0.28,0.17,0,0.05,0.5 +Dreamworks Madagascar Kartz,Wii,2009,Racing,Activision,0.29,0.16,0,0.05,0.5 +Tony Hawk's Underground 2,GC,2004,Sports,Activision,0.38,0.1,0,0.01,0.5 +SplashDown: Rides Gone Wild,PS2,2003,Racing,THQ,0.24,0.19,0,0.06,0.5 +Super Famista 5,SNES,1996,Sports,Namco Bandai Games,0,0,0.5,0,0.5 +Dynasty Warriors: Gundam 2,PS3,2008,Action,Namco Bandai Games,0.09,0.07,0.32,0.03,0.5 +Shrek SuperSlam,PS2,2005,Action,Activision,0.24,0.19,0,0.06,0.5 +Rayman Advance,GBA,2001,Platform,Ubisoft,0.36,0.13,0,0.01,0.5 +Super Robot Taisen Z,PS2,2008,Strategy,Namco Bandai Games,0,0,0.5,0,0.5 +PoPoLoCrois Monogatari,PS,1996,Role-Playing,Sony Computer Entertainment,0,0,0.46,0.03,0.5 +Tomb Raider: Anniversary,PS2,2007,Action,Eidos Interactive,0.41,0.02,0,0.07,0.5 +Fantastic 4,PS2,2005,Action,Activision,0.41,0.01,0,0.07,0.5 +Epic Mickey 2: The Power of Two,PS3,2012,Action,Disney Interactive Studios,0.21,0.2,0,0.08,0.5 +Men in Black II: Alien Escape,PS2,2002,Shooter,Infogrames,0.24,0.19,0,0.06,0.5 +The Evil Within,X360,2014,Action,Bethesda Softworks,0.25,0.2,0.01,0.04,0.5 +RealSports Tennis,2600,1982,Sports,Atari,0.46,0.03,0,0.01,0.5 +Nicktoons: Attack of the Toybots,PS2,2007,Platform,THQ,0.24,0.19,0,0.06,0.5 +Raiders of the Lost Ark,2600,1981,Action,Atari,0.46,0.03,0,0.01,0.5 +Gauntlet,2600,1982,Action,Answer Software,0.46,0.03,0,0.01,0.5 +Ridge Racer 3D,3DS,2011,Racing,Namco Bandai Games,0.19,0.15,0.12,0.03,0.5 +Cars Mater-National Championship,Wii,2007,Racing,THQ,0.46,0,0,0.04,0.49 +Ace Combat: Assault Horizon,X360,2011,Action,Namco Bandai Games,0.3,0.12,0.03,0.04,0.49 +Resident Evil: The Mercenaries 3D,3DS,2011,Action,Capcom,0.16,0.17,0.13,0.03,0.49 +Super Monkey Ball 3D,3DS,2011,Action,Sega,0.26,0.15,0.05,0.04,0.49 +Tony Hawk's Project 8,X360,2006,Sports,Activision,0.44,0.02,0,0.04,0.49 +Tony Hawk's Underground 2,GBA,2004,Sports,Activision,0.35,0.13,0,0.01,0.49 +MotorStorm: Apocalypse,PS3,2011,Racing,Sony Computer Entertainment,0.21,0.2,0,0.08,0.49 +Ice Hockey,2600,1980,Sports,Activision,0.46,0.03,0,0.01,0.49 +Dragon Quest Heroes: The World's Tree Woe and the Blight Below,PS3,2015,Action,Square Enix,0,0,0.49,0,0.49 +Lego Batman 3: Beyond Gotham,PSV,2014,Action,Warner Bros. Interactive Entertainment,0.09,0.29,0,0.11,0.49 +The Matrix: Path of Neo,PS2,2005,Action,Atari,0.41,0.01,0,0.07,0.49 +Kane & Lynch 2: Dog Days,X360,2010,Shooter,Square Enix,0.2,0.23,0.01,0.05,0.49 +Lollipop Chainsaw,X360,2012,Action,Warner Bros. Interactive Entertainment,0.31,0.13,0.02,0.04,0.49 +WWE Wrestlemania X8,GC,2002,Fighting,THQ,0.38,0.1,0,0.01,0.49 +Sonic Lost World,3DS,2013,Platform,Sega,0.24,0.15,0.07,0.03,0.49 +Power Rangers: Dino Thunder,GBA,2003,Action,THQ,0.35,0.13,0,0.01,0.49 +GoldenEye: Rogue Agent,XB,2004,Shooter,Electronic Arts,0.34,0.13,0,0.02,0.49 +Ultimate I Spy,Wii,2008,Adventure,Scholastic Inc.,0.45,0,0,0.03,0.49 +SpongeBob SquarePants: Creature from the Krusty Krab,DS,2006,Platform,THQ,0.45,0,0,0.04,0.49 +The Sims,GC,2003,Simulation,Electronic Arts,0.35,0.13,0,0.01,0.49 +Grandia III,PS2,2005,Role-Playing,Square Enix,0.12,0.1,0.24,0.03,0.49 +FIFA Soccer 09,DS,2008,Sports,Electronic Arts,0.12,0.31,0,0.06,0.49 +Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus,PS2,2006,Shooter,Namco Bandai Games,0,0,0.49,0,0.49 +Mario & Wario,SNES,1993,Puzzle,Nintendo,0,0,0.49,0,0.49 +Scarface: The World is Yours,XB,2006,Action,Vivendi Games,0.37,0.11,0,0.02,0.49 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",Wii,2009,Shooter,Activision,0.24,0.2,0,0.05,0.49 +Pokemon Art Academy,3DS,2014,Misc,Nintendo,0.18,0.12,0.16,0.03,0.49 +FIFA Soccer 64,N64,1997,Sports,Electronic Arts,0.16,0.3,0,0.03,0.49 +Dragon Ball Z: Burst Limit,X360,2008,Fighting,Atari,0.24,0.18,0.03,0.05,0.49 +Bakugan Battle Brawlers: Defenders of the Core,DS,2010,Action,Activision,0.42,0.02,0.02,0.03,0.49 +Medal of Honor,PC,2010,Shooter,Electronic Arts,0.2,0.23,0,0.07,0.49 +Doom 3 BFG Edition,X360,2012,Shooter,Bethesda Softworks,0.28,0.17,0,0.04,0.49 +J-League Pro Soccer Club wo Tsukurou! 2,SAT,1997,Sports,Sega,0,0,0.49,0,0.49 +Terraria,PS3,2013,Action,505 Games,0.07,0.26,0.09,0.07,0.49 +Backyard Baseball,PS2,2004,Sports,Atari,0.24,0.19,0,0.06,0.49 +WipEout Pulse,PS2,2009,Racing,Sony Computer Entertainment,0,0.15,0,0.33,0.49 +Barbie Horse Adventures: Wild Horse Rescue,PS2,2003,Sports,Universal Interactive,0.24,0.19,0,0.06,0.49 +Epic Mickey: Power of Illusion,3DS,2012,Action,Disney Interactive Studios,0.36,0.04,0.04,0.04,0.49 +LEGO Marvel Super Heroes,DS,2013,Action,Warner Bros. Interactive Entertainment,0.28,0.17,0,0.04,0.49 +Taiko no Tatsujin: Appare Sandaime,PS2,2003,Misc,Namco Bandai Games,0,0,0.49,0,0.49 +Alone in the Dark,X360,2008,Adventure,Atari,0.14,0.3,0,0.05,0.49 +One Piece: Grand Battle!,PS,2001,Fighting,Atari,0,0,0.46,0.03,0.49 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",PS2,2009,Shooter,Activision,0.25,0.01,0,0.22,0.49 +Football Manager Handheld 2009,PSP,2008,Sports,Sega,0,0.47,0,0.02,0.49 +Sniper: Art of Victory,PC,2008,Shooter,City Interactive,0,0.45,0,0.03,0.49 +Crazy Taxi,GC,2001,Racing,Acclaim Entertainment,0.36,0.09,0.02,0.01,0.49 +Spy Hunter 2,PS2,2003,Racing,Midway Games,0.24,0.19,0,0.06,0.49 +F1 2014,PS3,2014,Racing,Codemasters,0.07,0.31,0.02,0.08,0.49 +Pac-Man World 2,XB,2002,Action,Namco Bandai Games,0.36,0.11,0,0.02,0.49 +Bass Pro Shops: The Strike,Wii,2009,Sports,XS Games,0.45,0,0,0.03,0.49 +Die Hard Trilogy 2: Viva Las Vegas,PS,1999,Action,Fox Interactive,0.27,0.18,0,0.03,0.49 +Jake Power: Fireman,DS,2008,Adventure,Ubisoft,0.08,0.35,0,0.06,0.49 +Asphalt 3D,3DS,2011,Racing,Ubisoft,0.27,0.16,0.02,0.04,0.49 +Momotarou Dentetsu X: Kyuushuu-hen mo Arubai,PS2,2001,Misc,Hudson Soft,0,0,0.49,0,0.49 +Steel Diver,3DS,2011,Action,Nintendo,0.31,0.1,0.05,0.03,0.49 +Tales of Legendia,PS2,2005,Role-Playing,Namco Bandai Games,0.07,0.05,0.35,0.02,0.49 +SimCity 2000,SNES,1995,Simulation,THQ,0,0,0.49,0,0.49 +Crash of the Titans,DS,2007,Action,Vivendi Games,0.42,0.02,0,0.04,0.49 +Far Cry 2,PC,2008,Action,Ubisoft,0.01,0.45,0,0.03,0.49 +Battlefield: Hardline,PS3,2015,Shooter,Electronic Arts,0.12,0.23,0.07,0.07,0.49 +Harry Potter and the Order of the Phoenix,Wii,2007,Action,Electronic Arts,0.38,0.06,0,0.04,0.49 +Rayman Raving Rabbids: TV Party,DS,2008,Misc,Ubisoft,0.44,0.01,0,0.04,0.49 +F.E.A.R. 2: Project Origin,PS3,2009,Shooter,Warner Bros. Interactive Entertainment,0.19,0.21,0.01,0.08,0.49 +Sonic & All-Stars Racing Transformed,PSV,2012,Racing,Sega,0.12,0.25,0,0.11,0.48 +Scene It? Lights Camera Action,X360,2007,Misc,Microsoft Game Studios,0.43,0.02,0,0.04,0.48 +Dead Space Extraction,Wii,2009,Shooter,Electronic Arts,0.33,0.11,0.01,0.04,0.48 +Scrabble 2007 Edition,DS,2007,Puzzle,Ubisoft,0,0.48,0,0,0.48 +Shrek the Third,PS2,2007,Action,Activision,0.4,0.02,0,0.07,0.48 +Metal Gear Solid HD Edition,PSV,2012,Action,Konami Digital Entertainment,0.16,0.18,0.05,0.09,0.48 +Children of Mana,DS,2006,Role-Playing,Nintendo,0.16,0.01,0.29,0.02,0.48 +Madagascar: Operation Penguin,GBA,2005,Action,Activision,0.35,0.13,0,0.01,0.48 +Active Life: Extreme Challenge,Wii,2009,Sports,Namco Bandai Games,0.15,0.27,0,0.06,0.48 +The Sims 2: Pets,Wii,2007,Simulation,Electronic Arts,0.42,0.03,0,0.04,0.48 +Mario Golf: World Tour,3DS,2014,Sports,Nintendo,0.15,0.14,0.17,0.03,0.48 +Need for Speed: Porsche Unleashed,GBA,2004,Racing,Zoo Digital Publishing,0.35,0.13,0,0.01,0.48 +Yu-Gi-Oh! Forbidden Memories (JP sales),PS,1999,Role-Playing,Konami Digital Entertainment,0,0,0.45,0.03,0.48 +NFL Street 2,XB,2004,Sports,Electronic Arts,0.36,0.11,0,0.02,0.48 +Silent Hill: Shattered Memories,Wii,2009,Action,Konami Digital Entertainment,0.23,0.19,0.01,0.05,0.48 +Millipede,2600,1983,Shooter,Atari,0.45,0.03,0,0.01,0.48 +The Legend of the Mystical Ninja,SNES,1991,Adventure,Konami Digital Entertainment,0,0,0.48,0,0.48 +You're in the Movies,X360,2008,Misc,Microsoft Game Studios,0.27,0.17,0,0.05,0.48 +Dark Sector,X360,2008,Shooter,D3Publisher,0.22,0.2,0.01,0.05,0.48 +James Bond 007: Blood Stone,X360,2010,Shooter,Activision,0.2,0.24,0,0.05,0.48 +Jeopardy!,PS2,2003,Misc,Atari,0.24,0.18,0,0.06,0.48 +Destroy All Humans! 2,PS2,2006,Action,THQ,0.4,0.02,0,0.07,0.48 +ECW Hardcore Revolution,PS,1999,Fighting,Acclaim Entertainment,0.27,0.18,0,0.03,0.48 +Pinball Hall of Fame: The Williams Collection,Wii,2008,Misc,System 3 Arcade Software,0.42,0.03,0,0.04,0.48 +Tiger Woods PGA Tour 07,X360,2006,Sports,Electronic Arts,0.44,0,0,0.04,0.48 +Wu-Tang: Shaolin Style,PS,1998,Fighting,Activision,0.27,0.18,0,0.03,0.48 +World of Warcraft: Warlords of Draenor,PC,2014,Action,Activision Blizzard,0.08,0.36,0,0.04,0.48 +Rock Band Unplugged,PSP,2009,Misc,MTV Games,0.24,0.15,0,0.1,0.48 +OkamiDen,DS,2010,Adventure,Capcom,0.25,0.07,0.13,0.03,0.48 +Crash: Mind Over Mutant,X360,2008,Platform,Vivendi Games,0.22,0.21,0,0.05,0.48 +2010 FIFA World Cup South Africa,PSP,2010,Sports,Electronic Arts,0.09,0.24,0.03,0.12,0.48 +Secret Weapons Over Normandy,PS2,2003,Simulation,LucasArts,0.24,0.18,0,0.06,0.48 +Go Diego Go! Great Dinosaur Rescue,DS,2008,Action,Take-Two Interactive,0.44,0.01,0,0.03,0.48 +All-Star Baseball 99,N64,1998,Sports,Acclaim Entertainment,0.44,0.04,0,0,0.48 +Harvest Moon 64,N64,1999,Simulation,Pack In Soft,0.25,0.06,0.11,0.06,0.48 +NCAA Football 09,PS2,2008,Sports,Electronic Arts,0.4,0.02,0,0.07,0.48 +Bratz: The Movie,PS2,2007,Simulation,THQ,0.24,0.18,0,0.06,0.48 +FIFA Soccer 13,WiiU,2012,Action,Electronic Arts,0.18,0.26,0,0.04,0.48 +Harvest Moon DS (US sales),DS,2005,Simulation,Rising Star Games,0.41,0.07,0,0,0.48 +Vigilante 8: 2nd Offense,PS,1999,Racing,Activision,0.27,0.18,0,0.03,0.48 +Two Worlds II,PS3,2011,Role-Playing,Unknown,0.26,0.11,0.06,0.05,0.48 +Football Manager 2015,PC,2014,Simulation,Sega,0,0.43,0,0.05,0.48 +Theme Park Roller Coaster,PS2,2000,Strategy,Electronic Arts,0.23,0.18,0,0.06,0.48 +Need for Speed: Hot Pursuit,Wii,2010,Racing,Electronic Arts,0.18,0.24,0,0.05,0.48 +Skylanders: SuperChargers,WiiU,2015,Action,Activision,0.25,0.18,0,0.04,0.48 +Viva Pinata: Trouble in Paradise,X360,2008,Simulation,Microsoft Game Studios,0.16,0.25,0.01,0.05,0.48 +Nickelodeon Team Umizoomi,DS,2011,Action,Take-Two Interactive,0.45,0,0,0.03,0.48 +FlingSmash,Wii,2010,Action,Nintendo,0.38,0.01,0.07,0.02,0.48 +NFL Xtreme 2,PS,1999,Sports,989 Studios,0.27,0.18,0,0.03,0.48 +Spider-Man 3,Wii,2007,Platform,Activision,0.42,0.02,0,0.04,0.48 +Midnight Club: Street Racing,GBA,2001,Racing,Rebellion,0.34,0.13,0,0.01,0.48 +Dynasty Warriors Gundam,PS3,2007,Action,Tecmo Koei,0.14,0.01,0.31,0.02,0.48 +Tomb Raider: Underworld,Wii,2008,Action,Eidos Interactive,0.14,0.28,0,0.06,0.48 +Final Fantasy Crystal Chronicles: Echoes of Time,DS,2009,Role-Playing,Square Enix,0.12,0.06,0.27,0.02,0.48 +Fable,X360,2014,Role-Playing,Microsoft Game Studios,0.25,0.19,0.01,0.04,0.48 +Tiger Woods PGA Tour 06,XB,2005,Sports,Electronic Arts,0.35,0.11,0,0.02,0.48 +FIFA World Cup Germany 2006,X360,2006,Sports,Electronic Arts,0.19,0.27,0.01,0,0.48 +Up,PS2,2009,Action,THQ,0.19,0.05,0,0.24,0.48 +Grand Prix,2600,1981,Racing,Activision,0.45,0.03,0,0,0.48 +Ford Racing Off Road,Wii,2008,Racing,Xplosiv,0.06,0.4,0,0.01,0.48 +SimCity Creator,Wii,2008,Simulation,Electronic Arts,0.37,0.03,0.04,0.04,0.48 +World of Outlaws: Sprint Cars 2002,PS2,2002,Racing,Ignition Entertainment,0.23,0.18,0,0.06,0.48 +Cars: Race-O-Rama,DS,2009,Racing,THQ,0.35,0.09,0,0.04,0.48 +Emergency Heroes,Wii,2008,Racing,Ubisoft,0.15,0.27,0,0.06,0.48 +Sonic the Hedgehog,PS3,,Platform,,0,0.48,0,0,0.48 +Fantavision,PS2,2000,Puzzle,Sony Computer Entertainment,0.14,0.11,0.19,0.04,0.47 +Double Dragon,2600,1989,Action,Activision,0.45,0.02,0,0.01,0.47 +Alien Trilogy,PS,1996,Shooter,Acclaim Entertainment,0.24,0.16,0.04,0.03,0.47 +NBA Live 99,N64,1998,Sports,Electronic Arts,0.45,0.02,0,0,0.47 +Bravely Second: End Layer,3DS,2015,Role-Playing,Nintendo,0.16,0.11,0.18,0.03,0.47 +Karate,2600,,Fighting,Ultravision,0.44,0.03,0,0,0.47 +Dark Sector,PS3,2008,Shooter,D3Publisher,0.23,0.16,0.01,0.07,0.47 +Unreal Tournament III,X360,2008,Shooter,Midway Games,0.25,0.17,0.01,0.05,0.47 +X-Men: Next Dimension,PS2,2002,Fighting,Activision,0.23,0.18,0,0.06,0.47 +Street Fighter X Tekken,X360,2012,Fighting,Capcom,0.31,0.1,0.03,0.03,0.47 +The Godfather (JP sales),PS2,2006,Action,Electronic Arts,0.39,0.02,0,0.06,0.47 +MySims Racing,Wii,2009,Racing,Electronic Arts,0.19,0.23,0,0.05,0.47 +Hamsterz Life,DS,2006,Action,Ubisoft,0.43,0.01,0,0.04,0.47 +Dragon Age Origins: Awakening,X360,2010,Role-Playing,Electronic Arts,0.33,0.1,0,0.04,0.47 +Super Puyo Puyo 2,SNES,1995,Puzzle,Compile,0,0,0.47,0,0.47 +Gauntlet Legends,PS,2000,Action,Midway Games,0.26,0.18,0,0.03,0.47 +Castlevania: Dawn of Sorrow,DS,2005,Platform,Konami Digital Entertainment,0.37,0.04,0.03,0.04,0.47 +Naruto Shippuden: Ultimate Ninja Storm Revolution,PS3,2014,Fighting,Namco Bandai Games,0.15,0.16,0.09,0.08,0.47 +Deadpool,PS3,2013,Action,Activision,0.23,0.17,0,0.08,0.47 +WipEout,PS,1995,Action,Psygnosis,0.26,0.18,0,0.03,0.47 +ICO,PS2,2001,Action,Sony Computer Entertainment,0.23,0.18,0,0.06,0.47 +Silent Hill: Downpour,PS3,2012,Action,Konami Digital Entertainment,0.21,0.16,0.04,0.06,0.47 +2014 FIFA World Cup Brazil,X360,2014,Sports,Electronic Arts,0.14,0.28,0,0.04,0.47 +WWE SmackDown vs. Raw 2011,Wii,2010,Fighting,THQ,0.3,0.13,0,0.04,0.47 +Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III,Wii,2011,Role-Playing,Square Enix,0,0,0.47,0,0.47 +Victorious Boxers: Ippo's Road to Glory,PS2,2000,Fighting,Empire Interactive,0.05,0.04,0.38,0.01,0.47 +Petz Sports,Wii,2008,Simulation,Ubisoft,0.42,0.01,0,0.04,0.47 +Lego Batman 3: Beyond Gotham,WiiU,2014,Action,Warner Bros. Interactive Entertainment,0.23,0.21,0,0.04,0.47 +Densetsu no Stafi,GBA,2002,Platform,Nintendo,0,0,0.46,0.01,0.47 +Valkyrie Profile 2: Silmeria,PS2,2006,Role-Playing,Square Enix,0.04,0.03,0.39,0.01,0.47 +Hot Wheels Velocity X,PS2,2002,Racing,THQ,0.23,0.18,0,0.06,0.47 +Shadowrun,X360,2007,Role-Playing,Microsoft Game Studios,0.41,0.02,0,0.04,0.47 +FIFA Soccer 13,PSV,2012,Action,Electronic Arts,0,0.3,0.05,0.12,0.47 +Virtua Tennis 4: World Tour,PSV,2011,Sports,Sega,0.05,0.3,0.01,0.12,0.47 +"Warhammer 40,000: Dawn of War II",PC,2009,Strategy,THQ,0,0.45,0,0.02,0.47 +Crazy Taxi: Fare Wars,PSP,2007,Racing,Sega,0.1,0.22,0.02,0.12,0.47 +Clash of Elementalists,DS,2010,Action,Level 5,0,0,0.47,0,0.47 +Spider-Man 3,DS,2007,Platform,Activision,0.41,0.02,0,0.04,0.47 +Disney Infinity 3.0,PS3,2015,Action,Disney Interactive Studios,0.14,0.25,0,0.08,0.47 +L.A. Rush,PS2,2005,Racing,Midway Games,0.23,0.18,0,0.06,0.47 +Bomberman Hero,N64,1998,Platform,Nintendo,0.27,0.06,0.08,0.05,0.47 +Automobili Lamborghini,N64,1997,Racing,Titus,0.28,0.17,0,0.01,0.47 +Quest 64,N64,1998,Role-Playing,Konami Digital Entertainment,0.38,0.08,0,0.01,0.47 +Momotarou Dentetsu V,PS,1999,Misc,Hudson Entertainment,0,0,0.44,0.03,0.47 +Doom 64,N64,1997,Shooter,Midway Games,0.38,0.08,0,0.01,0.47 +Boom Blox Bash Party,Wii,2009,Puzzle,Electronic Arts,0.34,0.09,0,0.04,0.47 +The Sims 3: Ambitions,PC,2010,Simulation,Electronic Arts,0,0.29,0,0.18,0.47 +Dead or Alive 4,X360,2005,Fighting,Tecmo Koei,0.3,0.03,0.1,0.03,0.47 +Commando,2600,1987,Action,Activision,0.44,0.02,0,0,0.47 +Rise of Nightmares,X360,2011,Action,Sega,0.28,0.13,0.01,0.04,0.47 +The Princess and the Frog,Wii,2009,Platform,Disney Interactive Studios,0.29,0.13,0,0.04,0.47 +NBA Ballers: Phenom,PS2,2006,Sports,Midway Games,0.23,0.18,0,0.06,0.47 +Need for Speed Carbon,XB,2006,Racing,Electronic Arts,0.35,0.1,0,0.02,0.47 +Tiger Woods PGA Tour 07,Wii,,Sports,Electronic Arts,0.43,0,0,0.04,0.47 +NHL 16,XOne,2015,Sports,Electronic Arts,0.37,0.05,0,0.05,0.47 +FIFA 12,PC,2011,Sports,Electronic Arts,0.04,0.33,0,0.1,0.47 +MTV Music Generator,PS,1999,Misc,Codemasters,0.26,0.18,0,0.03,0.47 +Spider-Man: Friend or Foe,DS,2007,Action,Activision,0.43,0,0,0.04,0.47 +Major League Baseball 2K13,X360,2013,Sports,Take-Two Interactive,0.44,0,0,0.03,0.47 +Super Momotarou Dentetsu DX,SNES,1995,Misc,Hudson Soft,0,0,0.47,0,0.47 +World Soccer Winning Eleven 8: Liveware Evolution,PS2,2005,Sports,Konami Digital Entertainment,0,0,0.47,0,0.47 +The Sims 3: Outdoor Living Stuff,PC,2011,Simulation,Electronic Arts,0,0.38,0,0.09,0.47 +Cars: Race-O-Rama,PS2,2009,Racing,THQ,0.27,0.03,0,0.17,0.47 +Downhill Domination,PS2,2003,Racing,Codemasters,0.23,0.18,0,0.06,0.47 +NHL 15,X360,2014,Sports,Electronic Arts,0.35,0.07,0,0.04,0.47 +Pirates of the Caribbean: Dead Man's Chest,GBA,2006,Adventure,Disney Interactive Studios,0.33,0.12,0,0.01,0.47 +World Series of Poker,PS2,2005,Misc,Activision,0.39,0.01,0,0.06,0.47 +Inazuma Eleven Go 2: Chrono Stone,3DS,2012,Role-Playing,Level 5,0,0.01,0.46,0,0.47 +NHL 97,PS,1996,Sports,Electronic Arts,0.26,0.18,0,0.03,0.47 +We Sing Encore,Wii,2010,Misc,Nordic Games,0,0.41,0,0.06,0.47 +Kong: The 8th Wonder of the World,GBA,2005,Action,Ubisoft,0.33,0.12,0,0.01,0.47 +MX vs. ATV: Alive,PS3,2011,Racing,THQ,0.24,0.15,0,0.07,0.47 +Mega Man Star Force 3: Black Ace / Red Joker,DS,2008,Action,Capcom,0.22,0,0.22,0.02,0.47 +Crayola: Treasure Adventures,DS,2007,Puzzle,Ignition Entertainment,0.43,0.01,0,0.03,0.47 +Godzilla: Save the Earth,PS2,2004,Fighting,Atari,0.23,0.18,0,0.06,0.47 +Dance Dance Revolution: Mario Mix,GC,2005,Misc,Nintendo,0.36,0.09,0,0.01,0.47 +Metal Gear Solid: The Twin Snakes,GC,2004,Action,Konami Digital Entertainment,0.3,0.08,0.07,0.01,0.47 +Imagine: Figure Skater (US sales),DS,2007,Sports,Ubisoft,0.46,0.01,0,0,0.47 +Mat Hoffman's Pro BMX 2,PS2,2002,Sports,Activision,0.23,0.18,0,0.06,0.46 +Metal Gear Solid: The Essential Collection,PS2,2007,Adventure,Konami Digital Entertainment,0.23,0.18,0,0.06,0.46 +The Legend of Spyro: Dawn of the Dragon,DS,2008,Platform,Vivendi Games,0.26,0.15,0,0.05,0.46 +Iridion 3D,GBA,2001,Shooter,THQ,0.33,0.12,0,0.01,0.46 +MX vs. ATV Untamed,PS3,2007,Racing,THQ,0.35,0.06,0,0.05,0.46 +Classic NES Series: Pac-Man,GBA,2004,Puzzle,Nintendo,0.25,0.09,0.12,0.01,0.46 +Destroy All Humans!,XB,2005,Shooter,THQ,0.34,0.11,0,0.02,0.46 +Dragon Ball Z: Collectible Card Game,GBA,2002,Misc,Infogrames,0.33,0.12,0,0.01,0.46 +Circus Atari,2600,,Action,Atari,0.43,0.03,0,0,0.46 +Country Dance 2,Wii,2011,Misc,GameMill Entertainment,0.44,0,0,0.03,0.46 +Razor Freestyle Scooter,PS,1999,Sports,Ubisoft,0.26,0.17,0,0.03,0.46 +Crash of the Titans,Wii,2007,Action,Vivendi Games,0.4,0.03,0,0.04,0.46 +F.E.A.R. 3,PS3,2011,Shooter,Warner Bros. Interactive Entertainment,0.21,0.17,0.01,0.07,0.46 +Disney's Kim Possible 3: Team Possible,GBA,2005,Platform,Disney Interactive Studios,0.33,0.12,0,0.01,0.46 +Rygar: The Legendary Adventure,PS2,2002,Action,Wanadoo,0.2,0.15,0.06,0.05,0.46 +Syphon Filter: Logan's Shadow,PSP,2007,Shooter,Sony Computer Entertainment,0.25,0.12,0,0.09,0.46 +Super Batter Up,SNES,1992,Sports,Namco Bandai Games,0,0,0.46,0,0.46 +Kessen II,PS2,2001,Strategy,THQ,0.13,0.1,0.2,0.03,0.46 +Crayon Shin-Chan: Arashi o Yobu Enji,SNES,1993,Platform,Namco Bandai Games,0,0,0.46,0,0.46 +Stuart Little 2,GBA,2002,Platform,Activision,0.33,0.12,0,0.01,0.46 +Wolfenstein: The New Order,PC,2014,Shooter,Bethesda Softworks,0.12,0.29,0,0.05,0.46 +"Warhammer 40,000: Space Marine",PS3,2011,Shooter,THQ,0.13,0.25,0,0.09,0.46 +Tak 2: The Staff of Dreams,GBA,2004,Platform,THQ,0.33,0.12,0,0.01,0.46 +Art Academy: Lessons for Everyone,3DS,2012,Action,Nintendo,0.2,0.03,0.21,0.02,0.46 +Sid Meier's Civilization Revolution,DS,2008,Strategy,Take-Two Interactive,0.38,0.03,0.02,0.04,0.46 +ATV Offroad Fury Pro,PSP,2006,Racing,Sony Computer Entertainment,0.37,0.04,0,0.05,0.46 +Dora The Explorer: Dora Saves the Snow Princess,DS,2008,Platform,Take-Two Interactive,0.27,0.16,0,0.04,0.46 +SingStar Amped,PS2,2007,Misc,Sony Computer Entertainment,0.23,0.18,0,0.06,0.46 +Brothers In Arms: Earned in Blood,PS2,2005,Shooter,Ubisoft,0.38,0.01,0,0.06,0.46 +Walk it Out!,Wii,2010,Sports,Konami Digital Entertainment,0.36,0.06,0,0.04,0.46 +Transformers: Dark of the Moon - Autobots/Decepticons,DS,2011,Action,Activision,0.34,0.09,0,0.04,0.46 +Dragon Ball Z: Sagas,PS2,2005,Fighting,Atari,0.38,0.01,0,0.06,0.46 +Scooby-Doo,GBA,2001,Platform,THQ,0.33,0.12,0,0.01,0.46 +The Legend of Spyro: Dawn of the Dragon,PS3,2008,Platform,Vivendi Games,0.19,0.19,0,0.08,0.46 +Hydro Thunder,PS,1999,Racing,Midway Games,0.26,0.17,0,0.03,0.46 +Brothers In Arms: D-Day,PSP,2006,Shooter,Ubisoft,0.23,0.14,0,0.09,0.46 +American Girl: Kit Mystery Challenge!,DS,2008,Adventure,THQ,0.42,0,0,0.03,0.46 +Mario & Sonic at the Rio 2016 Olympic Games,3DS,2016,Action,Nintendo,0.04,0.16,0.24,0.01,0.46 +NHL FaceOff '97,PS,1996,Sports,Sony Computer Entertainment,0.26,0.17,0,0.03,0.46 +Deadpool,X360,2013,Action,Activision,0.26,0.16,0,0.04,0.46 +Brothers In Arms: Road to Hill 30,PS2,2005,Shooter,Ubisoft,0.38,0.01,0,0.06,0.46 +Virtua Tennis 4,PS3,2011,Sports,Sega,0.09,0.25,0.03,0.09,0.46 +EA Sports UFC,XOne,2014,Sports,Electronic Arts,0.3,0.12,0,0.04,0.46 +Gremlins,2600,1983,Action,Atari,0.43,0.03,0,0,0.46 +The Mark of Kri,PS2,2002,Action,Sony Computer Entertainment,0.22,0.18,0,0.06,0.46 +Jampack Winter 2003 (RP-M),PS2,2003,Misc,Sony Computer Entertainment,0.22,0.18,0,0.06,0.46 +Rugrats: Castle Capers,GBA,2001,Action,THQ,0.33,0.12,0,0.01,0.46 +Crash Nitro Kart,GBA,2003,Racing,Vivendi Games,0.33,0.12,0,0.01,0.46 +Star Wars The Clone Wars: Republic Heroes,PS3,2009,Action,LucasArts,0.19,0.19,0,0.07,0.46 +Farming Simulator 2015,PS3,2015,Simulation,Koch Media,0.11,0.28,0,0.07,0.46 +Bleach: The Blade of Fate,DS,2006,Fighting,Sega,0.3,0.01,0.12,0.03,0.46 +Madden NFL 12,Wii,2011,Sports,Electronic Arts,0.43,0,0,0.03,0.46 +LEGO Rock Band,DS,2009,Misc,Warner Bros. Interactive Entertainment,0.33,0.09,0,0.04,0.46 +Mad Max (2015),XOne,2015,Action,Warner Bros. Interactive Entertainment,0.26,0.16,0,0.04,0.46 +"Barbie: Jet, Set & Style!",DS,2011,Misc,THQ,0.37,0.05,0,0.03,0.46 +Jak and Daxter: The Lost Frontier,PS2,2009,Platform,Sony Computer Entertainment,0.22,0.17,0,0.06,0.46 +Momotarou Dentetsu 11,PS2,2002,Misc,Hudson Soft,0,0,0.46,0,0.46 +Command & Conquer: Red Alert 3,X360,2008,Strategy,Electronic Arts,0.18,0.23,0,0.05,0.46 +Tomb Raider: Legend,PSP,2006,Action,Eidos Interactive,0.09,0.24,0,0.12,0.46 +Skylanders: SuperChargers,X360,2015,Action,Activision,0.24,0.18,0,0.04,0.46 +The Golden Compass,X360,2007,Action,Sega,0.3,0.12,0,0.04,0.46 +Star Wars: Demolition,PS,2000,Racing,Activision,0.25,0.17,0,0.03,0.46 +Scooby-Doo! and the Spooky Swamp,Wii,2010,Action,Warner Bros. Interactive Entertainment,0.29,0.13,0,0.04,0.46 +Sword Art Online: Lost Song,PSV,2015,Role-Playing,Namco Bandai Games,0.08,0.1,0.23,0.05,0.46 +Bloody Roar II,PS,1999,Fighting,Virgin Interactive,0.25,0.17,0,0.03,0.46 +Delta Force: Black Hawk Down,PS2,2005,Shooter,NovaLogic,0.22,0.17,0,0.06,0.46 +Burnout Dominator,PSP,2007,Racing,Electronic Arts,0.02,0.38,0.01,0.06,0.46 +NBA Live 07,X360,2006,Sports,Electronic Arts,0.42,0,0,0.04,0.46 +Vin Diesel: Wheelman,X360,2009,Racing,Ubisoft,0.24,0.17,0,0.05,0.46 +Space Invaders,SNES,1994,Shooter,Taito,0,0,0.46,0,0.46 +.hack//Outbreak Part 3,PS2,2002,Role-Playing,Atari,0.14,0.11,0.17,0.04,0.46 +Rayman Legends,X360,2013,Platform,Ubisoft,0.19,0.23,0,0.04,0.46 +Mother 1+2,GBA,2003,Role-Playing,Nintendo,0,0,0.45,0.01,0.46 +Hyperdimension Neptunia,PS3,2010,Role-Playing,Tecmo Koei,0.22,0.11,0.07,0.05,0.46 +iCarly,Wii,2009,Adventure,Activision,0.42,0,0,0.03,0.46 +Puzzle & Dragons Z + Super Mario Bros. Edition,3DS,2015,Puzzle,Nintendo,0.05,0.05,0.34,0.01,0.46 +Harry Potter and the Deathly Hallows - Part 1,X360,2010,Action,Electronic Arts,0.21,0.2,0,0.04,0.46 +Top Spin,XB,2003,Sports,Microsoft Game Studios,0.36,0.08,0,0.02,0.46 +Disney Guilty Party,Wii,2010,Misc,Disney Interactive Studios,0.43,0,0,0.03,0.46 +Warhawk,PS,1995,Simulation,Sony Computer Entertainment,0.25,0.17,0,0.03,0.46 +Pirates of the Caribbean: At World's End,Wii,2007,Action,Disney Interactive Studios,0.39,0.02,0.01,0.04,0.46 +Red Faction: Armageddon,PS3,2011,Shooter,THQ,0.2,0.16,0.03,0.07,0.46 +DanceStar Party,PS3,2011,Misc,Sony Computer Entertainment,0,0.35,0,0.1,0.46 +Persona 4: Dancing All Night,PSV,2015,Misc,Nippon Ichi Software,0.13,0.1,0.15,0.07,0.46 +Tales of Vesperia,PS3,2009,Role-Playing,Namco Bandai Games,0,0,0.45,0,0.45 +Thief (2014),XOne,2014,Action,Square Enix,0.26,0.15,0,0.04,0.45 +Dynasty Warriors: Strikeforce,PSP,2009,Action,Ubisoft Annecy,0.03,0.03,0.38,0.02,0.45 +2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild,GBA,2005,Platform,THQ,0.33,0.12,0,0.01,0.45 +Tales of Hearts,PSV,2013,Role-Playing,Namco Bandai Games,0.15,0.13,0.09,0.08,0.45 +Missile Command,PS,1999,Shooter,Atari,0.25,0.17,0,0.03,0.45 +Lego Batman 3: Beyond Gotham,3DS,2014,Action,Warner Bros. Interactive Entertainment,0.21,0.21,0,0.04,0.45 +Barbie as The Island Princess,Wii,2007,Adventure,Activision,0.42,0,0,0.03,0.45 +Jikkyou Powerful Pro Yakyuu 3,SNES,1996,Sports,Konami Digital Entertainment,0,0,0.45,0,0.45 +The Walking Dead: Season One,PS4,2014,Adventure,Telltale Games,0.12,0.25,0.01,0.08,0.45 +Jikkyou Powerful Pro Yakyuu 12,PS2,2005,Sports,Konami Digital Entertainment,0,0,0.45,0,0.45 +Enter the Matrix,GC,2003,Action,Atari,0.34,0.09,0.02,0.01,0.45 +Crash: Mind Over Mutant,Wii,2008,Platform,Vivendi Games,0.36,0.06,0,0.03,0.45 +NASCAR 2005: Chase for the Cup,XB,2004,Racing,Electronic Arts,0.34,0.1,0,0.02,0.45 +J-League Excite Stage '95,SNES,1995,Sports,Epoch,0,0,0.45,0,0.45 +The New York Times Crosswords,DS,2007,Puzzle,Majesco Entertainment,0.42,0,0,0.03,0.45 +Phantasy Star Online Episode I & II,GC,2002,Role-Playing,Infogrames,0.23,0.06,0.16,0.01,0.45 +Moshi Monsters: Moshlings Theme Park,DS,2012,Misc,Activision,0.03,0.37,0,0.05,0.45 +The Powerpuff Girls: Relish Rampage,PS2,2002,Action,BAM! Entertainment,0.22,0.17,0,0.06,0.45 +Resistance: Burning Skies,PSV,2012,Shooter,Sony Computer Entertainment,0.21,0.16,0.02,0.07,0.45 +NBA 2K13,Wii,2012,Sports,Take-Two Interactive,0.39,0.03,0,0.03,0.45 +Dead or Alive: Dimensions,3DS,2011,Fighting,Ubisoft Annecy,0.13,0.21,0.07,0.03,0.45 +The Chronicles of Riddick: Escape from Butcher Bay,XB,,Shooter,Vivendi Games,0.32,0.11,0,0.02,0.45 +Brain Challenge,DS,2008,Misc,Ubisoft,0.41,0.01,0,0.03,0.45 +NFL Head Coach,PS2,2006,Sports,Electronic Arts,0.38,0.01,0,0.06,0.45 +Watch Dogs,PC,2014,Action,Ubisoft,0.14,0.26,0,0.05,0.45 +Karaoke Revolution Presents American Idol Encore,Wii,2008,Misc,Konami Digital Entertainment,0.42,0,0,0.03,0.45 +Major League Baseball 2K11,X360,2011,Sports,Take-Two Interactive,0.4,0.03,0,0.03,0.45 +Enemy Territory: Quake Wars,X360,2008,Shooter,Activision,0.3,0.11,0,0.04,0.45 +Ghostbusters,2600,1985,Puzzle,Activision,0.42,0.03,0,0,0.45 +NCAA Gamebreaker 99,PS,1998,Sports,989 Studios,0.25,0.17,0,0.03,0.45 +Area 51,PS2,2005,Shooter,Midway Games,0.22,0.17,0,0.06,0.45 +World Stadium 2,PS,1998,Sports,Namco Bandai Games,0,0,0.42,0.03,0.45 +Sega Rally Revo,X360,2007,Racing,Sega,0.12,0.28,0,0.05,0.45 +NHL 2005,PS2,2004,Sports,Electronic Arts,0.22,0.17,0,0.06,0.45 +TNA iMPACT!,X360,2008,Fighting,Midway Games,0.26,0.15,0,0.04,0.45 +Star Wars Jedi Knight: Jedi Academy,XB,2003,Shooter,Activision,0.34,0.1,0,0.02,0.45 +Thrillville: Off the Rails,Wii,2007,Strategy,LucasArts,0.39,0.02,0,0.03,0.45 +Phoenix,2600,1981,Simulation,Atari,0.42,0.02,0,0,0.45 +Spider-Man: Shattered Dimensions,PS3,2010,Action,Activision,0.26,0.13,0,0.06,0.45 +F.E.A.R. 3,X360,2011,Shooter,Warner Bros. Interactive Entertainment,0.3,0.11,0.01,0.04,0.45 +My Fashion Studio,DS,2007,Misc,Ubisoft,0.41,0.01,0,0.03,0.45 +Plants vs. Zombies: Garden Warfare 2,PS4,2016,Shooter,Electronic Arts,0.17,0.21,0,0.07,0.45 +Rock Band Country Track Pack,Wii,2009,Misc,MTV Games,0.42,0,0,0.03,0.45 +Pro Evolution Soccer 2016,PS3,2015,Sports,Konami Digital Entertainment,0.08,0.18,0.15,0.05,0.45 +Apocalypse,PS,1998,Action,Activision,0.25,0.17,0,0.03,0.45 +Transformers: Revenge of the Fallen (Wii & PS2 Version),DS,2009,Action,Activision,0.27,0.14,0,0.04,0.45 +PES 2009: Pro Evolution Soccer,Wii,2009,Sports,Konami Digital Entertainment,0.09,0.26,0.05,0.05,0.45 +Yu-Gi-Oh! Destiny Board Traveler,GBA,2004,Misc,Konami Digital Entertainment,0.32,0.12,0,0.01,0.45 +SingStar Queen,PS3,2009,Misc,Sony Computer Entertainment,0.11,0.26,0,0.08,0.45 +God Eater 2,PSV,2013,Role-Playing,Namco Bandai Games,0,0,0.45,0,0.45 +Samurai Warriors 3,Wii,2009,Action,Nintendo,0.1,0.02,0.32,0.01,0.45 +World Soccer Winning Eleven 5 Final Evolution,PS2,2001,Sports,Konami Digital Entertainment,0,0,0.45,0,0.45 +One Piece: Pirate Warriors 3,PS4,2015,Action,Namco Bandai Games,0.08,0.22,0.1,0.05,0.45 +Sphinx and the Cursed Mummy,PS2,2003,Action,THQ,0.22,0.17,0,0.06,0.45 +Fatal Fury 2,SNES,1993,Fighting,Takara,0,0,0.45,0,0.45 +Rampage World Tour,N64,1998,Action,GT Interactive,0.36,0.08,0,0.01,0.45 +Pokemon Puzzle League,N64,2000,Puzzle,Nintendo,0.36,0.08,0,0.01,0.45 +Eternal Sonata,PS3,2008,Role-Playing,Atari,0.19,0.13,0.07,0.06,0.45 +Dance Dance Revolution: Hottest Party 3,Wii,2009,Simulation,Konami Digital Entertainment,0.26,0.14,0,0.04,0.45 +FIFA 15,3DS,2014,Sports,Electronic Arts,0.09,0.33,0,0.03,0.45 +Petz: Catz 2,Wii,2007,Simulation,Ubisoft,0.41,0.01,0,0.03,0.45 +Bee Movie Game,DS,2007,Action,Activision,0.41,0,0,0.03,0.45 +Tekken Advance,GBA,2001,Fighting,Infogrames,0.32,0.12,0,0.01,0.45 +Shin Megami Tensei: Persona 3,PS2,2006,Role-Playing,Tecmo Koei,0.22,0.03,0,0.2,0.45 +Persona,PS,1995,Role-Playing,Atlus,0,0,0.42,0.03,0.45 +Band Hero,DS,2009,Misc,Activision,0.21,0.19,0,0.05,0.45 +Naruto Shippuden: Ultimate Ninja Storm Generations,X360,2012,Fighting,Namco Bandai Games,0.26,0.14,0.01,0.04,0.45 +Hot Wheels: Stunt Track Challenge,GBA,2004,Racing,THQ,0.32,0.12,0,0.01,0.45 +Viking: Battle for Asgard,X360,2008,Action,Sega,0.16,0.24,0,0.05,0.45 +Maze Craze: A Game of Cops 'n Robbers,2600,,Action,Atari,0.42,0.02,0,0,0.45 +Mobile Suit Gundam,PS,1995,Action,Namco Bandai Games,0,0,0.42,0.03,0.45 +Silent Hill: Homecoming,X360,,Action,Konami Digital Entertainment,0.25,0.16,0,0.04,0.45 +SingStar Take That,PS2,2009,Misc,Sony Computer Entertainment,0,0.06,0,0.39,0.45 +SOCOM: U.S. Navy SEALs Fireteam Bravo 3,PSP,2010,Shooter,Sony Computer Entertainment,0.17,0.13,0.06,0.08,0.45 +Final Fantasy Collection,PS,1999,Role-Playing,Square,0,0,0.42,0.03,0.45 +Disney Sing It! High School Musical 3: Senior Year,PS2,2008,Misc,Disney Interactive Studios,0.09,0.02,0,0.34,0.45 +NBA Live 10,X360,2009,Sports,Electronic Arts,0.4,0.02,0,0.03,0.45 +Samurai Warriors: Xtreme Legends,PS2,2004,Action,Tecmo Koei,0.04,0.03,0.36,0.01,0.45 +Tony Hawk's Proving Ground,PS3,2007,Sports,Activision,0.36,0.05,0,0.05,0.45 +NHL FaceOff,PS,1994,Sports,Sony Computer Entertainment,0.25,0.17,0,0.03,0.45 +WWE WrestleMania 21,XB,2005,Fighting,THQ,0.34,0.1,0,0.02,0.45 +Brunswick Pro Bowling,X360,2010,Sports,505 Games,0.38,0.04,0,0.03,0.45 +Worms: Open Warfare 2,PSP,2007,Strategy,THQ,0.04,0.26,0,0.14,0.45 +NBA Live 2005,GC,2004,Sports,Electronic Arts,0.35,0.09,0,0.01,0.45 +Defender II,2600,1987,Shooter,Atari,0.42,0.02,0,0,0.45 +WWE Day of Reckoning,GC,2004,Fighting,THQ,0.35,0.09,0,0.01,0.45 +Dragon Quest Heroes: Rocket Slime,DS,2005,Action,Square Enix,0.13,0,0.31,0.01,0.45 +ATV Quad Power Racing 2,XB,2003,Racing,Acclaim Entertainment,0.36,0.07,0,0.01,0.45 +Walt Disney World Quest: Magical Racing Tour,PS,2000,Racing,Eidos Interactive,0.25,0.17,0,0.03,0.45 +Sled Storm,PS2,2002,Racing,Electronic Arts,0.22,0.17,0,0.06,0.45 +Vandal Hearts,PS,1996,Role-Playing,Konami Digital Entertainment,0.14,0.09,0.19,0.03,0.45 +Mario Tennis Ultra Smash,WiiU,2015,Sports,Nintendo,0.13,0.16,0.13,0.03,0.45 +Celebrity Sports Showdown,Wii,2008,Sports,Electronic Arts,0.18,0.22,0,0.05,0.45 +Jawbreaker,2600,1981,Action,Tigervision,0.42,0.03,0,0,0.45 +Scooby-Doo! Mystery Mayhem,PS2,2004,Action,THQ,0.22,0.17,0,0.06,0.45 +Mario Golf: Advance Tour,GBA,2004,Sports,Nintendo,0.32,0.12,0,0.01,0.45 +Crash: Mind Over Mutant,PSP,2008,Platform,Vivendi Games,0.11,0.22,0,0.12,0.45 +Karaoke Revolution,Wii,2009,Misc,Konami Digital Entertainment,0.24,0.16,0,0.04,0.45 +Discovery Kids: Kitten Corner,DS,2009,Simulation,505 Games,0.42,0,0,0.03,0.45 +Just Dance 2014,XOne,2013,Misc,Ubisoft,0.3,0.11,0,0.04,0.45 +Yu-Gi-Oh! Capsule Monster Coliseum,PS2,2004,Misc,Konami Digital Entertainment,0.22,0.17,0,0.06,0.44 +Payday 2,PS3,2013,Shooter,505 Games,0.21,0.15,0,0.08,0.44 +Major League Baseball 2K6,PS2,2006,Sports,Spike,0.37,0.01,0,0.06,0.44 +Jampack Volume 13 (RP-M),PS2,2005,Misc,Sony Computer Entertainment,0.37,0.01,0,0.06,0.44 +World Soccer Winning Eleven 9,XB,2005,Sports,Konami Digital Entertainment,0.06,0.33,0.02,0.03,0.44 +NBA Live 2000,N64,1999,Sports,Electronic Arts,0.42,0.02,0,0,0.44 +Teenage Mutant Ninja Turtles 2: Battle Nexus,PS2,2004,Action,Konami Digital Entertainment,0.22,0.17,0,0.06,0.44 +"SpongeBob SquarePants: Lights, Camera, Pants!",PS2,2005,Misc,THQ,0.37,0.01,0,0.06,0.44 +Disney Infinity 3.0,X360,2015,Action,Disney Interactive Studios,0.19,0.21,0,0.04,0.44 +TouchMaster 3,DS,2009,Puzzle,Warner Bros. Interactive Entertainment,0.3,0.11,0,0.04,0.44 +The Thing,PS2,2002,Adventure,Vivendi Games,0.22,0.17,0,0.06,0.44 +Disney Infinity 3.0,WiiU,2015,Action,Disney Interactive Studios,0.2,0.21,0,0.04,0.44 +Van Helsing,PS2,2004,Action,Activision,0.22,0.17,0,0.06,0.44 +X-Men Legends II: Rise of Apocalypse,XB,2005,Role-Playing,Activision,0.3,0.12,0,0.02,0.44 +Food Network: Cook or Be Cooked,Wii,2009,Misc,Namco Bandai Games,0.41,0,0,0.03,0.44 +Transformers: Fall of Cybertron,X360,2012,Action,Activision,0.28,0.13,0,0.04,0.44 +Metro: Last Light,PS3,2013,Action,Deep Silver,0.14,0.2,0.03,0.08,0.44 +The Urbz: Sims in the City (all regions sales),DS,2004,Simulation,Electronic Arts,0.4,0.01,0.02,0,0.44 +Spawn: Armageddon,PS2,2003,Action,Electronic Arts,0.22,0.17,0,0.06,0.44 +The Godfather (US sales),XB,2006,Action,Electronic Arts,0.33,0.1,0,0.02,0.44 +DmC: Devil May Cry,X360,2013,Action,Capcom,0.26,0.13,0.01,0.04,0.44 +Plants vs. Zombies: Garden Warfare 2,XOne,2016,Shooter,Electronic Arts,0.26,0.15,0,0.04,0.44 +World Stadium EX,PS,1996,Sports,Namco Bandai Games,0,0,0.41,0.03,0.44 +Tiger Woods PGA Tour 2003,XB,2002,Sports,Electronic Arts,0.35,0.08,0,0.01,0.44 +Battlefield 2: Modern Combat,PS2,2005,Shooter,Electronic Arts,0.37,0.01,0,0.06,0.44 +G-Force,Wii,2009,Action,Disney Interactive Studios,0.19,0.2,0,0.05,0.44 +Ben 10 Alien Force: Vilgax Attacks,Wii,2009,Action,D3Publisher,0.25,0.15,0,0.04,0.44 +50 Cent: Bulletproof,XB,2005,Action,Vivendi Games,0.33,0.1,0,0.02,0.44 +Densetsu no Stafi 2,GBA,2003,Platform,Nintendo,0,0,0.43,0.01,0.44 +Independence Day,PS,1997,Shooter,Fox Interactive,0.25,0.17,0,0.03,0.44 +Need for Speed: Shift 2 Unleashed,X360,2011,Racing,Electronic Arts,0.18,0.22,0,0.04,0.44 +Chocobo Racing,PS,1999,Racing,SquareSoft,0.07,0.05,0.3,0.03,0.44 +Ninja Gaiden 3,PS3,2012,Action,Tecmo Koei,0.19,0.1,0.11,0.05,0.44 +Child of Eden,X360,2011,Shooter,Ubisoft,0.28,0.12,0,0.04,0.44 +LEGO Star Wars II: The Original Trilogy,XB,2006,Action,LucasArts,0.33,0.1,0,0.02,0.44 +Family Fest Presents Circus Games,Wii,2008,Misc,Ubisoft,0.1,0.29,0,0.05,0.44 +My Spanish Coach,DS,2007,Misc,Ubisoft,0.4,0.01,0,0.03,0.44 +The Darkness,X360,2007,Shooter,Take-Two Interactive,0.36,0.04,0.01,0.04,0.44 +Gundam SEED: Federation vs. Z.A.F.T.,PS2,2005,Shooter,Namco Bandai Games,0,0,0.44,0,0.44 +Ms. Pac-Man Maze Madness,PS,2000,Puzzle,Namco Bandai Games,0.25,0.17,0,0.03,0.44 +Blood Omen: Legacy of Kain,PS,1996,Role-Playing,Crystal Dynamics,0.25,0.17,0,0.03,0.44 +Super Bomberman 4,SNES,1996,Puzzle,Hudson Soft,0,0,0.44,0,0.44 +Bomberman II,NES,1991,Puzzle,Hudson Soft,0.16,0.03,0.15,0.1,0.44 +Duke Nukem 64,N64,1997,Shooter,GT Interactive,0.35,0.08,0,0.01,0.44 +Sin and Punishment: Star Successor,Wii,2009,Shooter,Nintendo,0.2,0.14,0.06,0.04,0.44 +Jump Start Pet Rescue,Wii,2009,Misc,Knowledge Adventure,0.41,0,0,0.03,0.44 +Naughty Bear,PS3,2010,Action,505 Games,0.18,0.18,0,0.07,0.44 +"SpongeBob SquarePants: Lights, Camera, Pants!",GC,2005,Misc,THQ,0.34,0.09,0,0.01,0.44 +Super Robot Taisen OG: Original Generations,PS2,2007,Strategy,Banpresto,0,0,0.44,0,0.44 +Army Men World War: Final Front,PS,2001,Action,3DO,0.24,0.17,0,0.03,0.44 +Petz: Horsez 2,DS,2007,Simulation,Ubisoft,0.41,0,0,0.03,0.44 +Puppy Luv: Spa and Resort,DS,2007,Simulation,Activision,0.4,0,0,0.03,0.44 +Yu-Gi-Oh! 5D's Tag Force 4,PSP,2009,Strategy,Konami Digital Entertainment,0.19,0.07,0.12,0.06,0.44 +MX Unleashed,XB,2004,Racing,THQ,0.34,0.08,0,0.02,0.44 +Jikkyou Powerful Pro Yakyuu 9,PS2,2002,Sports,Konami Digital Entertainment,0,0,0.44,0,0.44 +Grind Session,PS,2000,Sports,Sony Computer Entertainment,0.24,0.17,0,0.03,0.44 +Naruto: Gekito Ninja Taisen! 3,GC,2004,Fighting,Tomy Corporation,0,0,0.43,0.01,0.44 +Barbie: Groom and Glam Pups,DS,2010,Action,THQ,0.26,0.14,0,0.04,0.44 +Wario World,GC,2003,Platform,Nintendo,0.34,0.09,0,0.01,0.44 +Scooby-Doo! Mystery Mayhem,GBA,2003,Action,THQ,0.31,0.12,0,0.01,0.44 +Super Breakout,2600,,Puzzle,Atari,0.41,0.03,0,0,0.44 +Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri,PS2,2003,Misc,Namco Bandai Games,0,0,0.44,0,0.44 +Deer Drive,DS,2010,Sports,Mastiff,0.41,0,0,0.02,0.44 +Robert Ludlum's The Bourne Conspiracy,X360,,Action,Vivendi Games,0.26,0.14,0,0.04,0.44 +Just Dance 4,PS3,2012,Misc,Ubisoft,0.26,0.12,0,0.06,0.44 +TimeSplitters 2,GC,2002,Shooter,Eidos Interactive,0.34,0.09,0,0.01,0.44 +Battlebots: Design & Destroy,GBA,2003,Action,Majesco Entertainment,0.31,0.12,0,0.01,0.44 +Devil May Cry HD Collection,X360,2012,Action,Capcom,0.28,0.11,0.01,0.03,0.44 +Eternal Darkness: Sanity's Requiem,GC,2002,Adventure,Nintendo,0.34,0.09,0,0.01,0.44 +Power Rangers: S.P.D.,GBA,2004,Action,THQ,0.31,0.12,0,0.01,0.44 +Naruto: Ultimate Ninja 3,PS2,2005,Fighting,Atari,0.36,0.01,0,0.06,0.44 +SingStar Motown,PS2,2009,Misc,Sony Computer Entertainment,0,0.06,0,0.38,0.44 +Neon Genesis Evangelion,SAT,1996,Adventure,Sega,0,0,0.44,0,0.44 +Nicktoons: Attack of the Toybots,Wii,2007,Platform,THQ,0.4,0,0,0.03,0.44 +Mobile Suit Gundam: One Year War,PS2,2005,Action,Namco Bandai Games,0,0,0.44,0,0.44 +Tongari Boushi to Mahou no Otana,DS,2010,Simulation,Konami Digital Entertainment,0,0,0.44,0,0.44 +NFL Blitz 20-03,PS2,2002,Sports,Midway Games,0.21,0.17,0,0.06,0.44 +Just Dance: Summer Party,Wii,2011,Misc,Ubisoft,0.41,0,0,0.03,0.44 +SpongeBob's Atlantis SquarePantis,PS2,2007,Action,THQ,0.36,0.01,0,0.06,0.44 +Dragon Ball Z: Shin Budokai - Another Road,PSP,2007,Fighting,Atari,0.19,0.09,0.08,0.07,0.44 +Master of Illusion,DS,2006,Puzzle,Nintendo,0.16,0,0.26,0.01,0.44 +Star Wars: Jedi Starfighter,XB,2002,Simulation,Activision,0.35,0.07,0,0.02,0.44 +Remington Great American Bird Hunt,Wii,2009,Sports,Mastiff,0.41,0,0,0.03,0.44 +Classic NES Series: Metroid,GBA,2004,Adventure,Nintendo,0.26,0.1,0.07,0.01,0.43 +Alpha Protocol,PS3,2010,Role-Playing,Sega,0.19,0.18,0,0.07,0.43 +Tetris Axis,3DS,2011,Puzzle,Tetris Online,0.2,0.13,0.06,0.03,0.43 +Dora the Explorer: Dora Puppy,DS,2009,Misc,Take-Two Interactive,0.39,0.01,0,0.03,0.43 +Primal,PS2,2003,Action,Sony Computer Entertainment,0.21,0.17,0,0.06,0.43 +Madden NFL 2002,N64,2001,Sports,Electronic Arts,0.41,0.02,0,0,0.43 +Need for Speed Underground 2,GBA,2004,Racing,Electronic Arts,0.31,0.12,0,0.01,0.43 +007: Quantum of Solace,PS2,2008,Action,Activision,0.17,0,0,0.26,0.43 +Spec Ops: Covert Assault,PS,2001,Shooter,Take-Two Interactive,0.24,0.16,0,0.03,0.43 +SSX Tricky,XB,2001,Sports,Electronic Arts,0.32,0.09,0,0.02,0.43 +Flight Control Rocket,GBA,2005,Simulation,THQ,0.31,0.12,0,0.01,0.43 +FIFA 14,PC,2013,Sports,Electronic Arts,0.01,0.36,0,0.06,0.43 +"The Chronicles of Narnia: The Lion, The Witch and The Wardrobe",PS2,2005,Action,Disney Interactive Studios,0.36,0.01,0,0.06,0.43 +Trials Fusion,PS4,2014,Racing,Ubisoft,0.13,0.21,0.01,0.08,0.43 +Wheel of Fortune,DS,2010,Misc,THQ,0.41,0,0,0.03,0.43 +NiGHTS into dreams...,SAT,1996,Platform,Sega,0,0,0.43,0,0.43 +NCAA Football 2004,XB,2003,Sports,Electronic Arts,0.4,0.02,0,0.02,0.43 +Overwatch,PC,2016,Shooter,Activision,0.22,0.18,0,0.04,0.43 +Rock Band 4,XOne,2015,Misc,Harmonix Music Systems,0.35,0.04,0,0.04,0.43 +NBA Jam,Wii,2010,Sports,Electronic Arts,0.38,0.03,0,0.03,0.43 +Bionicle,PS2,2003,Action,Electronic Arts,0.21,0.17,0,0.06,0.43 +Minecraft,WiiU,2016,Misc,Microsoft Game Studios,0.18,0.09,0.14,0.03,0.43 +MLB 2002,PS,2001,Sports,Sony Computer Entertainment,0.24,0.16,0,0.03,0.43 +Sleeping Dogs,PS4,2014,Action,Square Enix,0.16,0.2,0,0.07,0.43 +TimeSplitters,PS2,2000,Shooter,Eidos Interactive,0.21,0.17,0,0.06,0.43 +Barnstorming,2600,1981,Action,Activision,0.4,0.02,0,0,0.43 +InuYasha: The Secret of the Cursed Mask,PS2,2004,Role-Playing,Namco Bandai Games,0.21,0.17,0,0.06,0.43 +Rune Factory 3: A Fantasy Harvest Moon,DS,2009,Role-Playing,Rising Star Games,0.28,0.03,0.1,0.02,0.43 +The Powerpuff Girls: Him and Seek,GBA,2002,Platform,BAM! Entertainment,0.31,0.11,0,0.01,0.43 +Mega Man Zero 2,GBA,2003,Platform,Capcom,0.18,0.07,0.17,0.01,0.43 +Wonder Project J: Kikai no Shonen Pino,SNES,1994,Simulation,Enix Corporation,0,0,0.43,0,0.43 +2010 FIFA World Cup South Africa,Wii,2010,Sports,Electronic Arts,0.23,0.15,0.01,0.04,0.43 +Atelier Totori: The Adventurer of Arland,PS3,2010,Role-Playing,Nippon Ichi Software,0.12,0.07,0.21,0.03,0.43 +Spec Ops: The Line,X360,2012,Shooter,Take-Two Interactive,0.21,0.19,0,0.04,0.43 +The Fairly Odd Parents: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.31,0.11,0,0.01,0.43 +Ghostbusters: The Video Game,PS2,2009,Action,Atari,0.15,0.04,0,0.24,0.43 +Hunter: The Reckoning Wayward,PS2,2003,Action,Interplay,0.21,0.16,0,0.06,0.43 +How to Train Your Dragon,Wii,2010,Action,Activision,0.24,0.15,0,0.04,0.43 +Command & Conquer 3: Tiberium Wars,X360,2007,Strategy,Electronic Arts,0.35,0.05,0,0.03,0.43 +WipEout 64,N64,1998,Racing,Midway Games,0.28,0.14,0,0.01,0.43 +Mischief Makers,N64,1997,Platform,Nintendo,0.25,0.06,0.07,0.06,0.43 +Max Payne 3,PC,2012,Shooter,Take-Two Interactive,0.15,0.22,0,0.06,0.43 +Petz Bunnyz,DS,2008,Simulation,Ubisoft,0.39,0.01,0,0.03,0.43 +Castlevania: Portrait of Ruin,DS,2006,Platform,Konami Digital Entertainment,0.33,0.03,0.04,0.03,0.43 +NHL Slapshot,Wii,,Sports,Unknown,0.4,0,0,0.02,0.43 +EyeToy: AntiGrav,PS2,2004,Sports,Sony Computer Entertainment,0.36,0.01,0,0.06,0.43 +FIFA 14,Wii,2013,Sports,Electronic Arts,0,0.38,0,0.05,0.43 +EverQuest Online Adventures,PS2,2003,Role-Playing,Sony Online Entertainment,0.21,0.16,0,0.05,0.43 +Cool Boarders,PS,1996,Sports,Sony Computer Entertainment,0.1,0.07,0.24,0.03,0.43 +"999: Nine Hours, Nine Persons, Nine Doors",DS,2009,Adventure,ChunSoft,0.37,0,0.03,0.03,0.43 +Mobile Suit Gundam: Zeonic Front,PS2,2001,Simulation,Namco Bandai Games,0.09,0.07,0.25,0.02,0.43 +Zone of the Enders HD Collection,PS3,2012,Simulation,Konami Digital Entertainment,0.21,0.08,0.09,0.05,0.43 +Def Jam Icon,PS3,2007,Action,Electronic Arts,0.16,0.19,0,0.08,0.43 +Tales of the World: Radiant Mythology,PSP,2006,Role-Playing,Ubisoft,0.17,0.01,0.23,0.02,0.43 +Monopoly,PS2,2008,Misc,Electronic Arts,0.21,0.16,0,0.05,0.43 +Dawn of Mana,PS2,2006,Role-Playing,Square Enix,0.07,0.05,0.29,0.02,0.43 +Microsoft Flight Simulator X,PC,2006,Simulation,Microsoft Game Studios,0.02,0.34,0,0.07,0.43 +Lego Batman 3: Beyond Gotham,XOne,2014,Action,Warner Bros. Interactive Entertainment,0.23,0.17,0,0.04,0.43 +Madden NFL 2003,GC,2002,Sports,Electronic Arts,0.33,0.09,0,0.01,0.43 +NASCAR Kart Racing,Wii,2009,Racing,Electronic Arts,0.39,0,0,0.03,0.43 +Disney Sing It,X360,2008,Misc,Disney Interactive Studios,0.39,0.01,0,0.03,0.43 +Backyard Baseball,GBA,2002,Sports,Atari,0.31,0.11,0,0.01,0.43 +Call of Duty: Black Ops II,WiiU,2012,Shooter,Activision,0.21,0.18,0,0.03,0.43 +TRON: Evolution,PS3,2010,Action,Disney Interactive Studios,0.27,0.1,0,0.05,0.43 +Midway Arcade Treasures,XB,2003,Misc,Midway Games,0.33,0.08,0,0.01,0.43 +Call of Duty: Modern Warfare: Mobilized,DS,2009,Shooter,Activision,0.37,0.02,0,0.03,0.43 +Petz: Horsez 2,Wii,2007,Simulation,Ubisoft,0.39,0,0,0.03,0.43 +The Smurfs,DS,2011,Action,Ubisoft,0.24,0.14,0,0.04,0.43 +Bakugan: Battle Brawlers,PS2,2009,Action,Activision,0.21,0.16,0,0.05,0.43 +NHL FaceOff 99,PS,1997,Sports,989 Studios,0.24,0.16,0,0.03,0.43 +Skylanders: Trap Team,PS4,2014,Action,Activision,0.18,0.17,0,0.07,0.43 +SEGA Classics Collection,PS2,2005,Misc,Sega,0.21,0.16,0,0.05,0.43 +Pirates of the Caribbean: At World's End,PSP,2007,Action,Disney Interactive Studios,0.15,0.17,0,0.1,0.43 +Juiced: Eliminator,PSP,2006,Racing,THQ,0.11,0.2,0,0.12,0.43 +Naruto: Ninja Council 3,DS,2006,Action,D3Publisher,0.39,0,0,0.03,0.42 +Neon Genesis Evangelion 2nd Impression,SAT,1997,Role-Playing,Sega,0,0,0.42,0,0.42 +Dai-2-Ji Super Robot Taisen Z: Hakai-hen,PSP,2011,Strategy,Banpresto,0,0,0.42,0,0.42 +NBA Street,GC,2002,Sports,Electronic Arts,0.33,0.09,0,0.01,0.42 +Ben 10 Alien Force: Vilgax Attacks,DS,2009,Action,D3Publisher,0.22,0.16,0,0.04,0.42 +Ben 10 Alien Force: Vilgax Attacks,PSP,2009,Action,D3Publisher,0.13,0.19,0,0.11,0.42 +Valkyrie Profile: Covenant of the Plume,DS,2008,Role-Playing,Square Enix,0.23,0.02,0.16,0.02,0.42 +The Legend of Spyro: The Eternal Night,PS2,2007,Platform,Vivendi Games,0.21,0.16,0,0.05,0.42 +Mega Man Battle Network,GBA,2001,Role-Playing,Capcom,0.14,0.05,0.22,0.01,0.42 +LEGO Rock Band,PS3,2009,Misc,Warner Bros. Interactive Entertainment,0.24,0.13,0,0.06,0.42 +25 to Life,PS2,2006,Shooter,Eidos Interactive,0.35,0.01,0,0.06,0.42 +NHL 2K6,PS2,2005,Sports,Take-Two Interactive,0.21,0.16,0,0.05,0.42 +Medal of Honor: Rising Sun,GC,2003,Shooter,Electronic Arts,0.33,0.09,0,0.01,0.42 +The Sims,XB,2003,Simulation,Electronic Arts,0.31,0.1,0,0.01,0.42 +Guitar Hero: Smash Hits,X360,2009,Misc,Activision,0.23,0.15,0,0.04,0.42 +Dog's Life,PS2,2003,Adventure,Sony Computer Entertainment,0.21,0.16,0,0.05,0.42 +The X Files,PS,1999,Adventure,Sony Computer Entertainment,0.24,0.16,0,0.03,0.42 +Super Wagyan Land,SNES,1991,Action,Namco Bandai Games,0,0,0.42,0,0.42 +Rascal,PS,1998,Action,Psygnosis,0.24,0.16,0,0.03,0.42 +Hometown Story,3DS,2013,Role-Playing,Rising Star Games,0.22,0.13,0.04,0.04,0.42 +Tony Hawk's American Wasteland,GC,2005,Sports,Activision,0.33,0.08,0,0.01,0.42 +Top Spin 4,X360,2011,Sports,Take-Two Interactive,0.15,0.23,0,0.04,0.42 +Famicom Mini: Super Mario Bros. 2,GBA,2004,Platform,Nintendo,0,0,0.41,0.01,0.42 +Crash: Mind Over Mutant,DS,2008,Platform,Vivendi Games,0.39,0,0,0.03,0.42 +Medal of Honor Heroes 2,Wii,2007,Shooter,Electronic Arts,0.34,0.04,0.01,0.04,0.42 +Yu-Gi-Oh! GX: Tag Force 2,PSP,2007,Strategy,Konami Digital Entertainment,0.03,0.2,0.1,0.11,0.42 +Colony Wars,PS,1997,Simulation,Psygnosis,0.24,0.16,0,0.03,0.42 +All-Star Baseball 2004,PS2,2003,Sports,Acclaim Entertainment,0.21,0.16,0,0.05,0.42 +Big Strike Bowling,PS,2003,Sports,Gotham Games,0.23,0.16,0,0.03,0.42 +Ragnarok Odyssey,PSV,2012,Role-Playing,GungHo,0.22,0.01,0.16,0.03,0.42 +Harry Potter and the Deathly Hallows - Part 1,DS,2010,Action,Electronic Arts,0.2,0.19,0,0.04,0.42 +Horsez,DS,2006,Simulation,Ubisoft,0.38,0.01,0,0.03,0.42 +SpongeBob's Truth or Square (US sales),DS,2009,Action,THQ,0.42,0,0,0,0.42 +NASCAR Thunder 2002,PS,2001,Racing,Electronic Arts,0.23,0.16,0,0.03,0.42 +Grandia,SAT,1997,Role-Playing,ESP,0,0,0.42,0,0.42 +ESPN NHL 2K5,XB,2004,Sports,Global Star,0.32,0.09,0,0.02,0.42 +Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005,GBA,2005,Misc,Konami Digital Entertainment,0.3,0.11,0,0.01,0.42 +Hot Wheels World Race,PS2,2003,Racing,THQ,0.21,0.16,0,0.05,0.42 +Avatar: The Last Airbender - The Burning Earth,PS2,2007,Action,THQ,0.21,0.16,0,0.05,0.42 +Superman: Shadow of Apokolips,PS2,2002,Action,Atari,0.21,0.16,0,0.05,0.42 +NiGHTS: Journey of Dreams,Wii,2007,Platform,Sega,0.33,0.03,0.04,0.03,0.42 +American Chopper,PS2,2004,Racing,Zoo Digital Publishing,0.35,0.01,0,0.06,0.42 +Vanquish,X360,2010,Shooter,Sega,0.19,0.17,0.03,0.04,0.42 +Star Wars Trilogy: Apprentice of the Force,GBA,2004,Action,Ubisoft,0.3,0.11,0,0.01,0.42 +Marvel Super Hero Squad,DS,2009,Fighting,THQ,0.37,0.02,0,0.03,0.42 +Lemony Snicket's A Series of Unfortunate Events,GBA,2004,Platform,Activision,0.3,0.11,0,0.01,0.42 +JGTC: All-Japan Grand Touring Car Championship,PS,1998,Racing,TYO,0.23,0.16,0,0.03,0.42 +NBA Live 06,PSP,2005,Sports,Electronic Arts,0.39,0,0,0.03,0.42 +Arc the Lad III,PS,1999,Role-Playing,Sony Computer Entertainment,0,0,0.39,0.03,0.42 +Solitaire Overload,DS,2007,Misc,Telegames,0.39,0,0,0.03,0.42 +Mobile Suit Gundam: Gundam vs. Gundam,PSP,2008,Fighting,Namco Bandai Games,0,0,0.42,0,0.42 +Test Drive,XB,2002,Racing,Atari,0.35,0.05,0,0.02,0.42 +Jikkyou Powerful Pro Yakyuu 11,PS2,2004,Sports,Konami Digital Entertainment,0,0,0.42,0,0.42 +Ghost Trick: Phantom Detective,DS,2010,Adventure,Capcom,0.2,0.08,0.12,0.03,0.42 +The Adventures of Jimmy Neutron Boy Genius: Jet Fusion,PS2,2003,Action,THQ,0.21,0.16,0,0.05,0.42 +Rush 2: Extreme Racing USA,N64,1998,Racing,Midway Games,0.35,0.06,0,0,0.42 +NFL Blitz 2001,N64,2000,Sports,Midway Games,0.34,0.07,0,0,0.42 +Dr. Mario 64,N64,2001,Puzzle,Nintendo,0.34,0.07,0,0,0.42 +Jikkyou Powerful Pro Yakyuu 6,N64,1999,Sports,Konami Digital Entertainment,0,0,0.39,0.03,0.42 +Army Men: Sarge's Heroes 2,N64,2000,Shooter,3DO,0.34,0.07,0,0,0.42 +James Bond 007: Everything or Nothing,GC,2004,Shooter,Electronic Arts,0.32,0.08,0,0.01,0.42 +Green Day: Rock Band,PS3,2010,Misc,MTV Games,0.19,0.16,0,0.07,0.42 +Wolfenstein: The Old Blood,PS4,2015,Action,Bethesda Softworks,0.09,0.25,0.02,0.06,0.42 +MLB 08: The Show,PS2,2008,Sports,Sony Computer Entertainment,0.35,0.01,0,0.06,0.42 +Disney Infinity 2.0: Marvel Super Heroes,XOne,2014,Action,Disney Interactive Studios,0.24,0.15,0,0.03,0.42 +Dance Dance Revolution Ultramix 2,XB,2004,Simulation,Konami Digital Entertainment,0.32,0.09,0,0.02,0.42 +Mega Man Anniversary Collection,GC,2004,Platform,Capcom,0.32,0.08,0,0.01,0.42 +Blazing Angels: Squadrons of WWII,X360,2006,Simulation,Ubisoft,0.36,0.03,0,0.03,0.42 +Super Famista 4,SNES,1995,Sports,Namco Bandai Games,0,0,0.42,0,0.42 +The Fairly Odd Parents: Game Boy Advance Video Volume 2,GBA,2004,Misc,,0.3,0.11,0,0.01,0.42 +Cabela's Legendary Adventures,PS2,2008,Sports,Activision,0.21,0.16,0,0.05,0.42 +Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!,DS,2010,Misc,Namco Bandai Games,0,0,0.42,0,0.42 +Harry Potter and the Goblet of Fire,GC,2005,Action,Electronic Arts,0.32,0.08,0,0.01,0.42 +JumpStart: Escape from Adventure Island,Wii,2009,Adventure,Knowledge Adventure,0.39,0,0,0.03,0.42 +Thrillville: Off the Rails,PS2,2007,Strategy,LucasArts,0.2,0.16,0,0.05,0.42 +Style Lab: Makeover,DS,2009,Simulation,Ubisoft,0.35,0.03,0,0.03,0.42 +Condemned: Criminal Origins,X360,2005,Action,Sega,0.36,0.03,0,0.03,0.42 +Mega Man X6,PS,2001,Action,Capcom,0.14,0.1,0.16,0.03,0.42 +Monster Jam: Urban Assault,Wii,2008,Racing,Activision,0.39,0,0,0.03,0.42 +BloodRayne,PS2,2002,Shooter,Universal Interactive,0.2,0.16,0,0.05,0.42 +Kumamon Bomber: Puzzle de Kumamon Taisou,GC,2005,Puzzle,Sega,0.32,0.08,0,0.01,0.42 +Castlevania: Curse of Darkness,PS2,2005,Action,Konami Digital Entertainment,0.18,0.14,0.05,0.05,0.42 +Tom Clancy's HAWX 2,PS3,2010,Action,Ubisoft,0.21,0.12,0.03,0.05,0.42 +Harvest Moon: Grand Bazaar,DS,2008,Simulation,Rising Star Games,0.22,0.05,0.13,0.02,0.42 +International Superstar Soccer Pro '98,PS,1998,Sports,Konami Digital Entertainment,0.02,0.02,0.35,0.03,0.42 +Jimmy Neutron: Boy Genius,GBA,2001,Platform,THQ,0.3,0.11,0,0.01,0.42 +Black,XB,2006,Shooter,Electronic Arts,0.31,0.09,0,0.01,0.42 +Zack & Wiki: Quest for Barbaros' Treasure,Wii,2007,Adventure,Nintendo,0.18,0.17,0.03,0.04,0.42 +Double Pack: Finding Nemo / The Incredibles,XB,2006,Action,THQ,0.31,0.09,0,0.01,0.42 +Star Wars The Clone Wars: Republic Heroes,PSP,2009,Action,LucasArts,0.21,0.13,0,0.08,0.42 +NBA 2K11,PSP,2010,Action,Take-Two Interactive,0.39,0,0,0.03,0.42 +Animal Crossing: Amiibo Festival,WiiU,2015,Misc,Nintendo,0.19,0.11,0.09,0.03,0.42 +Hyrule Warriors,3DS,2016,Action,Nintendo,0.16,0.12,0.11,0.03,0.42 +Harry Potter and the Deathly Hallows - Part 1,PS3,2010,Action,Electronic Arts,0.13,0.21,0,0.08,0.42 +Fishing Resort,Wii,2011,Sports,Namco Bandai Games,0.16,0,0.25,0.01,0.42 +WWE All Stars,PS3,2011,Fighting,THQ,0.16,0.18,0,0.07,0.42 +Lord of the Rings: The Third Age,XB,2004,Role-Playing,Electronic Arts,0.31,0.09,0,0.01,0.42 +Football Manager Handheld 2011,PSP,2010,Sports,Sega,0,0.28,0,0.14,0.42 +Pirates of the Caribbean: At World's End,PS2,2007,Action,Disney Interactive Studios,0.2,0.16,0,0.05,0.42 +Mega Man Legends 2,PS,2000,Adventure,Capcom,0.17,0.12,0.1,0.03,0.42 +X-Men vs. Street Fighter,PS,1997,Fighting,Capcom,0.16,0.11,0.12,0.03,0.42 +High Rollers Casino,PS2,2004,Misc,Mud Duck Productions,0.2,0.16,0,0.05,0.42 +Castlevania: The Dracula X Chronicles,PSP,2007,Platform,Konami Digital Entertainment,0.22,0.09,0.04,0.07,0.42 +The Suffering,PS2,2004,Action,Midway Games,0.2,0.16,0,0.05,0.42 +Cyber Troopers Virtual-On,SAT,1995,Fighting,Sega,0,0,0.42,0,0.42 +Katamari Forever,PS3,2009,Puzzle,Namco Bandai Games,0.26,0.05,0.06,0.04,0.42 +Star Wars Starfighter: Special Edition,XB,2001,Simulation,LucasArts,0.3,0.1,0,0.02,0.42 +TimeShift,X360,2007,Shooter,Vivendi Games,0.36,0.02,0,0.03,0.41 +NBA Jam,PS2,2003,Sports,Acclaim Entertainment,0.2,0.16,0,0.05,0.41 +Zone of the Enders: The 2nd Runner,PS2,2003,Simulation,Konami Digital Entertainment,0.15,0.12,0.11,0.04,0.41 +Ghostbusters: The Video Game,DS,2009,Action,Atari,0.26,0.12,0,0.04,0.41 +Attack on Titan: Humanity in Chains,3DS,2013,Action,Screenlife,0,0,0.41,0,0.41 +Jampack Spring 2004 (RP-T),PS2,2003,Misc,Sony Computer Entertainment,0.2,0.16,0,0.05,0.41 +Dexter's Laboratory Deesaster Strikes,GBA,2001,Adventure,BAM! Entertainment,0.3,0.11,0,0.01,0.41 +NFL GameDay 2004,PS2,2003,Sports,Sony Computer Entertainment,0.2,0.16,0,0.05,0.41 +Scooby-Doo and the Cyber Chase,GBA,2001,Adventure,Ubisoft,0.3,0.11,0,0.01,0.41 +Danganronpa: Trigger Happy Havoc,PSV,2013,Misc,Nippon Ichi Software,0.14,0.07,0.15,0.06,0.41 +TERA,PC,,Role-Playing,Unknown,0.24,0.12,0,0.05,0.41 +Tomb Raider: The Last Revelation,PC,1998,Action,Eidos Interactive,0.41,0,0,0,0.41 +pro evolution soccer 2011,PS2,2010,Sports,Konami Digital Entertainment,0.04,0.21,0.05,0.11,0.41 +Sega Rally Championship 2,DC,1999,Racing,Sega,0,0,0.41,0,0.41 +Quake II,PS,1998,Shooter,Activision,0.23,0.16,0,0.03,0.41 +Crash of the Titans,PS2,2007,Action,Vivendi Games,0.34,0.01,0,0.06,0.41 +BioShock,PC,2007,Shooter,Take-Two Interactive,0.01,0.39,0,0.02,0.41 +Cars: Mater-National Championship,PS3,2007,Racing,THQ,0.37,0.01,0,0.03,0.41 +MLB 10: The Show,PS2,2010,Sports,Sony Computer Entertainment,0.2,0.16,0,0.05,0.41 +Wheel of Fortune: 2nd Edition,PS,2000,Misc,Hasbro Interactive,0.23,0.16,0,0.03,0.41 +Tom Clancy's Rainbow Six: Lockdown,XB,2005,Shooter,Ubisoft,0.26,0.13,0,0.02,0.41 +Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS,PSP,2009,Fighting,Namco Bandai Games,0,0,0.41,0,0.41 +Cool Boarders 2001,PS,2000,Sports,Sony Computer Entertainment,0.23,0.16,0,0.03,0.41 +Grudge Warriors,PS,1999,Action,Take-Two Interactive,0.23,0.16,0,0.03,0.41 +World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen,PS,2000,Sports,Konami Digital Entertainment,0,0,0.39,0.03,0.41 +Destiny: The Taken King,PS3,2015,Shooter,Activision,0.16,0.17,0.02,0.06,0.41 +Mobile Suit Gundam,SAT,1995,Action,Namco Bandai Games,0,0,0.41,0,0.41 +Mass Effect Trilogy,X360,2012,Action,Electronic Arts,0.28,0.1,0,0.03,0.41 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",PSP,2009,Shooter,Activision,0.17,0.15,0,0.09,0.41 +Wolfenstein: The New Order,X360,2014,Shooter,Bethesda Softworks,0.18,0.19,0,0.04,0.41 +James Patterson Women's Murder Club: Games of Passion,DS,2009,Adventure,THQ,0.15,0.22,0,0.05,0.41 +Farming Simulator 2015,X360,2015,Simulation,Koch Media,0.21,0.16,0,0.04,0.41 +Jimmy Neutron: Boy Genius,PS2,2002,Platform,THQ,0.2,0.16,0,0.05,0.41 +Itadaki Street DS,DS,2007,Misc,Square Enix,0,0,0.41,0,0.41 +Castlevania: Order of Ecclesia,DS,2008,Platform,Konami Digital Entertainment,0.31,0.03,0.04,0.03,0.41 +BlazBlue: Continuum Shift,PS3,2010,Fighting,PQube,0.21,0.08,0.09,0.04,0.41 +X-Men: The Official Game,PS2,2006,Action,Activision,0.2,0.16,0,0.05,0.41 +300: March to Glory,PSP,2007,Action,Warner Bros. Interactive Entertainment,0.27,0.08,0,0.06,0.41 +E0: Enemy Zero,SAT,1996,Adventure,Sega,0,0,0.41,0,0.41 +Nicktoons: Unite!,PS2,2005,Adventure,THQ,0.34,0.01,0,0.06,0.41 +Six Flags Fun Park,Wii,2009,Misc,Ubisoft,0.28,0.1,0,0.04,0.41 +Spore Hero,Wii,2009,Simulation,Electronic Arts,0.36,0.03,0,0.03,0.41 +Mass Effect Trilogy,PS3,2012,Action,Electronic Arts,0.37,0,0,0.04,0.41 +NASCAR Racing,PS,1996,Racing,Pioneer LDC,0.23,0.16,0,0.03,0.41 +LEGO Jurassic World,PSV,2015,Action,Warner Bros. Interactive Entertainment,0.09,0.23,0,0.09,0.41 +Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki,Wii,2009,Misc,Hudson Soft,0,0,0.41,0,0.41 +Up,PSP,2009,Action,THQ,0.24,0.1,0,0.07,0.41 +Spider-Man: Web of Shadows,X360,2008,Action,Activision,0.36,0.02,0,0.03,0.41 +Boku no Natsuyasumi 2: Umi no Bouken Hen,PS2,2002,Adventure,Sony Computer Entertainment,0,0,0.41,0,0.41 +SpongeBob SquigglePants,Wii,2011,Misc,THQ,0.36,0.03,0,0.03,0.41 +Cars: Race-O-Rama,PSP,2009,Racing,THQ,0.29,0.07,0,0.06,0.41 +Fantastic Pets,X360,2011,Simulation,THQ,0.3,0.08,0,0.03,0.41 +Command & Conquer: Red Alert,PS,1997,Strategy,Virgin Interactive,0.23,0.16,0,0.03,0.41 +Star Wars The Clone Wars: Republic Heroes,DS,2009,Action,LucasArts,0.23,0.14,0,0.04,0.41 +Dig Dug,NES,1985,Puzzle,Namco Bandai Games,0,0,0.41,0,0.41 +Ogre Battle 64: Person of Lordly Caliber,N64,1999,Role-Playing,Nintendo,0.1,0.02,0.25,0.04,0.41 +Superman: The New Superman Adventures,N64,1999,Action,Titus,0.33,0.07,0,0,0.41 +UEFA Euro 2008 Austria-Switzerland,PS3,2008,Sports,Electronic Arts,0.08,0.27,0,0.06,0.41 +The Terminator: Dawn of Fate,PS2,2002,Action,Atari,0.2,0.16,0,0.05,0.41 +The LEGO Movie Videogame,PSV,2014,Action,Warner Bros. Interactive Entertainment,0.05,0.26,0,0.09,0.41 +Rogue Galaxy: Director's Cut,PS2,2007,Role-Playing,Sony Computer Entertainment,0.2,0.16,0,0.05,0.41 +Armored Core,PS,1997,Simulation,Sony Computer Entertainment,0.13,0.09,0.16,0.03,0.41 +Monster Trucks Mayhem,Wii,2009,Racing,Zoo Games,0.39,0,0,0.02,0.41 +Winter Sports 2: The Next Challenge,Wii,2008,Sports,RTL,0.18,0.19,0,0.04,0.41 +Green Day: Rock Band,X360,2010,Misc,MTV Games,0.24,0.13,0,0.04,0.41 +Densha De Go! 2,PS,1999,Simulation,Taito,0,0,0.38,0.03,0.41 +Transformers: Fall of Cybertron,PS3,2012,Action,Activision,0.19,0.15,0,0.07,0.41 +Call of Duty: Advanced Warfare,PC,2014,Shooter,Activision,0.14,0.23,0,0.04,0.41 +Disney Princess: Enchanting Storybooks,Wii,2011,Misc,THQ,0.26,0.11,0,0.04,0.41 +Monopoly Streets,PS3,2010,Misc,Electronic Arts,0.16,0.18,0,0.07,0.41 +Band Hero,PS2,2009,Misc,Activision,0.15,0.06,0,0.2,0.41 +The Wonderful 101,WiiU,2013,Action,Nintendo,0.2,0.1,0.08,0.03,0.41 +No More Heroes 2: Desperate Struggle,Wii,2010,Action,Rising Star Games,0.21,0.12,0.04,0.03,0.41 +Battlefield 2: Modern Combat,X360,2006,Shooter,Electronic Arts,0.35,0.02,0.01,0.03,0.41 +Armored Core 2: Another Age,PS2,2001,Simulation,Metro 3D,0.11,0.08,0.19,0.03,0.41 +Buzz! Junior: Jungle Party,PS2,2006,Misc,Sony Computer Entertainment,0.2,0.16,0,0.05,0.41 +Mortal Kombat: Deadly Alliance,GC,2002,Fighting,Midway Games,0.31,0.08,0,0.01,0.41 +Marvel: Ultimate Alliance,Wii,2006,Role-Playing,Activision,0.37,0.01,0,0.03,0.41 +NBA 2K11,PS2,2010,Action,Take-Two Interactive,0.34,0.01,0,0.06,0.41 +AKB1/48: Idol to Koishitara...,PSP,2010,Misc,Namco Bandai Games,0,0,0.41,0,0.41 +Pro Pinball,PS,1996,Misc,Empire Interactive,0.23,0.15,0,0.03,0.41 +'98 Koshien,PS,1998,Sports,Magical Company,0.15,0.1,0.12,0.03,0.41 +NBA 2K9,PS2,2008,Sports,Take-Two Interactive,0.34,0.01,0,0.06,0.41 +Yu-Gi-Oh! The Eternal Duelist Soul (JP sales),GBA,2001,Misc,Konami Digital Entertainment,0,0,0.4,0.01,0.41 +Speed Racer: The Videogame,Wii,2008,Racing,Warner Bros. Interactive Entertainment,0.36,0.02,0,0.03,0.41 +Naughty Bear,X360,2010,Action,505 Games,0.21,0.16,0,0.04,0.41 +Littlest Pet Shop,Wii,2008,Simulation,Electronic Arts,0.34,0.04,0,0.03,0.41 +TNA iMPACT!,PS3,2008,Fighting,Midway Games,0.22,0.12,0,0.06,0.41 +Just Dance Kids 2,X360,2011,Misc,Ubisoft,0.29,0.09,0,0.03,0.41 +Duke Nukem Forever,PC,2011,Shooter,Take-Two Interactive,0.18,0.17,0,0.06,0.41 +Hatsune Miku: Project Diva 2nd,PSP,2010,Misc,Sega,0,0,0.41,0,0.41 +Marvel: Ultimate Alliance 2,PS2,2009,Role-Playing,Activision,0.23,0.02,0,0.16,0.41 +Mario no Super Picross,SNES,1995,Puzzle,Nintendo,0,0,0.41,0,0.41 +"Ed, Edd n Eddy: The Mis-Edventures",PS2,2005,Platform,Midway Games,0.34,0.01,0,0.06,0.41 +Jikkyou Powerful Pro Yakuu '94,SNES,1994,Sports,Konami Digital Entertainment,0,0,0.41,0,0.41 +Disney's Tarzan Untamed,PS2,2001,Platform,Ubisoft,0.2,0.16,0,0.05,0.41 +Borderlands: The Handsome Collection,XOne,2015,Shooter,Take-Two Interactive,0.24,0.13,0,0.04,0.41 +The Gunstringer,X360,2011,Shooter,Microsoft Game Studios,0.26,0.11,0,0.04,0.41 +Knockout Kings 2001,PS,2000,Fighting,Electronic Arts,0.23,0.15,0,0.03,0.41 +From Russia With Love,PS2,2005,Action,Electronic Arts,0.34,0.01,0,0.06,0.41 +FIFA Soccer 13,PC,2012,Action,Electronic Arts,0.02,0.31,0,0.07,0.41 +Asura's Wrath,PS3,2012,Action,Capcom,0.18,0.12,0.06,0.05,0.41 +Avatar: The Game,DS,2009,Action,Ubisoft,0.19,0.18,0,0.04,0.41 +My Virtual Tutor: Reading Adventure First to Second Grade,DS,2009,Misc,Mentor Interactive,0.38,0,0,0.03,0.41 +Minority Report: Everybody Runs,PS2,2002,Action,Activision,0.2,0.15,0,0.05,0.41 +Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life,PS,2003,Misc,Sony Computer Entertainment,0.23,0.15,0,0.03,0.4 +NFL GameDay 2002,PS,2001,Sports,Sony Computer Entertainment,0.23,0.15,0,0.03,0.4 +Pengo,2600,1983,Adventure,Atari,0.38,0.02,0,0,0.4 +Disney Sing It! High School Musical 3: Senior Year,PS3,2008,Misc,Disney Interactive Studios,0.08,0.26,0,0.07,0.4 +Story of Seasons,3DS,2014,Simulation,Nintendo,0,0.13,0.26,0.01,0.4 +Beowulf: The Game,X360,2007,Action,Ubisoft,0.36,0.01,0,0.03,0.4 +Mouse Trap,2600,1981,Action,Coleco,0.38,0.02,0,0,0.4 +Super Monkey Ball: Step & Roll,Wii,2010,Action,Sega,0.17,0.2,0,0.04,0.4 +Hatsune Miku: Project Diva F 2nd,PSV,2014,Misc,Sega,0.13,0.06,0.16,0.06,0.4 +Overlord,X360,2007,Strategy,Codemasters,0.34,0.03,0.01,0.03,0.4 +Tak and the Power of Juju,GC,2003,Platform,THQ,0.31,0.08,0,0.01,0.4 +"Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)",PS3,2007,Action,Activision,0.32,0.04,0.01,0.04,0.4 +Sega Superstars Tennis,PS3,2008,Sports,Sega,0.13,0.2,0,0.08,0.4 +LEGO Harry Potter: Years 5-7,3DS,,Action,Warner Bros. Interactive Entertainment,0.18,0.19,0,0.04,0.4 +Dragon Quest X,WiiU,2013,Role-Playing,Square Enix,0,0,0.4,0,0.4 +Wall-E,PS3,2008,Platform,THQ,0.12,0.21,0,0.08,0.4 +Medarot: Kabuto / Kuwagata Version,GB,1997,Role-Playing,Imagineer,0,0,0.4,0,0.4 +NBA 2K10,PS2,2009,Sports,Take-Two Interactive,0.33,0.01,0,0.05,0.4 +Defender,PS2,2002,Misc,Midway Games,0.2,0.15,0,0.05,0.4 +NFL GameDay 2003,PS2,,Sports,Unknown,0.2,0.15,0,0.05,0.4 +WipeOut 3 The Game,Wii,2012,Action,Activision,0.38,0,0,0.03,0.4 +Taiko no Tatsujin Wii: Dodon to 2 Yome!,Wii,2009,Misc,Namco Bandai Games,0,0,0.4,0,0.4 +Thief (2014),PS3,2014,Action,Square Enix,0.1,0.2,0.02,0.08,0.4 +Congo Bongo,2600,1982,Action,Sega,0.37,0.02,0,0,0.4 +Gauntlet: Seven Sorrows,PS2,2005,Role-Playing,Midway Games,0.2,0.15,0,0.05,0.4 +Harry Potter: Quidditch World Cup,GC,2003,Sports,Electronic Arts,0.31,0.08,0,0.01,0.4 +Advance Wars: Dual Strike,DS,2005,Strategy,Nintendo,0.3,0.03,0.04,0.03,0.4 +Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009,DS,2009,Action,Konami Digital Entertainment,0.27,0.01,0.09,0.03,0.4 +Warriors Orochi 2 (JP sales),PS2,2008,Action,Tecmo Koei,0,0,0.4,0,0.4 +WWE SmackDown! vs. RAW 2006,PSP,2005,Fighting,THQ,0.36,0.01,0,0.03,0.4 +The Chronicles of Narnia: Prince Caspian,PS2,2008,Action,Disney Interactive Studios,0.2,0.15,0,0.05,0.4 +The Incredibles: Rise of the Underminer,GBA,2005,Action,THQ,0.29,0.11,0,0.01,0.4 +Pet in TV,PS,1997,Strategy,Sony Computer Entertainment,0,0,0.38,0.03,0.4 +Battalion Wars,GC,2005,Strategy,Nintendo,0.25,0.07,0.07,0.01,0.4 +NBA ShootOut 2000,PS,1999,Sports,989 Studios,0.22,0.15,0,0.03,0.4 +Power Rangers: Dino Thunder,GC,2004,Action,THQ,0.31,0.08,0,0.01,0.4 +Rocksmith 2014,XOne,2014,Misc,Ubisoft,0.29,0.08,0,0.04,0.4 +Samurai Shodown,SNES,1994,Fighting,Takara,0,0,0.4,0,0.4 +NHL 15,XOne,2014,Sports,Electronic Arts,0.31,0.06,0,0.03,0.4 +TMNT,Wii,2007,Action,Ubisoft,0.34,0.03,0,0.03,0.4 +Final Fantasy Crystal Chronicles: The Crystal Bearers,Wii,2009,Action,Square Enix,0.22,0.08,0.08,0.03,0.4 +Cabela's Big Game Hunter 2010,PS3,2009,Sports,Activision Value,0.37,0,0,0.03,0.4 +EA Sports UFC 2,XOne,2016,Sports,Electronic Arts,0.23,0.14,0,0.04,0.4 +Fighting Vipers,SAT,1995,Fighting,Sega,0,0,0.4,0,0.4 +NCAA GameBreaker 2000,PS,1999,Sports,989 Studios,0.22,0.15,0,0.03,0.4 +Iron Man 2,PS3,2010,Action,Sega,0.14,0.19,0,0.07,0.4 +The Legend of Spyro: Dawn of the Dragon,PS2,2008,Platform,Vivendi Games,0.12,0.01,0,0.27,0.4 +AKB1/48: Idol to Guam de Koishitara...,PSP,2011,Misc,Namco Bandai Games,0,0,0.4,0,0.4 +RR64: Ridge Racer 64,N64,1999,Racing,Nintendo,0.32,0.07,0,0,0.4 +Top Gear Rally,N64,1997,Racing,Kemco,0.32,0.07,0,0,0.4 +NFL Quarterback Club 2000,N64,1999,Sports,Acclaim Entertainment,0.37,0.03,0,0,0.4 +Mortal Kombat Mythologies: Sub-Zero,N64,1997,Fighting,Midway Games,0.32,0.07,0,0,0.4 +18 Wheeler: American Pro Trucker,PS2,2001,Racing,Acclaim Entertainment,0.2,0.15,0,0.05,0.4 +Atari Anthology,PS2,2004,Misc,Atari,0.33,0.01,0,0.05,0.4 +Bugs Bunny: Lost in Time,PS,1999,Platform,Infogrames,0.22,0.15,0,0.03,0.4 +NBA Jam,X360,2010,Sports,Electronic Arts,0.27,0.1,0,0.03,0.4 +Sherlock Holmes: The Mystery of the Mummy,DS,2009,Adventure,Focus Home Interactive,0.06,0.3,0,0.04,0.4 +Hot Wheels: Beat That!,PS2,2007,Racing,Activision,0.2,0.15,0,0.05,0.4 +MLB 2006,PS2,2005,Sports,Sony Computer Entertainment,0.33,0.01,0,0.05,0.4 +Star Wars The Clone Wars: Republic Heroes,X360,2009,Action,LucasArts,0.18,0.17,0,0.04,0.4 +Brunswick Pro Bowling,PS2,2007,Sports,505 Games,0.2,0.15,0,0.05,0.4 +Mafia II,PC,2010,Action,Take-Two Interactive,0.17,0.17,0,0.06,0.4 +Rocket Power: Dream Scheme,GBA,2001,Action,THQ,0.29,0.11,0,0.01,0.4 +SpongeBob's Truth or Square (US sales),Wii,2009,Action,THQ,0.38,0.01,0,0,0.4 +MX vs. ATV Unleashed,XB,2005,Racing,THQ,0.32,0.07,0,0.01,0.4 +Rampage: Total Destruction,GC,2006,Action,Midway Games,0.31,0.08,0,0.01,0.4 +Planet 51,DS,2009,Action,Sega,0.22,0.14,0,0.04,0.4 +The Urbz: Sims in the City,GC,2004,Simulation,Electronic Arts,0.24,0.14,0,0.02,0.4 +Road Rash: Jailbreak,PS,1999,Racing,Electronic Arts,0.22,0.15,0,0.03,0.4 +Mother 3,GBA,2006,Role-Playing,Nintendo,0,0,0.39,0.01,0.4 +Nicktoons: Freeze Frame Frenzy,GBA,2004,Action,THQ,0.29,0.11,0,0.01,0.4 +Diner Dash: Sizzle & Serve,DS,2007,Puzzle,Eidos Interactive,0.34,0.03,0,0.03,0.4 +Rapala Pro Bass Fishing 2010,X360,2010,Sports,Activision,0.32,0.05,0,0.03,0.4 +Legends of WrestleMania,X360,2009,Fighting,THQ,0.2,0.16,0,0.04,0.4 +Wii Sports Club,WiiU,2014,Sports,Nintendo,0.19,0.14,0.04,0.03,0.4 +Tomb Raider: Anniversary,X360,2007,Action,Eidos Interactive,0.12,0.23,0,0.05,0.4 +You Don't Know Jack,PS,1999,Misc,Vivendi Games,0.22,0.15,0,0.03,0.4 +Mystery Dungeon: Shiren the Wanderer,SNES,1995,Role-Playing,ChunSoft,0,0,0.4,0,0.4 +Sonic Lost World,WiiU,2013,Platform,Sega,0.24,0.12,0.01,0.03,0.4 +Condemned 2: Bloodshot,PS3,2008,Action,Sega,0.17,0.16,0,0.07,0.4 +Silent Hill: Homecoming,PS3,,Action,Konami Digital Entertainment,0.18,0.15,0,0.06,0.4 +Star Wars: Clone Wars,GC,2002,Shooter,Activision,0.31,0.08,0,0.01,0.4 +NBA Live 2002,XB,2001,Sports,Electronic Arts,0.35,0.03,0,0.02,0.4 +Boku no Natsuyasumi,PS,2000,Adventure,Sony Computer Entertainment,0,0,0.37,0.03,0.4 +Armored Core V,PS3,2012,Simulation,Namco Bandai Games,0.09,0.04,0.24,0.02,0.4 +I-Ninja,PS2,2003,Platform,Sony Computer Entertainment,0.19,0.15,0,0.05,0.4 +Command & Conquer,PS,1996,Strategy,Virgin Interactive,0.22,0.15,0,0.03,0.4 +Harvest Moon: Save the Homeland,PS2,,Simulation,Unknown,0.19,0.15,0,0.05,0.4 +NBA Jam,PS3,2010,Sports,Electronic Arts,0.22,0.12,0,0.06,0.4 +Mass Effect 2,PC,2010,Role-Playing,Electronic Arts,0.01,0.32,0,0.07,0.4 +SD Gundam G Generation Seed,PS2,2004,Strategy,Namco Bandai Games,0,0,0.4,0,0.4 +Call of Duty: Finest Hour,GC,2004,Shooter,Activision,0.31,0.08,0,0.01,0.4 +Scooby-Doo! and the Spooky Swamp,DS,2010,Action,Warner Bros. Interactive Entertainment,0.26,0.1,0,0.03,0.4 +Naruto: Path of the Ninja,DS,2007,Role-Playing,D3Publisher,0.37,0,0,0.03,0.4 +Rise of the Tomb Raider,X360,2015,Adventure,Square Enix,0.17,0.19,0,0.03,0.4 +Hitman: Blood Money,X360,2006,Action,Eidos Interactive,0.29,0.06,0.01,0.03,0.4 +Tales of Phantasia,SNES,1995,Role-Playing,Namco Bandai Games,0,0,0.4,0,0.4 +Alpha Protocol,X360,2010,Role-Playing,Sega,0.23,0.13,0,0.04,0.4 +Suzuki TT Superbikes,PS2,2005,Racing,Jester Interactive,0.33,0.01,0,0.05,0.4 +Rumble Roses,PS2,2004,Fighting,Konami Digital Entertainment,0.19,0.15,0,0.05,0.39 +Just Dance 2014,PS3,2013,Misc,Ubisoft,0.17,0.15,0,0.07,0.39 +Fantastic Four: Rise of the Silver Surfer,PS2,2007,Action,Take-Two Interactive,0.19,0.15,0,0.05,0.39 +Ultimate Spider-Man,XB,2005,Action,Activision,0.26,0.11,0,0.02,0.39 +GRID 2,PS3,2013,Racing,Codemasters,0.07,0.23,0.01,0.09,0.39 +LEGO The Lord of the Rings,3DS,2012,Action,Warner Bros. Interactive Entertainment,0.19,0.17,0,0.03,0.39 +Juiced 2: Hot Import Nights,PS2,2007,Racing,THQ,0.19,0.15,0.01,0.05,0.39 +Skylanders: SuperChargers,PS3,2015,Action,Activision,0.15,0.18,0,0.06,0.39 +NHL 99,N64,1998,Sports,Electronic Arts,0.38,0.01,0,0,0.39 +NBA 2K10,Wii,2009,Sports,Take-Two Interactive,0.36,0,0,0.03,0.39 +Dungeon Siege III,PS3,2011,Role-Playing,Square Enix,0.17,0.14,0.03,0.06,0.39 +Viking: Battle for Asgard,PS3,2008,Action,Sega,0.14,0.18,0,0.07,0.39 +Brunswick Pro Bowling,Wii,2007,Sports,505 Games,0.36,0.01,0,0.03,0.39 +Monster Jam: Urban Assault,DS,2008,Racing,Activision,0.37,0,0,0.03,0.39 +Danball Senki,PSP,2011,Role-Playing,Level 5,0,0,0.39,0,0.39 +NASCAR Heat,PS,2000,Racing,Hasbro Interactive,0.22,0.15,0,0.03,0.39 +Bloody Roar,PS,1997,Fighting,Virgin Interactive,0.22,0.15,0,0.03,0.39 +Bump 'n' Jump,2600,1982,Racing,Mattel Interactive,0.37,0.02,0,0,0.39 +Mobile Suit Gundam: Lost War Chronicles,PS2,2002,Shooter,Namco Bandai Games,0,0,0.39,0,0.39 +Disney's Brother Bear,GBA,2003,Action,THQ,0.28,0.1,0,0.01,0.39 +Naruto: Clash of Ninja Revolution 2,Wii,2008,Fighting,Tomy Corporation,0.34,0.02,0,0.03,0.39 +NBA Live 09,PS2,2008,Sports,Electronic Arts,0.32,0.01,0.01,0.05,0.39 +LEGO Star Wars III: The Clone Wars,PSP,2011,Action,LucasArts,0.14,0.17,0,0.09,0.39 +The House of The Dead III,XB,2002,Shooter,Sega,0.29,0.08,0,0.01,0.39 +Rune Factory: Frontier,Wii,2008,Role-Playing,Rising Star Games,0.18,0.14,0.04,0.04,0.39 +Fire Emblem: Fuuin no Tsurugi,GBA,2002,Role-Playing,Nintendo,0,0,0.39,0,0.39 +SpongeBob's Truth or Square (US sales),PSP,2009,Action,THQ,0.39,0,0,0,0.39 +FIFA 12,3DS,2011,Sports,Electronic Arts,0.08,0.26,0,0.05,0.39 +Ener-G: Gym Rockets,DS,2008,Sports,Ubisoft,0.36,0,0,0.03,0.39 +The Darkness II,X360,2012,Shooter,Take-Two Interactive,0.24,0.12,0,0.03,0.39 +NBA Live 09,PSP,2008,Sports,Electronic Arts,0.23,0.07,0.03,0.06,0.39 +Laser Blast,2600,1981,Action,Activision,0.37,0.02,0,0,0.39 +Dancing with the Stars: We Dance!,DS,2008,Misc,Activision,0.36,0,0,0.03,0.39 +LocoRoco,PSP,2006,Platform,Sony Computer Entertainment,0.14,0.05,0.16,0.04,0.39 +Thrasher Presents: Skate and Destroy,PS,1998,Sports,Take-Two Interactive,0.22,0.15,0,0.03,0.39 +Are You Smarter than a 5th Grader? Make the Grade,DS,2008,Misc,THQ,0.36,0,0,0.03,0.39 +Donkey Konga 2,GC,2004,Misc,Nintendo,0.3,0.08,0,0.01,0.39 +Just Dance 2014,PS4,2013,Misc,Ubisoft,0.18,0.16,0,0.05,0.39 +Metal Gear Solid: The Legacy Collection,PS3,2013,Adventure,Konami Digital Entertainment,0.31,0.01,0.03,0.05,0.39 +Tear Ring Saga Yutona Eiyuu Senki,PS,2001,Role-Playing,Enterbrain,0,0,0.37,0.03,0.39 +Project X Zone,3DS,2012,Role-Playing,Namco Bandai Games,0.18,0.04,0.15,0.02,0.39 +Red Faction: Armageddon,X360,2011,Shooter,THQ,0.18,0.17,0.01,0.04,0.39 +Wipeout 2048,PSV,2012,Racing,Sony Computer Entertainment,0.14,0.19,0,0.06,0.39 +Need for Speed: Nitro,DS,2009,Racing,Electronic Arts,0.22,0.13,0,0.04,0.39 +Mystery Case Files: The Malgrave Incident,Wii,2011,Adventure,Nintendo,0.19,0.17,0,0.03,0.39 +Yoshi Touch & Go,DS,2005,Platform,Nintendo,0.34,0.02,0,0.03,0.39 +EA Sports Active 2,X360,2010,Sports,Electronic Arts,0.18,0.17,0,0.04,0.39 +Combat of Giants: Dinosaurs 3D,3DS,2011,Strategy,Ubisoft,0.25,0.06,0.05,0.03,0.39 +Taiko no Tatsujin Wii: Ketteiban,Wii,2011,Misc,Namco Bandai Games,0,0,0.39,0,0.39 +Age of Empires III,PC,2005,Strategy,Microsoft Game Studios,0,0.32,0,0.07,0.39 +SSX 3,XB,2003,Sports,Electronic Arts,0.29,0.08,0,0.01,0.39 +MLB 15: The Show,PS3,2015,Sports,Sony Computer Entertainment,0.3,0.01,0,0.07,0.39 +Madden NFL 2005,GBA,2004,Sports,Electronic Arts,0.28,0.1,0,0.01,0.39 +All-Star Baseball 2000,N64,1999,Sports,Acclaim Entertainment,0.36,0.03,0,0,0.39 +Custom Robo V2,N64,2000,Fighting,Nintendo,0,0,0.34,0.05,0.39 +Extreme-G: XG2,N64,1998,Racing,Acclaim Entertainment,0.31,0.07,0,0,0.39 +BattleTanx: Global Assault,N64,1999,Action,3DO,0.31,0.07,0,0,0.39 +Robert Ludlum's The Bourne Conspiracy,PS3,,Action,Vivendi Games,0.18,0.14,0,0.06,0.39 +Chibi-Robo! Plug into Adventure!,GC,2005,Adventure,Nintendo,0.23,0.06,0.09,0.01,0.39 +Dawn of Discovery,PC,2009,Simulation,Ubisoft,0,0.32,0,0.07,0.39 +Jampack Winter 2003 (RP-T),PS2,2003,Misc,Sony Computer Entertainment,0.19,0.15,0,0.05,0.39 +Dancing with the Stars: We Dance!,Wii,2008,Misc,Activision,0.36,0,0,0.03,0.39 +Kengo: Master of Bushido,PS2,2000,Fighting,Ubisoft,0.16,0.13,0.06,0.04,0.39 +Blood Omen 2,PS2,2002,Action,Eidos Interactive,0.19,0.15,0,0.05,0.39 +Sesame Street: Elmo's A-to-Zoo Adventure,Wii,2010,Misc,Warner Bros. Interactive Entertainment,0.37,0,0,0.02,0.39 +Skylanders Giants,WiiU,2012,Action,Activision,0.23,0.12,0,0.04,0.39 +Just Dance 4,WiiU,2012,Misc,Ubisoft,0.22,0.14,0,0.03,0.39 +Super Fire ProWrestling,SNES,1991,Fighting,Human Entertainment,0,0,0.39,0,0.39 +Cabela's Dangerous Hunts 2,PS2,2005,Sports,Activision,0.19,0.15,0,0.05,0.39 +Marvel: Ultimate Alliance,PS3,2006,Role-Playing,Activision,0.33,0.02,0,0.04,0.39 +SpongeBob vs The Big One: Beach Party Cook Off,DS,2009,Adventure,THQ,0.24,0.11,0,0.04,0.39 +MotoGP 08,PS3,2008,Racing,Capcom,0.07,0.24,0,0.08,0.39 +Imagine: Party Babyz,Wii,2008,Simulation,Ubisoft,0.34,0.02,0,0.03,0.39 +Chessmaster,PS2,2003,Misc,Ubisoft,0.19,0.15,0,0.05,0.39 +Tiger Woods PGA Tour 14,PS3,2013,Sports,Electronic Arts,0.16,0.15,0,0.07,0.39 +Fatal Fury,SNES,1992,Fighting,Takara,0,0,0.39,0,0.39 +Farming Simulator 2013,X360,2013,Simulation,Focus Home Interactive,0.22,0.13,0,0.03,0.39 +From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!,GB,2001,Role-Playing,Banpresto,0,0,0.39,0,0.39 +The Dog Island,Wii,2007,Adventure,Ubisoft,0.35,0.01,0,0.03,0.39 +Madden NFL Football,3DS,2011,Sports,Electronic Arts,0.36,0.01,0,0.03,0.39 +The Sims 2,GBA,2005,Simulation,Electronic Arts,0.28,0.1,0,0.01,0.39 +Ice Age 2: The Meltdown,PS2,2006,Platform,Vivendi Games,0.19,0.15,0,0.05,0.39 +MLB 14: The Show,PS3,2014,Sports,Sony Computer Entertainment America,0.35,0,0,0.04,0.39 +Super Famista 3,SNES,1994,Sports,Namco Bandai Games,0,0,0.39,0,0.39 +Auto Modellista,PS2,2002,Racing,Capcom,0.19,0.15,0,0.05,0.39 +Tom Clancy's Ghost Recon 2: Summit Strike,XB,2005,Shooter,Ubisoft,0.29,0.08,0,0.01,0.39 +Junior Classic Games,DS,2009,Misc,Avanquest,0.26,0.09,0,0.03,0.39 +Hooked! Again: Real Motion Fishing,Wii,2009,Sports,505 Games,0.36,0,0,0.03,0.39 +Tiger Woods PGA Tour 08,PS2,2007,Sports,Electronic Arts,0.19,0.15,0,0.05,0.39 +Karaoke Revolution Presents American Idol Encore,PS2,2008,Misc,Konami Digital Entertainment,0.19,0.15,0,0.05,0.39 +Airlock,2600,1981,Action,Data Age,0.36,0.02,0,0,0.39 +Tokimeki Memorial 2,PS,1999,Simulation,Konami Digital Entertainment,0,0,0.36,0.03,0.39 +Samurai Warriors Chronicles,3DS,2011,Action,Tecmo Koei,0.12,0.05,0.2,0.01,0.39 +Tomb Raider: Legend,X360,2006,Action,Eidos Interactive,0.27,0.08,0.01,0.03,0.39 +Ice Age: Dawn of the Dinosaurs,DS,2009,Action,Activision,0.2,0.15,0,0.04,0.39 +Dance Party: Pop Hits,Wii,2009,Misc,Nordic Games,0,0.36,0,0.02,0.39 +Harry Potter: Quidditch World Cup,GBA,2003,Sports,Electronic Arts,0.28,0.1,0,0.01,0.39 +Jam Sessions: Sing and Play Guitar (US sales),DS,2007,Misc,Ubisoft,0.38,0,0,0,0.38 +Saints Row IV,PS4,2015,Action,Deep Silver,0.13,0.17,0.03,0.06,0.38 +Evil Dead: Fistfull of Boomstick,PS2,2003,Action,THQ,0.19,0.15,0,0.05,0.38 +One Piece: Unlimited World Red,3DS,2013,Action,Namco Bandai Games,0.05,0.04,0.28,0.01,0.38 +Phantasy Star ?,DS,2008,Role-Playing,Sega,0.16,0,0.2,0.01,0.38 +Triple Play 97,PS,1996,Sports,Electronic Arts Victor,0.21,0.15,0,0.03,0.38 +Virtua Tennis 2009,PS3,2009,Sports,Sega,0.09,0.23,0,0.07,0.38 +Super Soccer,SNES,1991,Sports,Nintendo,0,0,0.38,0,0.38 +Shin Megami Tensei: Nocturne,PS2,2003,Role-Playing,Ghostlight,0.07,0.05,0.25,0.02,0.38 +Wario Land II (GBC),GB,1998,Platform,Nintendo,0,0,0.38,0,0.38 +San Francisco Rush: Extreme Racing,PS,1997,Racing,GT Interactive,0.21,0.15,0,0.03,0.38 +Dragon's Crown,PSV,2013,Role-Playing,Nippon Ichi Software,0.16,0.05,0.12,0.05,0.38 +Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi,PS,1998,Racing,Human Entertainment,0,0,0.36,0.03,0.38 +Imagine: Salon Stylist,DS,2009,Simulation,Ubisoft,0.24,0.11,0,0.04,0.38 +ESPN College Hoops 2K5,XB,2004,Sports,Sega,0.29,0.08,0,0.01,0.38 +Looney Tunes: Acme Arsenal,PS2,2007,Action,Warner Bros. Interactive Entertainment,0.19,0.15,0,0.05,0.38 +Cabela's Dangerous Hunts 2009,Wii,2008,Sports,Activision Value,0.36,0,0,0.03,0.38 +Fragile Dreams: Farewell Ruins of the Moon,Wii,2009,Role-Playing,Rising Star Games,0.17,0.12,0.06,0.03,0.38 +SD Gundam G Generation Spirits,PS2,2007,Strategy,Namco Bandai Games,0,0,0.38,0,0.38 +Batman: Arkham City,WiiU,2012,Action,Warner Bros. Interactive Entertainment,0.17,0.18,0,0.03,0.38 +Disney Sing It,PS3,2008,Misc,Disney Interactive Studios,0.27,0.07,0,0.04,0.38 +Peppa Pig: The Game,Wii,2009,Misc,Pinnacle,0,0.35,0,0.03,0.38 +God Eater 2: Rage Burst,PSV,2015,Role-Playing,Namco Bandai Games,0,0.01,0.37,0,0.38 +Get Fit with Mel B,PS3,2010,Sports,Black Bean Games,0.15,0.17,0,0.07,0.38 +The Cat in the Hat,GBA,2005,Platform,Jack of All Games,0.27,0.1,0,0.01,0.38 +Naruto Shippuden: Ultimate Ninja Heroes 3,PSP,2009,Fighting,Namco Bandai Games,0.13,0.04,0.19,0.03,0.38 +NFL GameDay 2002,PS2,2001,Sports,Sony Computer Entertainment,0.19,0.15,0,0.05,0.38 +Turok: Evolution,GC,2002,Shooter,Acclaim Entertainment,0.3,0.08,0,0.01,0.38 +Destiny: The Taken King,X360,2015,Shooter,Activision,0.22,0.12,0,0.03,0.38 +Tamagotchi Connection: Corner Shop 3,DS,2007,Simulation,Atari,0.07,0,0.31,0.01,0.38 +Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden,PS2,2002,Strategy,Namco Bandai Games,0,0,0.38,0,0.38 +Ice Age,GBA,2002,Action,Ubisoft,0.27,0.1,0,0.01,0.38 +Sega Superstars Tennis,PS2,2008,Sports,Sega,0.1,0,0,0.28,0.38 +Headhunter,PS2,2002,Action,Sega,0.19,0.15,0,0.05,0.38 +Skate,PS3,2007,Sports,Electronic Arts,0.29,0.05,0,0.04,0.38 +Shin Megami Tensei: Devil Summoner,SAT,1995,Role-Playing,Atlus,0,0,0.38,0,0.38 +Raving Rabbids: Travel in Time 3D,3DS,2011,Platform,Ubisoft,0.11,0.23,0,0.04,0.38 +NCAA Football 08,PS3,2007,Sports,Electronic Arts,0.35,0,0,0.03,0.38 +Marvel Nemesis: Rise of the Imperfects,GC,2005,Fighting,Electronic Arts,0.3,0.08,0,0.01,0.38 +NHL 15,PS3,2014,Sports,Electronic Arts,0.21,0.11,0,0.06,0.38 +ESPN Extreme Games,PS,1994,Sports,Sony Computer Entertainment,0.11,0.08,0.17,0.03,0.38 +Forza Horizon 3,XOne,2016,Racing,Microsoft Game Studios,0.15,0.2,0,0.03,0.38 +Overlord: Dark Legend,Wii,2009,Action,Codemasters,0.12,0.22,0,0.04,0.38 +Ninja: Shadow of Darkness,PS,1998,Action,Eidos Interactive,0.21,0.14,0,0.02,0.38 +SD Gundam G Generation-F,PS,2000,Strategy,Namco Bandai Games,0,0,0.36,0.02,0.38 +Bratz: Rock Angelz,PS2,2005,Misc,THQ,0.19,0.15,0,0.05,0.38 +FlatOut,PS2,2004,Racing,Empire Interactive,0.19,0.15,0,0.05,0.38 +Phoenix Wright: Ace Attorney - Dual Destinies,3DS,2013,Adventure,Capcom,0,0,0.38,0,0.38 +SSX 3,GC,2003,Sports,Electronic Arts,0.29,0.08,0,0.01,0.38 +NCAA Football 11,PS2,2010,Sports,Electronic Arts,0.19,0.15,0,0.05,0.38 +Tales of Zestiria,PS4,2015,Role-Playing,Namco Bandai Games,0.16,0.15,0.02,0.06,0.38 +Lilo & Stitch 2: H?msterviel Havoc,GBA,2004,Action,Disney Interactive Studios,0.27,0.1,0,0.01,0.38 +Metal Gear Solid: Snake Eater 3D,3DS,2012,Action,Konami Digital Entertainment,0.15,0.11,0.1,0.02,0.38 +Risk: Global Domination,PS2,2003,Strategy,Atari,0.19,0.15,0,0.05,0.38 +Elite Beat Agents,DS,2006,Misc,Nintendo,0.31,0.03,0,0.03,0.38 +NBA 2K7,PS3,2006,Sports,Take-Two Interactive,0.3,0.04,0,0.04,0.38 +Mobile Suit Gundam version 2.0,PS,1996,Action,Namco Bandai Games,0,0,0.36,0.02,0.38 +Grandia Xtreme,PS2,2002,Role-Playing,Enix Corporation,0.07,0.05,0.25,0.02,0.38 +Silent Scope,PS2,2000,Shooter,Konami Digital Entertainment,0.19,0.15,0,0.05,0.38 +Final Fantasy Adventure,GB,1991,Role-Playing,SquareSoft,0,0,0.38,0,0.38 +Virtua Tennis 2009,Wii,2009,Sports,Sega,0.13,0.21,0,0.04,0.38 +Dora The Explorer: Dora Saves the Snow Princess,PS2,2008,Platform,Take-Two Interactive,0.19,0.15,0,0.05,0.38 +The Incredible Hulk,PS2,2008,Action,Sega,0.32,0.01,0,0.05,0.38 +Mercenaries 2: World in Flames,PS2,2008,Shooter,Electronic Arts,0.21,0,0,0.17,0.38 +Cabela's Big Game Hunter 2012,Wii,2011,Sports,Activision,0.34,0.02,0,0.02,0.38 +EA Sports MMA,PS3,2010,Fighting,Electronic Arts,0.16,0.15,0.01,0.06,0.38 +Iron Man 2,PSP,2010,Action,Sega,0.18,0.12,0,0.07,0.38 +DiRT 2,Wii,2009,Racing,Codemasters,0.11,0.23,0,0.04,0.38 +Tokimeki Memorial: Forever with You,SAT,1996,Simulation,Konami Digital Entertainment,0,0,0.38,0,0.38 +MediEvil II,PS,1999,Action,Sony Computer Entertainment,0.21,0.14,0,0.02,0.38 +Guitar Hero On Tour: Modern Hits,DS,2009,Misc,Activision,0.13,0.2,0,0.04,0.38 +Hunter: The Reckoning,XB,2002,Action,Interplay,0.28,0.08,0,0.01,0.38 +MX vs. ATV Untamed,PS2,2007,Racing,THQ,0.32,0.01,0,0.05,0.38 +Rogue Trip: Vacation 2012,PS,1998,Racing,GT Interactive,0.21,0.14,0,0.02,0.38 +Dai-4-Ji Super Robot Taisen,SNES,1995,Strategy,Banpresto,0,0,0.38,0,0.38 +Tiger Woods PGA Tour 08,PSP,2007,Sports,Electronic Arts,0.14,0.15,0,0.09,0.38 +Pokemon Channel,GC,2003,Adventure,Nintendo,0.24,0.06,0.07,0.01,0.38 +Taiko no Tatsujin Portable DX,PSP,2011,Misc,Namco Bandai Games,0,0,0.38,0,0.38 +Etrian Odyssey IV: Legends of the Titans,3DS,2012,Role-Playing,Atlus,0.12,0.05,0.2,0.01,0.38 +Moto Racer World Tour,PS,2000,Racing,Sony Computer Entertainment,0.21,0.14,0,0.02,0.38 +NCAA Final Four 2000,PS,1999,Sports,989 Sports,0.21,0.14,0,0.02,0.38 +Scribblenauts: Unlimited,WiiU,2012,Action,Warner Bros. Interactive Entertainment,0.26,0.09,0,0.03,0.38 +FIFA 17,PS3,2016,Sports,Electronic Arts,0.02,0.29,0.01,0.05,0.38 +Saints Row: The Third,PC,2011,Action,THQ,0.16,0.16,0,0.06,0.38 +Just Dance 2015,PS4,2014,Misc,Ubisoft,0.19,0.13,0,0.06,0.38 +Madagascar: Escape 2 Africa,PS2,2008,Action,Activision,0.12,0,0,0.26,0.38 +ZhuZhu Pets: Featuring The Wild Bunch,Wii,2010,Simulation,Activision,0.32,0.03,0,0.03,0.38 +Hangman,2600,,Puzzle,Atari,0.35,0.02,0,0,0.38 +Petz Rescue: Wildlife Vet,DS,2008,Simulation,Ubisoft,0.35,0,0,0.03,0.38 +Green Day: Rock Band,Wii,2010,Misc,MTV Games,0.22,0.12,0,0.03,0.38 +Gravitar,2600,1982,Action,Atari,0.35,0.02,0,0,0.38 +Monster Jam: Path of Destruction,DS,2010,Racing,Activision,0.35,0,0,0.02,0.38 +Toukiden: The Age of Demons,PSV,2013,Action,Tecmo Koei,0.05,0.05,0.25,0.03,0.38 +EyeToy Play 2,PS2,2004,Misc,Sony Computer Entertainment,0.18,0.14,0,0.05,0.38 +Dance Dance Revolution Ultramix 3,XB,2005,Simulation,Konami Digital Entertainment,0.28,0.08,0,0.01,0.38 +Mobile Suit Gundam: Extreme VS Full Boost,PS3,2014,Fighting,Namco Bandai Games,0,0,0.38,0,0.38 +WWE SmackDown vs. Raw 2011,PS2,2010,Fighting,THQ,0.24,0.07,0,0.07,0.38 +Need for Speed: Hot Pursuit,PC,2010,Racing,Electronic Arts,0.12,0.2,0,0.06,0.38 +The Legend of Spyro: A New Beginning,DS,2006,Platform,Vivendi Games,0.34,0.01,0,0.03,0.38 +Pro Evolution Soccer 2011 3D,3DS,2011,Sports,Konami Digital Entertainment,0.11,0.13,0.11,0.02,0.38 +Shin Megami Tensei: Devil Survivor Overclocked,3DS,2011,Role-Playing,Ghostlight,0.28,0.01,0.06,0.02,0.38 +Dragon Ball Z: Attack of the Saiyans,DS,2009,Role-Playing,Namco Bandai Games,0.13,0.02,0.21,0.01,0.38 +Marvel Super Hero Squad,Wii,2009,Fighting,THQ,0.31,0.03,0,0.03,0.38 +The House of the Dead: Overkill - Extended Cut,PS3,2011,Shooter,Sega,0.15,0.17,0,0.06,0.38 +The Golden Compass,PSP,,Action,Sega,0.11,0.16,0,0.1,0.38 +Harry Potter and the Prisoner of Azkaban,GC,2004,Action,Electronic Arts,0.29,0.08,0,0.01,0.38 +Quake 4,X360,2005,Shooter,Activision,0.32,0.03,0,0.03,0.38 +Petz Rescue: Ocean Patrol,DS,2008,Adventure,Ubisoft,0.35,0,0,0.03,0.37 +Solaris,2600,1986,Shooter,Atari,0.35,0.02,0,0,0.37 +Puppy Palace,DS,2008,Simulation,Ubisoft,0.35,0,0,0.03,0.37 +Super Dragon Ball Z,PS2,2006,Fighting,Atari,0.09,0.07,0.19,0.02,0.37 +Paws & Claws: Pampered Pets,DS,2009,Simulation,THQ,0.35,0,0,0.03,0.37 +ESPN: Sports Connection,WiiU,2012,Sports,Ubisoft,0.21,0.12,0,0.04,0.37 +Alien: Isolation,PS3,2014,Shooter,Sega,0.12,0.19,0,0.07,0.37 +Naruto Shippuden: Ninja Destiny 2,DS,2008,Fighting,Takara Tomy,0.19,0.03,0.13,0.02,0.37 +SAW,PS3,2009,Action,Konami Digital Entertainment,0.13,0.17,0,0.07,0.37 +The Legend of Spyro: The Eternal Night,DS,2007,Platform,Vivendi Games,0.32,0.03,0,0.03,0.37 +Tobal 2,PS,1997,Fighting,SquareSoft,0,0,0.35,0.02,0.37 +Digging for Dinosaurs,DS,2010,Action,Scholastic Inc.,0.35,0,0,0.02,0.37 +Trivial Pursuit,X360,2009,Misc,Electronic Arts,0.12,0.21,0,0.04,0.37 +Tiger Woods PGA Tour 09,PS2,2008,Sports,Electronic Arts,0.16,0,0,0.21,0.37 +Ultimate Spider-Man,GC,2005,Action,Activision,0.29,0.07,0,0.01,0.37 +Life is Strange,PS4,2016,Adventure,Square Enix,0.14,0.15,0.03,0.06,0.37 +Kingdom Under Fire: Circle of Doom,X360,2007,Role-Playing,Microsoft Game Studios,0.18,0.12,0.04,0.04,0.37 +NBA Inside Drive 2002,XB,2002,Sports,Microsoft Game Studios,0.28,0.08,0,0.01,0.37 +The BIGS,Wii,2007,Sports,Take-Two Interactive,0.34,0,0,0.03,0.37 +Major League Baseball 2K6,X360,2006,Sports,Spike,0.34,0,0,0.03,0.37 +Kileak: The DNA Imperative,PS,1994,Shooter,Sony Computer Entertainment,0.08,0.06,0.21,0.02,0.37 +Petz: Catz 2,PS2,2006,Simulation,Ubisoft,0.18,0.14,0,0.05,0.37 +Mini Ninjas,Wii,2009,Action,Eidos Interactive,0.17,0.17,0,0.04,0.37 +Tom Clancy's The Division,PC,2016,Shooter,Ubisoft,0.2,0.14,0,0.03,0.37 +Phantasy Star Portable 2: Infinity,PSP,2011,Role-Playing,Sega,0,0,0.37,0,0.37 +Hell's Kitchen: The Game,DS,2008,Simulation,Ubisoft,0.34,0.01,0,0.03,0.37 +LEGO Dimensions,XOne,2015,Action,Warner Bros. Interactive Entertainment,0.21,0.13,0,0.03,0.37 +"Monsters, Inc. Scream Arena",GC,2002,Platform,THQ,0.29,0.07,0,0.01,0.37 +Reel Fishing III,PS2,2003,Sports,Natsume,0.18,0.14,0,0.05,0.37 +Cabela's Deer Hunt 2005 Season,PS2,2004,Sports,Activision,0.18,0.14,0,0.05,0.37 +Prince of Persia: The Forgotten Sands,PSP,2010,Action,Ubisoft,0.09,0.18,0.01,0.1,0.37 +Rampage: Total Destruction,PS2,2006,Action,Midway Games,0.18,0.14,0,0.05,0.37 +High Heat Major League Baseball 2003,PS2,2002,Sports,3DO,0.18,0.14,0,0.05,0.37 +Madden NFL 11,PSP,2010,Sports,Electronic Arts,0.35,0,0,0.03,0.37 +Super Formation Soccer 94,SNES,1994,Sports,Human Entertainment,0,0,0.37,0,0.37 +Panzer Dragoon,SAT,1995,Shooter,Sega,0,0,0.37,0,0.37 +Tiger Woods PGA Tour 12: The Masters,Wii,2011,Sports,Electronic Arts,0.21,0.13,0,0.03,0.37 +Rage,PC,2011,Shooter,Bethesda Softworks,0.14,0.18,0,0.06,0.37 +Spider-Man: Friend or Foe,PS2,2007,Action,Activision,0.31,0.01,0,0.05,0.37 +Yarudora Series Vol.1: Double Cast,PS,1998,Adventure,Sony Computer Entertainment,0,0,0.35,0.02,0.37 +Dungeon Siege III,X360,2011,Role-Playing,Square Enix,0.21,0.12,0.01,0.03,0.37 +Juiced 2: Hot Import Nights,PSP,2007,Racing,THQ,0.06,0.2,0,0.11,0.37 +Rec Room Games,Wii,2009,Sports,Destineer,0.35,0,0,0.02,0.37 +Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!,N64,2000,Role-Playing,ChunSoft,0,0,0.32,0.05,0.37 +Turok: Rage Wars,N64,1999,Shooter,Acclaim Entertainment,0.3,0.06,0,0,0.37 +Scooby-Doo! Classic Creep Capers,N64,2000,Action,THQ,0.3,0.06,0,0,0.37 +Dragonfire,2600,1981,Action,Imagic,0,0.02,0,0,0.37 +Custom Robo,GC,2004,Role-Playing,Nintendo,0.29,0.07,0,0.01,0.37 +FIFA Soccer 13,PSP,2012,Action,Electronic Arts,0.05,0.19,0.02,0.1,0.37 +Command & Conquer: Red Alert 3 Ultimate Edition,PS3,2009,Strategy,Electronic Arts,0.14,0.17,0,0.06,0.37 +Harry Potter and the Order of the Phoenix,PSP,2007,Action,Electronic Arts,0,0.17,0,0.1,0.37 +Medieval II: Total War Gold Edition,PC,2008,Strategy,Sega,0,0.33,0,0.03,0.37 +Pac-Man World 2,GC,2002,Action,Nintendo,0.28,0.07,0,0.01,0.37 +Kotoba no Puzzle: Mojipittan DS,DS,2007,Puzzle,Namco Bandai Games,0,0,0.37,0,0.37 +Barbie Horse Adventures: Blue Ribbon Race,GBA,2003,Sports,Knowledge Adventure,0.26,0.1,0,0.01,0.37 +Bionic Commando,PS3,2009,Platform,Capcom,0.12,0.17,0.01,0.07,0.37 +Wanted: Weapons of Fate,X360,2009,Shooter,Warner Bros. Interactive Entertainment,0.17,0.15,0,0.04,0.37 +Slime MoriMori Dragon Quest: Shougeki No Shippo Dan,GBA,2003,Adventure,Square Enix,0,0,0.36,0.01,0.37 +Dishonored,PS4,2015,Action,Bethesda Softworks,0.11,0.18,0.02,0.06,0.37 +Marvel: Ultimate Alliance,PSP,2006,Role-Playing,Activision,0.33,0,0,0.03,0.37 +NFL Street 2 Unleashed,PSP,2005,Sports,Electronic Arts,0.34,0,0,0.03,0.37 +Super Robot Taisen EX,SNES,1994,Strategy,Banpresto,0,0,0.37,0,0.37 +FIFA Street 2,PS2,2006,Sports,Electronic Arts,0.17,0.13,0.02,0.04,0.37 +Bottom of the 9th,N64,1999,Sports,Konami Digital Entertainment,0.37,0,0,0,0.37 +Theatrhythm Final Fantasy: Curtain Call,3DS,2014,Misc,Square Enix,0.13,0.08,0.15,0.02,0.37 +Trauma Center: Under the Knife,DS,2005,Simulation,Nintendo,0.3,0.01,0.02,0.03,0.37 +Shin Megami Tensei II,SNES,1994,Role-Playing,Atlus,0,0,0.37,0,0.37 +Xenosaga Episode III: Also sprach Zarathustra,PS2,2006,Role-Playing,Namco Bandai Games,0.09,0.07,0.18,0.02,0.37 +Build-A-Bear Workshop: A Friend Fur All Seasons,Wii,2008,Simulation,Game Factory,0.34,0,0,0.03,0.37 +Sid Meier's Civilization: Beyond Earth,PC,2014,Strategy,Take-Two Interactive,0.11,0.22,0,0.03,0.37 +Need for Speed: The Run,PC,2011,Action,Electronic Arts,0.09,0.21,0,0.07,0.37 +Virtua Fighter 3tb,DC,1998,Fighting,Sega,0,0,0.37,0,0.37 +Transformers: Dark of the Moon,PS3,2011,Action,Activision,0.11,0.19,0,0.07,0.37 +Mini-Yonku GB: Let's & Go!!,GB,1997,Strategy,ASCII Entertainment,0,0,0.37,0,0.37 +Skylanders SWAP Force,PS4,2013,Platform,Activision,0.2,0.12,0,0.05,0.37 +LEGO Batman 2: DC Super Heroes,PSV,2012,Action,Warner Bros. Interactive Entertainment,0.17,0.13,0,0.06,0.37 +Rock Band 4,PS4,2015,Misc,Harmonix Music Systems,0.25,0.05,0,0.07,0.37 +Left 4 Dead 2,PC,2009,Shooter,Valve Software,0,0.32,0,0.04,0.37 +The Sims 2: Castaway,PS2,2007,Simulation,Electronic Arts,0.3,0.01,0,0.05,0.37 +NCAA Football 07,PSP,2006,Sports,Electronic Arts,0.34,0,0,0.03,0.37 +The Chronicles of Narnia: Prince Caspian,Wii,2008,Action,Disney Interactive Studios,0.31,0.02,0,0.03,0.36 +NBA Live 2003,XB,,Sports,Electronic Arts,0.31,0.04,0,0.01,0.36 +Dreamworks Madagascar Kartz,DS,2009,Racing,Activision,0.25,0.08,0,0.03,0.36 +My Horse & Me,DS,2007,Sports,Atari,0.33,0,0,0.03,0.36 +GoldenEye: Rogue Agent,GC,2004,Shooter,Electronic Arts,0.28,0.07,0,0.01,0.36 +Zero4 Champ RR,SNES,1994,Sports,Media Rings,0,0,0.36,0,0.36 +Dragon Ball Z: Infinite World,PS2,2008,Fighting,Namco Bandai Games,0.08,0.06,0.21,0.02,0.36 +Nonomura Byoin no Hitobito,SAT,1996,Adventure,Elf,0,0,0.36,0,0.36 +Tom Clancy's HAWX 2,X360,2010,Action,Ubisoft,0.24,0.09,0.01,0.03,0.36 +ESPN X Games Skateboarding,PS2,2001,Sports,Konami Digital Entertainment,0.18,0.14,0,0.05,0.36 +Bejeweled 3,DS,,Puzzle,Unknown,0.32,0.02,0,0.03,0.36 +Resident Evil Zero,PS4,2016,Action,Capcom,0.09,0.17,0.05,0.05,0.36 +Super Fire ProWrestling Special,SNES,1994,Fighting,Human Entertainment,0,0,0.36,0,0.36 +Yuu Yuu Hakusho,SNES,1993,Fighting,Namco Bandai Games,0,0,0.36,0,0.36 +Kamaitachi no Yoru 2,PS2,2002,Adventure,ChunSoft,0,0,0.36,0,0.36 +High Heat Major League Baseball 2004,PS2,2003,Sports,3DO,0.18,0.14,0,0.05,0.36 +Robots,PS2,2005,Action,Vivendi Games,0.18,0.14,0,0.05,0.36 +NARC,PS2,2005,Shooter,Midway Games,0.18,0.14,0,0.05,0.36 +One Piece: Gigant Battle!,DS,2010,Fighting,Namco Bandai Games,0,0,0.36,0,0.36 +Valkyrie Profile: Lenneth,PSP,2006,Role-Playing,Square Enix,0.17,0.01,0.16,0.02,0.36 +Tiger Woods PGA Tour 09,PSP,2008,Sports,Electronic Arts,0.07,0.19,0,0.1,0.36 +Metro: Last Light,X360,2013,Action,Deep Silver,0.17,0.16,0,0.03,0.36 +Tiger Woods PGA Tour 14,X360,2013,Sports,Electronic Arts,0.21,0.13,0,0.03,0.36 +LocoRoco 2,PSP,2008,Platform,Sony Computer Entertainment,0.21,0.09,0.01,0.05,0.36 +Monster Rancher 3,PS2,2001,Simulation,Tecmo Koei,0.11,0.09,0.14,0.03,0.36 +The Incredibles: Rise of the Underminer,PS2,2005,Action,THQ,0.18,0.14,0,0.05,0.36 +Spider-Man: Shattered Dimensions,X360,2010,Action,Activision,0.24,0.09,0,0.03,0.36 +BlazBlue: Calamity Trigger,X360,2009,Fighting,PQube,0.21,0.08,0.04,0.03,0.36 +MechWarrior 2: 31st Century Combat,PS,1997,Simulation,Activision,0.2,0.14,0,0.02,0.36 +Earth Defense Force 2025,PS3,2013,Shooter,D3Publisher,0.04,0.03,0.27,0.02,0.36 +Hamtaro: Ham-Ham Heartbreak,GBA,2002,Action,Nintendo,0.26,0.1,0,0.01,0.36 +Okage: Shadow King,PS2,2001,Role-Playing,Sony Computer Entertainment,0.14,0.11,0.08,0.04,0.36 +Press Your Luck 2010 Edition,Wii,2009,Misc,Ubisoft,0.33,0,0,0.03,0.36 +Mobile Suit Z-Gundam,PS,1997,Action,Namco Bandai Games,0,0,0.34,0.02,0.36 +Cubix Robots for Everyone: Clash 'n' Bash,GBA,,Action,Unknown,0.26,0.1,0,0.01,0.36 +Tropico 4,X360,,Strategy,Kalypso Media,0.2,0.13,0,0.03,0.36 +Speed Racer: The Videogame,DS,2008,Racing,Warner Bros. Interactive Entertainment,0.29,0.05,0,0.03,0.36 +NHL 2K10,Wii,2009,Sports,Take-Two Interactive,0.33,0.01,0,0.03,0.36 +Assassin's Creed III,WiiU,2012,Action,Ubisoft,0.19,0.13,0,0.03,0.36 +Kirby's Dream Land 3,SNES,1997,Platform,Nintendo,0,0,0.36,0,0.36 +Big Bass World Championship,PS,1997,Sports,Starfish,0.2,0.14,0,0.02,0.36 +NFL GameDay 2001,PS2,2000,Sports,Sony Computer Entertainment,0.18,0.14,0,0.05,0.36 +NBA 2K6,XB,2005,Action,Take-Two Interactive,0.27,0.08,0,0.01,0.36 +Jurassic Park,NES,1993,Action,Ocean,0.25,0.1,0,0.01,0.36 +Mystical Ninja starring Goemon,N64,1997,Action,Konami Digital Entertainment,0.07,0.02,0.23,0.04,0.36 +Tetrisphere,N64,1997,Puzzle,Nintendo,0.29,0.06,0,0,0.36 +Saban's Power Rangers: Lightspeed Rescue,N64,2000,Action,THQ,0.29,0.06,0,0,0.36 +Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei,PSV,2013,Fighting,Marvelous Entertainment,0.13,0.02,0.16,0.05,0.36 +North American Hunting Extravaganza,Wii,2008,Sports,Zushi Games,0.33,0,0,0.03,0.36 +World's Scariest Police Chases,PS,2001,Racing,Activision,0.2,0.14,0,0.02,0.36 +Guitar Hero: Smash Hits,PS3,2009,Misc,Activision,0.2,0.11,0,0.05,0.36 +Shaun Palmer's Pro Snowboarder,GBA,2001,Sports,Activision,0.26,0.1,0,0.01,0.36 +AMF Bowling World Lanes,Wii,2008,Sports,Bethesda Softworks,0.33,0,0,0.03,0.36 +MechAssault 2: Lone Wolf,XB,2004,Simulation,Microsoft Game Studios,0.27,0.08,0,0.01,0.36 +Middle-Earth: Shadow of Mordor,PC,2014,Action,Warner Bros. Interactive Entertainment,0.12,0.2,0,0.04,0.36 +Hamster Club 3,GBA,2002,Simulation,Jorudan,0,0,0.35,0.01,0.36 +Breath of Fire II,SNES,1994,Role-Playing,Laguna,0,0,0.36,0,0.36 +Call of Duty: Ghosts,WiiU,2013,Shooter,Activision,0.23,0.09,0.01,0.03,0.36 +LEGO Racers,PS,1999,Racing,LEGO Media,0.2,0.14,0,0.02,0.36 +NBA 2K12,Wii,2011,Sports,Take-Two Interactive,0.3,0.03,0,0.02,0.36 +Teenage Mutant Ninja Turtles: Smash-Up,Wii,2009,Fighting,Ubisoft,0.33,0,0,0.03,0.36 +Kinectimals: Now with Bears!,X360,2011,Misc,Microsoft Game Studios,0.27,0.06,0,0.03,0.36 +ESPN NFL Football,XB,2003,Sports,Sega,0.27,0.08,0,0.01,0.36 +ATV/Monster Truck Mayhem,DS,2007,Racing,"Destination Software, Inc",0.33,0,0,0.02,0.36 +Naruto: Ultimate Ninja 3 (JP sales),PS2,2005,Fighting,Atari,0,0,0.36,0,0.36 +Just Dance 2016,X360,2015,Misc,Ubisoft,0.23,0.1,0,0.03,0.36 +Worms: Open Warfare 2,DS,2007,Strategy,THQ,0.07,0.25,0,0.04,0.36 +Rapala Pro Fishing,PS2,2004,Sports,Zoo Digital Publishing,0.18,0.14,0,0.05,0.36 +J-League Pro Soccer Club o Tsukurou '04,PS2,2004,Sports,Sega,0,0,0.36,0,0.36 +Dark Void,PS3,2010,Action,Capcom,0.18,0.12,0,0.06,0.36 +James Bond 007: Legends,PS3,2012,Shooter,Activision,0.11,0.17,0,0.07,0.36 +Dai-2-Ji Super Robot Taisen Z Saisei-hen,PSP,2012,Strategy,Namco Bandai Games,0,0,0.36,0,0.36 +WWE '12,Wii,2011,Fighting,THQ,0.24,0.09,0,0.03,0.36 +Disney's The Haunted Mansion,PS2,2003,Platform,Take-Two Interactive,0.18,0.14,0,0.05,0.36 +Arc the Lad: Twilight of the Spirits,PS2,2003,Role-Playing,Sony Computer Entertainment,0.18,0.14,0,0.05,0.36 +Dance Dance Revolution 3rdMix,PS,2000,Simulation,Konami Digital Entertainment,0,0,0.33,0.02,0.36 +Ryu Ga Gotoku Kenzan!,PS3,2008,Adventure,Sega,0,0,0.36,0,0.36 +U-Sing,Wii,2009,Misc,Mindscape,0,0.32,0,0.03,0.36 +Super Robot Taisen A,GBA,2001,Strategy,Banpresto,0,0,0.35,0.01,0.36 +Tomb Raider (2013),PC,,Action,Square Enix,0.06,0.25,0,0.05,0.36 +Chicken Shoot,Wii,2007,Action,Zoo Digital Publishing,0.33,0.01,0,0.02,0.36 +Company of Heroes 2,PC,2013,Strategy,THQ,0.06,0.25,0,0.05,0.36 +Defiance,PS3,2013,Shooter,Trion Worlds,0.19,0.11,0,0.05,0.36 +We Sing Deutsche Hits,Wii,2011,Misc,Nordic Games,0,0.31,0,0.05,0.36 +Boxer's Road,PS,1995,Fighting,New,0,0,0.33,0.02,0.36 +Frogs And Flies,2600,1981,Action,Mattel Interactive,0.33,0.02,0,0,0.36 +DanceDanceRevolution,Wii,2010,Simulation,Konami Digital Entertainment,0.29,0.04,0,0.02,0.36 +Harry Potter and the Chamber of Secrets,XB,2002,Action,Electronic Arts,0.27,0.08,0,0.01,0.36 +EA Sports MMA,X360,2010,Fighting,Electronic Arts,0.23,0.1,0,0.03,0.36 +Toriko: Gourmet Survival!,PSP,2011,Role-Playing,Namco Bandai Games,0,0,0.36,0,0.36 +South Park Rally,PS,1998,Racing,Acclaim Entertainment,0.2,0.13,0,0.02,0.36 +Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame,SNES,1994,Platform,Konami Digital Entertainment,0,0,0.36,0,0.36 +Monopoly,PS3,2008,Misc,Electronic Arts,0.25,0.06,0,0.04,0.36 +Mega Man Zero Collection,DS,2010,Platform,Capcom,0.21,0.02,0.11,0.02,0.36 +Arctic Thunder,PS2,2001,Racing,Midway Games,0.17,0.14,0,0.05,0.36 +G-Force,PSP,2009,Action,Electronic Arts,0.24,0.07,0,0.05,0.36 +NHL 2K10,PS2,2009,Sports,Take-Two Interactive,0.17,0.14,0,0.05,0.36 +Football Manager Handheld 2010,PSP,2009,Sports,Sega,0,0.26,0,0.09,0.36 +J-League Pro Soccer Club o Tsukurou!,DC,1999,Sports,Sega,0,0,0.36,0,0.36 +Wonder Pets! Save the Animals!,DS,2008,Adventure,Take-Two Interactive,0.33,0,0,0.02,0.36 +Formula 1 Championship Edition,PS,1997,Racing,Psygnosis,0.06,0.04,0.23,0.02,0.36 +Shrek,XB,2001,Platform,TDK Mediactive,0.25,0.1,0,0.01,0.36 +CSI: Deadly Intent - The Hidden Cases,DS,2009,Adventure,Ubisoft,0.16,0.16,0,0.04,0.35 +SOCOM: Tactical Strike,PSP,2007,Shooter,Sony Computer Entertainment,0.32,0.01,0,0.03,0.35 +Blasto,PS,1998,Action,Sony Computer Entertainment,0.2,0.13,0,0.02,0.35 +Trauma Center: Second Opinion,Wii,2006,Simulation,Nintendo,0.28,0.02,0.03,0.03,0.35 +Backyard Baseball 2006,GBA,2005,Sports,Atari,0.25,0.09,0,0.01,0.35 +Dark Souls III,XOne,2016,Role-Playing,Namco Bandai Games,0.23,0.09,0,0.03,0.35 +Cabela's Outdoor Adventures (2006),PS2,2005,Sports,Zoo Digital Publishing,0.17,0.14,0,0.05,0.35 +Nicktoons: Unite!,GC,2005,Adventure,THQ,0.27,0.07,0,0.01,0.35 +Suikoden V,PS2,2006,Role-Playing,Konami Digital Entertainment,0.08,0.06,0.19,0.02,0.35 +Picross 2,GB,1996,Puzzle,Nintendo,0,0,0.35,0,0.35 +Remember Me,PS3,2013,Action,Capcom,0.1,0.18,0,0.07,0.35 +Battalion Wars 2,Wii,2007,Strategy,Nintendo,0.22,0.03,0.08,0.02,0.35 +Outlaw Golf 2,PS2,2004,Sports,Global Star,0.17,0.14,0,0.05,0.35 +SpongeBob's Boating Bash,Wii,2010,Misc,THQ,0.25,0.07,0,0.03,0.35 +Sentouchu: Densetsu no Shinobi to Survival Battle!,3DS,2013,Action,Namco Bandai Games,0,0,0.35,0,0.35 +Vancouver 2010 - The Official Video Game of the Olympic Winter Games,PS3,2010,Sports,Sega,0.09,0.2,0,0.07,0.35 +Momotarou Dentetsu 12,PS2,2003,Misc,Hudson Soft,0,0,0.35,0,0.35 +Mini Ninjas,PS3,2009,Action,Eidos Interactive,0.14,0.16,0,0.06,0.35 +Tekken Tag Tournament 2,X360,2012,Fighting,Namco Bandai Games,0.19,0.12,0.01,0.03,0.35 +Batman: Rise of Sin Tzu,PS2,2003,Action,Ubisoft,0.17,0.13,0,0.05,0.35 +Disney's Tarzan: Return to the Jungle,GBA,2002,Action,Activision,0.25,0.09,0,0.01,0.35 +Cabela's Dangerous Hunts,XB,2003,Sports,Zoo Digital Publishing,0.26,0.08,0,0.01,0.35 +Terminator Salvation,X360,2009,Shooter,Warner Bros. Interactive Entertainment,0.13,0.18,0,0.04,0.35 +Jikkyou Powerful Pro Yakyuu 13,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.35,0,0.35 +Fossil Fighters: Frontier,3DS,2014,Role-Playing,Nintendo,0.08,0.04,0.23,0.01,0.35 +Star Fox: Zero,WiiU,2016,Shooter,Nintendo,0.16,0.1,0.07,0.03,0.35 +Mega Man X3,SNES,1995,Action,Laguna,0.04,0.01,0.3,0,0.35 +Mini Ninjas,DS,2009,Action,Eidos Interactive,0.17,0.15,0,0.04,0.35 +Stunt Race FX,SNES,1993,Racing,Nintendo,0,0,0.35,0,0.35 +Bloody Roar 3,PS2,2001,Fighting,Virgin Interactive,0.15,0.11,0.05,0.04,0.35 +WWE Crush Hour,PS2,2003,Racing,THQ,0.17,0.13,0,0.04,0.35 +Persona 2: Eternal Punishment,PS,2000,Role-Playing,Atlus,0.03,0.02,0.28,0.02,0.35 +Star Wars: Flight of the Falcon,GBA,2003,Action,THQ,0.25,0.09,0,0.01,0.35 +One Piece: Gigant Battle 2 Shin Sekai,DS,2011,Fighting,Namco Bandai Games,0,0,0.35,0,0.35 +Pac-Man All-Stars,PS3,2011,Fighting,Namco Bandai Games,0.2,0.08,0.04,0.04,0.35 +Def Jam Rapstar,Wii,2010,Misc,Konami Digital Entertainment,0.31,0.02,0,0.02,0.35 +SimCity Creator,DS,2008,Simulation,Electronic Arts,0.3,0.03,0,0.03,0.35 +Hannah Montana: The Movie,Wii,2009,Adventure,Disney Interactive Studios,0.13,0.18,0,0.04,0.35 +Angry Birds Star Wars,Wii,2013,Strategy,Activision,0.21,0.1,0,0.03,0.35 +Dragon Ball Z: Budokai Tenkaichi 2 (JP sales),Wii,,Action,,0.15,0.05,0.14,0.01,0.35 +Mega Man ZX Advent,DS,2007,Platform,Capcom,0.23,0,0.09,0.02,0.35 +Jikkyou Powerful Pro Yakyuu 2000,N64,2000,Sports,Konami Digital Entertainment,0,0,0.29,0.06,0.35 +Sniper: Ghost Warrior 2,PS3,2013,Shooter,City Interactive,0.05,0.19,0.03,0.07,0.35 +Racquet Sports,PS3,2010,Sports,Ubisoft,0.11,0.17,0,0.06,0.35 +Harry Potter and the Deathly Hallows - Part 2,Wii,2011,Action,Electronic Arts,0.18,0.14,0,0.03,0.35 +Supreme Commander 2,X360,2010,Strategy,Square Enix,0.23,0.1,0,0.03,0.35 +Resident Evil: Dead Aim,PS2,2003,Action,Capcom,0.17,0.13,0,0.04,0.35 +Need for Speed Carbon,GC,2006,Racing,Electronic Arts,0.27,0.07,0,0.01,0.35 +The Adventures of Jimmy Neutron Boy Genius: Jet Fusion,GBA,2003,Action,THQ,0.25,0.09,0,0.01,0.35 +SpongeBob SquarePants: The Yellow Avenger,DS,2005,Action,THQ,0.32,0,0,0.02,0.35 +The Fairly Odd Parents: Shadow Showdown,PS2,2004,Platform,THQ,0.17,0.13,0,0.04,0.35 +Saban's Power Rangers: Lightspeed Rescue,PS,2000,Action,THQ,0.19,0.13,0,0.02,0.35 +Xbox Music Mixer,XB,2003,Misc,Microsoft Game Studios,0.26,0.08,0,0.01,0.35 +WWE All Stars,X360,2011,Fighting,THQ,0.18,0.14,0,0.03,0.35 +The Shoot,PS3,2010,Shooter,Sony Computer Entertainment,0.13,0.16,0.01,0.06,0.35 +College Hoops 2K8,PS2,2007,Sports,Take-Two Interactive,0.17,0.13,0,0.04,0.35 +Guitar Hero: Metallica,PS2,2009,Misc,Activision,0.17,0.13,0,0.04,0.35 +Guilty Gear X2,PS2,2002,Fighting,Sammy Corporation,0.09,0.07,0.16,0.02,0.35 +MotoGP 08,X360,2008,Racing,Capcom,0.11,0.2,0,0.04,0.35 +Yu-Gi-Oh! 5D's Tag Force 5,PSP,2010,Strategy,Konami Digital Entertainment,0.13,0.05,0.14,0.03,0.35 +Enemy Territory: Quake Wars,PS3,2008,Shooter,Activision,0.23,0.07,0,0.04,0.35 +Tom Clancy's Rainbow Six: Lockdown,PS2,2005,Shooter,Ubisoft,0.17,0.13,0,0.04,0.35 +From TV Animation One Piece: Tobidase Kaizokudan!,PS,2001,Role-Playing,Namco Bandai Games,0,0,0.32,0.02,0.35 +The Tale of Despereaux,PS2,2008,Platform,Brash Entertainment,0.17,0.13,0,0.04,0.35 +Aggressive Inline,PS2,2002,Sports,Acclaim Entertainment,0.17,0.13,0,0.04,0.35 +Karaoke Revolution,PS2,2003,Misc,Konami Digital Entertainment,0.17,0.13,0,0.04,0.35 +NFL Street,GC,2004,Sports,Electronic Arts,0.27,0.07,0,0.01,0.35 +Hello Kitty Daily,DS,2008,Misc,Nobilis,0.32,0,0,0.03,0.35 +Metal Arms: Glitch in the System,PS2,2003,Shooter,Vivendi Games,0.17,0.13,0,0.04,0.35 +Farming Simulator 2015,PS4,2015,Simulation,Koch Media,0.1,0.2,0,0.05,0.35 +Jikkyou Powerful Pro Yakyuu 7,PS2,2000,Sports,Konami Digital Entertainment,0,0,0.35,0,0.35 +Rally Cross 2,PS,1998,Racing,989 Studios,0.19,0.13,0,0.02,0.35 +EverGrace,PS2,2000,Role-Playing,Ubisoft,0.1,0.08,0.15,0.03,0.35 +Def Jam Icon,X360,2007,Action,Electronic Arts,0.3,0.01,0,0.03,0.35 +Lunar 2: Eternal Blue Complete,PS,1999,Role-Playing,Kadokawa Shoten,0.19,0.13,0,0.02,0.35 +Street Fighter Alpha: Warriors' Dreams,SAT,1996,Fighting,Capcom,0,0,0.35,0,0.35 +Rugrats: Royal Ransom,PS2,2002,Platform,THQ,0.17,0.13,0,0.04,0.35 +Disney Fairies: Tinker Bell and the Great Fairy Rescue,DS,2010,Adventure,Disney Interactive Studios,0.18,0.14,0,0.03,0.35 +MLB 06: The Show,PSP,2006,Sports,Sony Computer Entertainment,0.32,0,0,0.03,0.35 +F1 Race Stars,PS3,2012,Racing,Codemasters,0.06,0.21,0,0.08,0.35 +Over the Hedge,GC,2006,Platform,Activision,0.27,0.07,0,0.01,0.35 +Naruto Shippuden: Ultimate Ninja Impact,PSP,2011,Fighting,Namco Bandai Games,0.09,0.07,0.15,0.04,0.35 +Just Dance 2016,PS4,2015,Misc,Ubisoft,0.16,0.13,0,0.06,0.35 +Charlie and the Chocolate Factory,PS2,2005,Adventure,Global Star,0.17,0.13,0,0.04,0.35 +Pirates of the Caribbean: At World's End,DS,2007,Action,Disney Interactive Studios,0.3,0.01,0.01,0.03,0.35 +UEFA Euro 2008 Austria-Switzerland,X360,2008,Sports,Electronic Arts,0.08,0.23,0,0.03,0.35 +Kurushi Final: Mental Blocks,PS,1998,Puzzle,Sony Computer Entertainment,0,0,0.32,0.02,0.34 +Style Lab: Jewelry Design,DS,2009,Simulation,Ubisoft,0.32,0,0,0.02,0.34 +Risk / Battleship / Clue,GBA,2005,Misc,Zoo Digital Publishing,0.25,0.09,0,0.01,0.34 +SD Gundam G Generation World,PSP,2011,Strategy,Namco Bandai Games,0,0,0.34,0,0.34 +LEGO Pirates of the Caribbean: The Video Game,PSP,2011,Action,Disney Interactive Studios,0.11,0.15,0,0.08,0.34 +The Wild Thornberrys Movie,GBA,2002,Platform,THQ,0.25,0.09,0,0.01,0.34 +High School Musical 3: Senior Year DANCE!,PS2,2008,Misc,Disney Interactive Studios,0.17,0.13,0,0.04,0.34 +Dynasty Warriors 5 Empires,PS2,2006,Action,Tecmo Koei,0.11,0.09,0.12,0.03,0.34 +SoulCalibur,DC,1999,Fighting,Namco Bandai Games,0,0,0.34,0,0.34 +WipEout 3,PS,1999,Racing,Psygnosis,0.19,0.13,0,0.02,0.34 +Etrian Odyssey,DS,2007,Role-Playing,Nintendo,0.2,0.03,0.09,0.02,0.34 +Conan,PS3,2007,Action,THQ,0.13,0.15,0,0.06,0.34 +Classic NES Series: Ice Climber,GBA,2004,Platform,Nintendo,0.1,0.04,0.2,0.01,0.34 +Skylanders: Trap Team,XOne,2014,Action,Activision,0.25,0.07,0,0.03,0.34 +Avatar: The Last Airbender - The Burning Earth,DS,2007,Action,THQ,0.31,0,0,0.03,0.34 +F.E.A.R.,X360,2006,Shooter,Vivendi Games,0.28,0.03,0,0.03,0.34 +Tenchu Z,X360,2006,Action,Microsoft Game Studios,0.27,0.02,0.02,0.03,0.34 +Freeway,2600,1980,Action,Activision,0.32,0.02,0,0,0.34 +Driver 2 Advance,GBA,2002,Action,Atari,0.25,0.09,0,0.01,0.34 +Monster Rancher 4,PS2,2003,Simulation,Tecmo Koei,0.08,0.06,0.19,0.02,0.34 +Iron Man 2,DS,2010,Action,Sega,0.15,0.16,0,0.03,0.34 +Chicken Riot,Wii,2010,Action,City Interactive,0.15,0.16,0,0.03,0.34 +Tim Burton's The Nightmare Before Christmas: Oogie's Revenge,PS2,2004,Adventure,Disney Interactive Studios,0.17,0.13,0,0.04,0.34 +Iron Storm,SAT,1995,Shooter,Sega,0,0,0.34,0,0.34 +Harry Potter and the Deathly Hallows - Part 2,X360,2011,Action,Electronic Arts,0.19,0.12,0,0.03,0.34 +MotorStorm: Arctic Edge,PS2,2009,Racing,Sony Computer Entertainment,0.07,0.03,0,0.25,0.34 +The Fairly Odd Parents: Shadow Showdown,GBA,2004,Platform,THQ,0.25,0.09,0,0.01,0.34 +Radiant Historia,DS,2010,Role-Playing,Atlus,0.24,0,0.09,0.02,0.34 +Marvel Super Heroes,PS,1997,Fighting,Virgin Interactive,0.19,0.13,0,0.02,0.34 +Super Bust-A-Move,PS2,2000,Puzzle,Acclaim Entertainment,0.17,0.13,0,0.04,0.34 +Hitman: Contracts,XB,2004,Shooter,Eidos Interactive,0.26,0.07,0,0.01,0.34 +Thunderstrike: Operation Phoenix,PS2,2001,Simulation,Eidos Interactive,0.17,0.13,0,0.04,0.34 +Alien's Return,2600,1982,Action,ITT Family Games,0.32,0.02,0,0,0.34 +Frostbite,2600,1983,Action,Activision,0.32,0.02,0,0,0.34 +LEGO Marvel's Avengers,X360,2016,Action,Warner Bros. Interactive Entertainment,0.17,0.15,0,0.03,0.34 +Kameo: Elements of Power,X360,2005,Action,Microsoft Game Studios,0.28,0.03,0,0.03,0.34 +Power Rangers Samurai,Wii,2011,Action,Namco Bandai Games,0.29,0.03,0,0.02,0.34 +WWE Day of Reckoning 2,GC,2005,Fighting,THQ,0.26,0.07,0,0.01,0.34 +Dynasty Warriors 6 Empires,PS3,2009,Action,Tecmo Koei,0.14,0.03,0.15,0.02,0.34 +The Urbz: Sims in the City,XB,2004,Simulation,Electronic Arts,0.22,0.11,0,0.01,0.34 +Fantastic Voyage,2600,1981,Action,20th Century Fox Video Games,0.32,0.02,0,0,0.34 +The Adventures of Tintin: The Game,Wii,2011,Action,Ubisoft,0.13,0.17,0,0.04,0.34 +Bee Movie Game,Wii,2007,Action,Activision,0.31,0.01,0,0.03,0.34 +Silent Hill HD Collection,PS3,2012,Action,Konami Digital Entertainment,0.15,0.11,0.03,0.05,0.34 +Night Warriors: Darkstalkers' Revenge,SAT,1995,Fighting,Virgin Interactive,0,0,0.34,0,0.34 +Off Road Challenge,N64,1998,Racing,GT Interactive,0.27,0.06,0,0,0.34 +Bank Heist,2600,1982,Action,20th Century Fox Video Games,0.32,0.02,0,0,0.34 +Harry Potter and the Half-Blood Prince,PS3,2009,Action,Electronic Arts,0.15,0.13,0,0.06,0.34 +Tom Clancy's Ghost Recon: Shadow Wars,3DS,2011,Strategy,Ubisoft,0.22,0.09,0,0.03,0.34 +Backstreet Billiards,PS,1998,Misc,ASCII Entertainment,0.19,0.13,0,0.02,0.34 +MX vs. ATV Untamed,Wii,2008,Racing,THQ,0.29,0.03,0,0.03,0.34 +Carnival,2600,1981,Shooter,Coleco,0.32,0.02,0,0,0.34 +Football Manager Handheld 2008,PSP,2007,Sports,Sega,0,0.34,0,0,0.34 +Leisure Suit Larry: Magna Cum Laude,PS2,2004,Adventure,Vivendi Games,0.17,0.13,0,0.04,0.34 +Harry Potter and the Deathly Hallows - Part 2,PS3,2011,Action,Electronic Arts,0.14,0.15,0,0.05,0.34 +MVP 06 NCAA Baseball,XB,2006,Sports,Electronic Arts,0.25,0.07,0,0.01,0.34 +Momotarou Dentetsu DS: Tokyo & Japan,DS,2007,Misc,Hudson Soft,0,0,0.34,0,0.34 +Point Blank,PS,1997,Shooter,Sony Computer Entertainment,0.05,0.03,0.23,0.02,0.34 +Bookworm,DS,2009,Puzzle,PopCap Games,0.31,0.01,0,0.02,0.34 +Smart Girl's Party Game,DS,2008,Misc,505 Games,0.31,0,0,0.02,0.34 +Rayman Legends,XOne,2014,Platform,Ubisoft,0.13,0.18,0,0.03,0.34 +Puzzle Quest: Challenge of the Warlords,DS,2007,Puzzle,D3Publisher,0.28,0.01,0.03,0.02,0.34 +Star Ocean: Second Evolution,PSP,2008,Role-Playing,Square Enix,0.14,0.02,0.16,0.02,0.34 +My Baby Boy,DS,2008,Simulation,Nobilis,0.3,0.02,0,0.03,0.34 +Tiny Tank,PS,1998,Action,Sony Computer Entertainment,0.19,0.13,0,0.02,0.34 +Jonah Lomu Rugby Challenge,X360,2011,Sports,Home Entertainment Suppliers,0.09,0.21,0,0.04,0.34 +Spy Hunter,XB,2002,Racing,Midway Games,0.25,0.07,0,0.01,0.34 +Angry Birds Star Wars,3DS,2013,Strategy,Activision,0.15,0.15,0,0.03,0.34 +Imagine: Movie Star,DS,2008,Simulation,Ubisoft,0.31,0,0,0.02,0.34 +NHL 09,PS3,2008,Sports,Electronic Arts,0.29,0.02,0,0.03,0.34 +Zoo Tycoon (2013),XOne,2013,Simulation,Microsoft Game Studios,0.18,0.13,0,0.03,0.34 +Herbie: Fully Loaded,GBA,2005,Racing,Disney Interactive Studios,0.24,0.09,0,0.01,0.34 +The Sims 3: Town Life Stuff,PC,2011,Simulation,Electronic Arts,0.11,0.17,0,0.05,0.34 +Teenage Mutant Ninja Turtles,GC,2003,Action,Konami Digital Entertainment,0.26,0.07,0,0.01,0.34 +Pony Friends 2,DS,2009,Simulation,Eidos Interactive,0.21,0.1,0,0.03,0.34 +Disney Sing It: Pop Hits,PS2,2009,Misc,Disney Interactive Studios,0.1,0.02,0,0.22,0.34 +Buzz! The Ultimate Music Quiz,PS3,2010,Misc,Sony Computer Entertainment,0,0.25,0,0.08,0.34 +Persona 5,PS4,2016,Role-Playing,Atlus,0,0,0.34,0,0.34 +The Eye of Judgment,PS3,2007,Misc,Sony Computer Entertainment,0.28,0,0.02,0.03,0.34 +Pirates of the Caribbean: At World's End,X360,2007,Action,Disney Interactive Studios,0.29,0.02,0,0.03,0.34 +Modnation Racers: Road Trip,PSV,2012,Racing,Sony Computer Entertainment,0.17,0.12,0,0.05,0.34 +Dynasty Warriors: Gundam 2,PS2,2008,Action,Namco Bandai Games,0.04,0.03,0.25,0.01,0.34 +Power Rangers Samurai,DS,2011,Action,Namco Bandai Games,0.27,0.04,0,0.02,0.34 +Fade to Black,PS,1996,Action,Electronic Arts,0.19,0.13,0,0.02,0.34 +MXRider,PS2,2001,Racing,Atari,0.16,0.13,0,0.04,0.34 +Avatar: The Last Airbender,DS,2006,Adventure,THQ,0.3,0.01,0,0.03,0.34 +Battlefield: Hardline,X360,2015,Shooter,Electronic Arts,0.17,0.14,0,0.03,0.34 +Delta Force: Black Hawk Down,XB,2005,Shooter,NovaLogic,0.25,0.07,0,0.01,0.34 +Night at the Museum: Battle of the Smithsonian,DS,2009,Action,Majesco Entertainment,0.12,0.18,0,0.04,0.34 +World Championship Poker 2: Featuring Howard Lederer,PS2,2005,Misc,Oxygen Interactive,0.16,0.13,0,0.04,0.34 +Sengoku Musou 3 Z,PS3,2011,Action,Ackkstudios,0,0,0.33,0,0.33 +Operation Flashpoint: Red River,PS3,2011,Shooter,Codemasters,0.06,0.15,0.07,0.05,0.33 +Ninja Blade,X360,2009,Action,Microsoft Game Studios,0.14,0.14,0.02,0.03,0.33 +Tom Clancy's Ghost Recon Advanced Warfighter,XB,2006,Shooter,Ubisoft,0.21,0.11,0,0.01,0.33 +Transformers: Revenge of the Fallen (DS Versions),DS,2009,Action,Activision,0.17,0.13,0,0.03,0.33 +Fracture,X360,2008,Shooter,LucasArts,0.15,0.14,0,0.04,0.33 +Tokyo Highway Battle,PS,1996,Racing,Jaleco,0.06,0.04,0.21,0.02,0.33 +Pandora's Tower,Wii,2011,Role-Playing,Nintendo,0.13,0.1,0.08,0.03,0.33 +Binary Domain,PS3,2012,Action,Sega,0.09,0.08,0.14,0.03,0.33 +The King of Fighters XIII,X360,2011,Fighting,Rising Star Games,0.23,0.07,0.01,0.03,0.33 +Beyond Good & Evil,PS2,2003,Adventure,Ubisoft,0.16,0.13,0,0.04,0.33 +Banjo-Kazooie: Grunty's Revenge,GBA,2003,Platform,THQ,0.24,0.09,0,0.01,0.33 +Bomberman World,PS,1998,Puzzle,Sony Computer Entertainment,0.06,0.04,0.22,0.02,0.33 +The X-Factor,Wii,2010,Misc,Deep Silver,0,0.29,0,0.04,0.33 +Digimon World: Dawn / Dusk,DS,2007,Role-Playing,Namco Bandai Games,0.14,0,0.18,0.01,0.33 +Street Fighter Alpha 3 MAX,PSP,2006,Fighting,Capcom,0.27,0.01,0.02,0.03,0.33 +Untold Legends: The Warriors Code,PSP,2006,Role-Playing,Ubisoft,0.14,0.12,0,0.08,0.33 +Virtua Tennis 2009,X360,2009,Sports,Sega,0.12,0.18,0,0.03,0.33 +Deathtrap Dungeon,PS,1998,Action,Eidos Interactive,0.19,0.13,0,0.02,0.33 +Tales of the World: Radiant Mythology 2,PSP,2009,Role-Playing,Namco Bandai Games,0,0,0.33,0,0.33 +Wipeout 2,Wii,2011,Misc,Activision,0.31,0,0,0.02,0.33 +Iron Man 2,Wii,2010,Action,Sega,0.15,0.15,0,0.03,0.33 +Ape Escape Academy,PSP,2004,Misc,Sony Computer Entertainment,0.13,0.15,0,0.05,0.33 +The Darkness II,PS3,2012,Shooter,Take-Two Interactive,0.14,0.14,0,0.05,0.33 +SingStar Take That,PS3,2009,Misc,Sony Computer Entertainment,0,0.3,0,0.03,0.33 +Marvel: Ultimate Alliance 2,Wii,2009,Role-Playing,Activision,0.26,0.05,0,0.03,0.33 +Ultimate Marvel vs. Capcom 3,PSV,2011,Fighting,Capcom,0.2,0.09,0,0.05,0.33 +WWE Wrestlemania XIX,GC,2003,Fighting,THQ,0.26,0.07,0,0.01,0.33 +Planet Puzzle League,DS,2007,Puzzle,Nintendo,0.14,0.01,0.16,0.01,0.33 +The Sims 2,GC,2005,Simulation,Electronic Arts,0.26,0.07,0,0.01,0.33 +Hulk,XB,2003,Action,Universal Interactive,0.25,0.07,0,0.01,0.33 +Naruto: Rise of a Ninja,X360,2007,Action,Ubisoft,0.29,0.02,0,0.03,0.33 +Chicken Blaster,Wii,2009,Shooter,Zushi Games,0.31,0,0,0.02,0.33 +Family Party: 90 Great Games Party Pack,Wii,2010,Misc,D3Publisher,0.31,0,0,0.02,0.33 +Klonoa 2: Lunatea's Veil,PS2,2001,Platform,Sony Computer Entertainment,0.12,0.1,0.08,0.03,0.33 +Deus Ex: Invisible War,XB,2003,Shooter,Eidos Interactive,0.25,0.07,0,0.01,0.33 +Resonance of Fate,X360,2010,Role-Playing,Sega,0.12,0.13,0.06,0.03,0.33 +Hell's Kitchen: The Game,Wii,2008,Simulation,Ubisoft,0.3,0,0,0.03,0.33 +Disney's Treasure Planet,PS2,2002,Action,Sony Computer Entertainment,0.16,0.13,0,0.04,0.33 +NASCAR Thunder 2002,XB,2001,Racing,Electronic Arts,0.25,0.07,0,0.01,0.33 +Jeanne d'Arc,PSP,2006,Role-Playing,Sony Computer Entertainment,0.21,0,0.1,0.02,0.33 +NCAA Basketball 10,PS3,2009,Sports,Electronic Arts,0.31,0,0,0.03,0.33 +BeatMania Append GottaMix,PS,1999,Simulation,Konami Digital Entertainment,0,0,0.31,0.02,0.33 +Dead or Alive 5,PS4,2015,Fighting,Tecmo Koei,0.09,0.13,0.08,0.04,0.33 +Tak 2: The Staff of Dreams,GC,2004,Platform,THQ,0.26,0.07,0,0.01,0.33 +Rugby World Cup 2011,PS3,2011,Sports,505 Games,0,0.25,0,0.08,0.33 +Medal of Honor: Warfighter,PC,2012,Action,Electronic Arts,0.14,0.15,0,0.04,0.33 +Kelly Slater's Pro Surfer,PS2,2002,Sports,Activision,0.16,0.13,0,0.04,0.33 +Shrek SuperSlam,GBA,2005,Action,Activision,0.24,0.09,0,0.01,0.33 +Sonic Boom: Rise of Lyric,WiiU,2014,Action,Sega,0.21,0.09,0,0.03,0.33 +Legends of Wrestling II,PS2,2002,Fighting,Acclaim Entertainment,0.16,0.13,0,0.04,0.33 +World Stadium 3,PS,1999,Sports,Namco Bandai Games,0,0,0.31,0.02,0.33 +Little Deviants,PSV,2011,Platform,Sony Computer Entertainment,0.15,0.13,0,0.05,0.33 +Silent Hill: Downpour,X360,2012,Action,Konami Digital Entertainment,0.22,0.08,0,0.03,0.33 +Extra Bases,GB,1990,Sports,Namco Bandai Games,0,0,0.33,0,0.33 +Super Power League 2,SNES,1994,Sports,Hudson Soft,0,0,0.33,0,0.33 +Night at the Museum: Battle of the Smithsonian,Wii,2009,Action,Majesco Entertainment,0.17,0.13,0,0.03,0.33 +Capcom Classics Collection Reloaded,PSP,2006,Misc,Capcom,0.26,0,0.03,0.03,0.33 +Madden NFL 09,DS,2008,Sports,Electronic Arts,0.3,0,0,0.03,0.33 +MLB 09: The Show,PS2,2009,Sports,Sony Computer Entertainment,0.16,0.13,0,0.04,0.33 +Deus Ex: Mankind Divided,PS4,2016,Role-Playing,Square Enix,0.1,0.18,0,0.05,0.33 +Cool Boarders 2001,PS2,2001,Sports,Sony Computer Entertainment,0.16,0.13,0,0.04,0.33 +Classic NES Series: Castlevania,GBA,2004,Platform,Nintendo,0.17,0.06,0.09,0.01,0.33 +Dragon Ball Z: Battle of Z,PS3,2014,Fighting,Namco Bandai Games,0.1,0.11,0.06,0.05,0.33 +Scooby-Doo! First Frights,PS2,2009,Action,Warner Bros. Interactive Entertainment,0.14,0.03,0,0.16,0.33 +Fight Night Round 3,XB,2006,Fighting,Electronic Arts,0.26,0.06,0,0.01,0.33 +GT Advance Championship Racing,GBA,2001,Racing,THQ,0.24,0.09,0,0.01,0.33 +Way of the Samurai 2,PS2,2003,Action,Capcom,0.05,0.04,0.23,0.01,0.33 +FIFA Street 3,PS3,2008,Sports,Electronic Arts,0.08,0.18,0,0.06,0.33 +Custom Robo,N64,,Role-Playing,Nintendo,0,0,0.29,0.04,0.33 +BattleTanx,N64,1998,Action,3DO,0.26,0.06,0,0,0.33 +Hatsune Miku: Project Diva Extend,PSP,2011,Misc,Sega,0,0,0.33,0,0.33 +Battlestations: Pacific,X360,2009,Strategy,Eidos Interactive,0.17,0.12,0.01,0.03,0.33 +Pitfall 3D: Beyond the Jungle,PS,1998,Platform,Activision,0.18,0.12,0,0.02,0.33 +Disgaea 2: Cursed Memories,PS2,2006,Role-Playing,Tecmo Koei,0.09,0.07,0.15,0.02,0.33 +Cabela's Dangerous Hunts 2011,PS3,2010,Sports,Activision,0.26,0.04,0,0.03,0.33 +DECA Sports Freedom,X360,2010,Sports,Hudson Soft,0.27,0.04,0,0.02,0.33 +Clock Tower 3,PS2,2002,Adventure,Capcom,0.1,0.08,0.12,0.03,0.33 +Battle Dodge Ball,SNES,1991,Sports,Banpresto,0,0,0.33,0,0.33 +Goosebumps HorrorLand,DS,2008,Adventure,Scholastic Inc.,0.31,0,0,0.02,0.33 +Phineas and Ferb: Across the 2nd Dimension,PS3,2011,Action,Disney Interactive Studios,0.15,0.12,0,0.05,0.33 +Call Of Duty 2: Big Red One,GC,2005,Shooter,Activision,0.25,0.07,0,0.01,0.33 +Elebits,Wii,2006,Action,Konami Digital Entertainment,0.22,0.01,0.08,0.02,0.33 +"Warhammer 40,000: Squad Command",PSP,2007,Strategy,THQ,0.11,0.14,0,0.08,0.33 +F1 2013,X360,2013,Racing,Codemasters,0.01,0.28,0,0.03,0.33 +Disgaea: Hour of Darkness,PS2,2003,Role-Playing,Tecmo Koei,0.16,0.13,0,0.04,0.33 +NeoGeo Battle Coliseum,PS2,2005,Fighting,Ignition Entertainment,0.16,0.13,0,0.04,0.33 +SSX Blur,Wii,2007,Sports,Electronic Arts,0.29,0.01,0,0.03,0.33 +DiRT 2,PSP,2009,Racing,Sony Computer Entertainment,0.09,0.16,0,0.09,0.33 +Vin Diesel: Wheelman,PS3,2009,Racing,Ubisoft,0.12,0.15,0,0.06,0.33 +SpongeBob SquarePants: Creature from the Krusty Krab,GC,2006,Platform,THQ,0.25,0.07,0,0.01,0.33 +My Baby: First Steps,DS,2009,Simulation,SouthPeak Games,0.28,0.03,0,0.02,0.33 +MLB 08: The Show,PSP,2008,Sports,Sony Computer Entertainment,0.3,0,0,0.02,0.33 +The Black Eyed Peas Experience,X360,2011,Misc,Ubisoft,0.2,0.1,0,0.03,0.33 +Parodius,PS,1994,Shooter,Konami Digital Entertainment,0,0,0.31,0.02,0.33 +Spy Kids 3-D: Game Over,GBA,2003,Platform,Disney Interactive Studios,0.24,0.09,0,0.01,0.33 +Sakura Wars 3: Paris wa Moeteiru ka,DC,2001,Adventure,Sega,0,0,0.33,0,0.33 +1001 Touch Games,DS,2011,Action,Avanquest,0.12,0.17,0,0.04,0.33 +NCAA GameBreaker 2001,PS,2000,Sports,Sony Computer Entertainment,0.18,0.12,0,0.02,0.33 +Power Rangers: Ninja Storm,GBA,2003,Misc,THQ,0.24,0.09,0,0.01,0.33 +Angry Birds Star Wars,PS3,2013,Strategy,Activision,0.1,0.17,0,0.06,0.33 +Naruto: Gekito Ninja Taisen! 4,GC,2005,Fighting,Tomy Corporation,0,0,0.32,0.01,0.33 +Kidou Senshi Gundam F91: Formula Senki 0122,SNES,1991,Strategy,Namco Bandai Games,0,0,0.33,0,0.33 +Despicable Me: The Game,Wii,2010,Platform,D3Publisher,0.19,0.12,0,0.03,0.33 +Golden Axe: Beast Rider,X360,2008,Action,Sega,0.19,0.11,0,0.03,0.33 +MySims SkyHeroes,DS,2010,Action,Electronic Arts,0.22,0.08,0,0.03,0.33 +MVP Baseball 2005,GC,2005,Sports,Electronic Arts,0.25,0.07,0,0.01,0.33 +Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten,DS,2007,Misc,Rocket Company,0,0,0.33,0,0.33 +"Carnival Games: Monkey See, Monkey Do!",X360,2011,Misc,Take-Two Interactive,0.14,0.16,0,0.03,0.33 +Eternal Sonata,X360,2007,Role-Playing,Atari,0.19,0.04,0.08,0.02,0.33 +DX Game of Life 2,PS,1997,Misc,Takara,0,0,0.31,0.02,0.33 +EA Playground,DS,2007,Sports,Electronic Arts,0.29,0.01,0,0.03,0.33 +NBA Live 96,PS,1996,Sports,Electronic Arts,0.16,0.11,0.04,0.02,0.33 +Clash of the Titans,PS3,2010,Action,Namco Bandai Games,0.09,0.16,0.01,0.06,0.33 +Folklore,PS3,2007,Role-Playing,Sony Computer Entertainment,0.2,0.05,0.05,0.03,0.33 +Dragon Ball Z: Extreme Butoden,3DS,2015,Fighting,Namco Bandai Games,0.12,0.03,0.16,0.02,0.33 +Samurai Warriors 2: Xtreme Legends (JP sales),PS2,2007,Action,Tecmo Koei,0,0,0.33,0,0.33 +Sniper Elite 3,XOne,2014,Shooter,505 Games,0.19,0.11,0,0.03,0.33 +Teen Titans,GC,2006,Action,THQ,0.25,0.07,0,0.01,0.33 +Dead Rising 2: Off the Record,PS3,2011,Action,Capcom,0.11,0.08,0.1,0.03,0.33 +Frogger II: Threeedeep!,2600,1983,Action,Parker Bros.,0.31,0.02,0,0,0.33 +Etrian Odyssey III: The Drowned City,DS,2010,Role-Playing,Atlus,0.13,0,0.19,0.01,0.33 +LEGO The Lord of the Rings,PSV,2012,Action,Warner Bros. Interactive Entertainment,0.1,0.15,0,0.07,0.33 +NBA Live 06,GC,2005,Sports,Electronic Arts,0.25,0.07,0,0.01,0.33 +Karaoke Revolution Presents American Idol Encore 2,Wii,2008,Misc,Konami Digital Entertainment,0.3,0,0,0.02,0.33 +Fireball,2600,1981,Action,Starpath Corp.,0.3,0.02,0,0,0.33 +Batman: Arkham Origins,WiiU,2013,Action,Warner Bros. Interactive Entertainment,0.2,0.09,0,0.03,0.33 +Discovery Kids: Puppy Playtime,DS,2009,Simulation,505 Games,0.3,0,0,0.02,0.33 +Dr. Mario / Puzzle League,GBA,2005,Puzzle,Nintendo,0.12,0.04,0.16,0.01,0.33 +Bleach: Shattered Blade,Wii,2006,Fighting,Sega,0.22,0.01,0.08,0.02,0.33 +Shin Nippon Pro Wrestling: Toukon Retsuden,PS,1995,Fighting,Tomy Corporation,0,0,0.3,0.02,0.33 +Major League Baseball 2K6,XB,2006,Sports,Take-Two Interactive,0.24,0.07,0,0.01,0.33 +Pinball Hall of Fame: The Gottlieb Collection,PS2,2004,Misc,Play It,0.16,0.12,0,0.04,0.33 +God of War Collection,PSV,2014,Action,Sony Computer Entertainment,0.14,0.1,0.01,0.07,0.33 +Dead Space 2,PC,2011,Shooter,Electronic Arts,0.13,0.15,0,0.05,0.33 +Def Jam Rapstar,PS3,2010,Misc,Konami Digital Entertainment,0.25,0.05,0,0.03,0.33 +Overlord II,X360,2009,Action,Codemasters,0.15,0.14,0,0.03,0.32 +NBA 2K10,PSP,2009,Sports,Take-Two Interactive,0.3,0,0,0.03,0.32 +J Stars Victory Vs.,PS3,2014,Fighting,Namco Bandai Games,0.04,0.06,0.2,0.02,0.32 +The Witcher: Enhanced Edition,PC,2008,Role-Playing,Atari,0.32,0.01,0,0,0.32 +Teenage Mutant Ninja Turtles 2: Battle Nexus,GBA,2004,Action,Konami Digital Entertainment,0.23,0.09,0,0.01,0.32 +Nicktoons: Movin',PS2,2004,Action,THQ,0.16,0.12,0,0.04,0.32 +One Piece: Romance Dawn - Bouken no Yoake,PSP,2012,Fighting,Namco Bandai Games,0,0,0.32,0,0.32 +Batman: Arkham Origins,PC,2013,Action,Warner Bros. Interactive Entertainment,0.13,0.16,0,0.04,0.32 +SWAT: Global Strike Team,PS2,2003,Shooter,Vivendi Games,0.16,0.12,0,0.04,0.32 +Championship Bass,PS,1999,Sports,Electronic Arts,0.18,0.12,0,0.02,0.32 +Resident Evil: Revelations 2,PS3,2015,Action,Capcom,0.06,0.08,0.16,0.03,0.32 +Test Drive Unlimited,X360,2006,Racing,Atari,0.23,0.04,0.02,0.03,0.32 +Golden Axe: Beast Rider,PS3,2008,Action,Sega,0.13,0.14,0,0.06,0.32 +Madden NFL 13,PSV,2012,Sports,Electronic Arts,0.3,0,0,0.03,0.32 +Bratz: Girlz Really Rock,DS,2008,Action,THQ,0.18,0.11,0,0.03,0.32 +NCAA Basketball 10,X360,2009,Sports,Electronic Arts,0.3,0,0,0.02,0.32 +Dead or Alive 5,X360,2012,Fighting,Ubisoft Annecy,0.19,0.08,0.03,0.02,0.32 +Shin Megami Tensei: Devil Survivor 2,DS,2011,Role-Playing,Ghostlight,0.17,0.01,0.12,0.01,0.32 +NHL Breakaway 98,N64,1998,Sports,Acclaim Entertainment,0.3,0.02,0,0,0.32 +Momotarou Dentetsu 20-Shuunen,DS,2008,Misc,Hudson Soft,0,0,0.32,0,0.32 +LEGO Marvel's Avengers,XOne,2016,Action,Warner Bros. Interactive Entertainment,0.18,0.11,0,0.03,0.32 +Tekken 6,PSP,2009,Fighting,Namco Bandai Games,0.15,0.04,0.1,0.03,0.32 +Kinetica,PS2,2001,Racing,Sony Computer Entertainment,0.16,0.12,0,0.04,0.32 +Beautiful Katamari,X360,2007,Puzzle,Namco Bandai Games,0.14,0.02,0.15,0.02,0.32 +Bust-A-Move '99,PS,1997,Puzzle,Acclaim Entertainment,0.18,0.12,0,0.02,0.32 +NBA Street V3,XB,2005,Sports,Electronic Arts,0.28,0.03,0,0.01,0.32 +Overlord II,PS3,2009,Action,Codemasters,0.11,0.15,0,0.06,0.32 +Dragon Quest Monsters 1?2,PS,2002,Role-Playing,Enix Corporation,0,0,0.3,0.02,0.32 +Army of Two: The 40th Day,PSP,2010,Shooter,Electronic Arts,0.12,0.13,0,0.08,0.32 +Ben 10 Ultimate Alien: Cosmic Destruction,DS,2010,Platform,D3Publisher,0.22,0.08,0,0.03,0.32 +Bigfoot: Collision Course,Wii,2008,Racing,Zoo Digital Publishing,0.3,0,0,0.02,0.32 +Batman: Arkham Asylum,PC,2009,Action,Eidos Interactive,0,0.27,0,0.05,0.32 +Crash of the Titans,X360,2007,Action,Vivendi Games,0.27,0.02,0,0.03,0.32 +The Legend of Spyro: Dawn of the Dragon,X360,2008,Platform,Vivendi Games,0.16,0.13,0,0.03,0.32 +Prey,X360,2006,Shooter,Take-Two Interactive,0.27,0.03,0,0.03,0.32 +Birthday Party Bash,Wii,2009,Misc,Take-Two Interactive,0.3,0,0,0.02,0.32 +OverBlood,PS,1996,Action,Electronic Arts,0.05,0.04,0.21,0.02,0.32 +ESPN X-Games Pro Boarder,PS,1997,Sports,Sony Computer Entertainment,0.18,0.12,0,0.02,0.32 +Murdered: Soul Suspect,PS4,2014,Action,Square Enix,0.09,0.16,0.02,0.05,0.32 +Tony Hawk's American Wasteland,X360,2005,Sports,Activision,0.28,0.02,0,0.03,0.32 +Harvest Moon: Back to Nature,PS,1999,Simulation,Ubisoft,0.11,0.07,0.12,0.02,0.32 +Sniper Elite 3,X360,2014,Shooter,505 Games,0.16,0.14,0,0.03,0.32 +Naruto: Ultimate Ninja (JP sales),PS2,2003,Fighting,Atari,0,0,0.32,0,0.32 +Final Fantasy XI,PS2,,Role-Playing,Unknown,0.08,0.06,0.15,0.02,0.32 +The Settlers 7: Paths to a Kingdom,PC,2010,Strategy,Ubisoft,0,0.26,0,0.06,0.32 +"Go, Diego, Go!: Great Dinosaur Rescue",PS2,2008,Action,Take-Two Interactive,0.16,0.12,0,0.04,0.32 +TrackMania Turbo,PS4,2016,Action,Ubisoft,0.03,0.24,0,0.05,0.32 +The Biggest Loser,DS,2009,Sports,THQ,0.18,0.11,0,0.03,0.32 +Minute to Win It,X360,2011,Misc,Zoo Games,0.3,0,0,0.02,0.32 +Darkwatch,PS2,2005,Shooter,Ubisoft,0.16,0.12,0,0.04,0.32 +Singularity,X360,,Shooter,Unknown,0.24,0.05,0,0.02,0.32 +Dance Dance Revolution Universe,X360,2007,Simulation,Konami Digital Entertainment,0.3,0,0,0.02,0.32 +SimAnimals,Wii,2009,Simulation,Electronic Arts,0.15,0.14,0,0.03,0.32 +Prince of Persia: The Sands of Time,GC,2003,Action,Ubisoft,0.25,0.06,0,0.01,0.32 +Sky Odyssey,PS2,2000,Simulation,Sony Computer Entertainment,0.16,0.12,0,0.04,0.32 +Nagano Winter Olympics 98,N64,1997,Sports,Konami Digital Entertainment,0.15,0.04,0.13,0,0.32 +Rayman 2: The Great Escape,PS,2000,Platform,Ubisoft,0.18,0.12,0,0.02,0.32 +Kirby's Block Ball,GB,1995,Puzzle,Nintendo,0,0,0.32,0,0.32 +DiRT Rally,PS4,2016,Racing,Codemasters,0.03,0.24,0,0.05,0.32 +Fortress,GBA,2001,Action,Majesco Entertainment,0.23,0.08,0,0.01,0.32 +FIFA 2001 Major League Soccer,PS,2000,Sports,Electronic Arts,0.18,0.12,0,0.02,0.32 +Peppa Pig: Theme Park Fun,DS,2011,Misc,P2 Games,0,0.28,0,0.04,0.32 +Rally Cross,PS,1997,Racing,Sony Computer Entertainment,0.18,0.12,0,0.02,0.32 +My Horse & Me,Wii,2007,Sports,Atari,0.27,0.02,0,0.03,0.32 +Frogger's Adventures: The Rescue,PS2,2003,Platform,Konami Digital Entertainment,0.16,0.12,0,0.04,0.32 +Extreme Pinball,PS,1995,Misc,Electronic Arts,0.18,0.12,0,0.02,0.32 +Shaun White Snowboarding,PSP,2008,Sports,Ubisoft,0.26,0.03,0,0.03,0.32 +Karaoke Revolution Volume 3,PS2,2004,Misc,Konami Digital Entertainment,0.16,0.12,0,0.04,0.32 +Gold's Gym: Cardio Workout (Others sales),Wii,2008,Sports,Ubisoft,0,0.3,0,0.02,0.32 +Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima,PS2,2001,Simulation,ASCII Entertainment,0,0,0.32,0,0.32 +Street Fighter Alpha 2,SAT,1995,Fighting,Virgin Interactive,0,0,0.32,0,0.32 +No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!,PS,1999,Sports,Konami Digital Entertainment,0,0,0.3,0.02,0.32 +Cartoon Network Collection: Game Boy Advance Video Platinum Edition,GBA,2005,Misc,,0.23,0.08,0,0.01,0.32 +Ultimate Fighting Championship: Throwdown,PS2,2002,Fighting,Ubisoft,0.16,0.12,0,0.04,0.32 +Marvel Nemesis: Rise of the Imperfects,PSP,2005,Fighting,Electronic Arts,0.29,0,0,0.03,0.32 +SpongeBob SquarePants: Double Pack,GBA,2005,Platform,THQ,0.23,0.08,0,0.01,0.32 +Tetris 2 + Bombliss,NES,1991,Puzzle,BPS,0,0,0.32,0,0.32 +Harry Potter and the Half-Blood Prince,X360,2009,Action,Electronic Arts,0.17,0.12,0,0.03,0.32 +Disney's Extreme Skate Adventure,PS2,2003,Sports,Activision,0.16,0.12,0,0.04,0.32 +Rock Band Country Track Pack,PS2,2009,Misc,MTV Games,0.16,0.12,0,0.04,0.32 +7 Wonders II,DS,2009,Puzzle,Rondomedia,0.14,0.15,0,0.03,0.32 +"Ed, Edd n Eddy: Jawbreakers!",GBA,2002,Adventure,BAM! Entertainment,0.23,0.08,0,0.01,0.32 +Dragster,2600,,Racing,Activision,0.3,0.02,0,0,0.32 +Frankenstein's Monster,2600,1982,Action,Data Age,0.3,0.02,0,0,0.32 +Riven: The Sequel to Myst,PS,1997,Adventure,Acclaim Entertainment,0.18,0.12,0,0.02,0.32 +Derby Stallion DS,DS,2008,Sports,Enterbrain,0,0,0.32,0,0.32 +Mirror's Edge Catalyst,PS4,2016,Platform,Electronic Arts,0.1,0.14,0.02,0.06,0.32 +Manhunt 2,PSP,2007,Action,Take-Two Interactive,0.04,0.18,0,0.1,0.32 +NBA 2K3,XB,2002,Sports,Sega,0.24,0.07,0,0.01,0.32 +Monster Lab,Wii,2008,Role-Playing,Eidos Interactive,0.28,0.02,0,0.02,0.32 +Dragon Quest Monsters: Battle Road Victory,Wii,2010,Strategy,Square Enix,0,0,0.32,0,0.32 +Shin Momotarou Densetsu,SNES,1993,Role-Playing,Hudson Soft,0,0,0.32,0,0.32 +From TV Animation One Piece: Grand Battle! 3,PS2,2003,Fighting,Namco Bandai Games,0,0,0.32,0,0.32 +Sega Smash Pack,GBA,2002,Misc,Atari,0.23,0.08,0,0.01,0.32 +All-Star Baseball 2005,PS2,,Sports,Unknown,0.16,0.12,0,0.04,0.32 +The Conveni: Ano Machi wo Dokusen Seyo,PS,1997,Simulation,Human Entertainment,0,0,0.3,0.02,0.32 +Shin Super Robot Taisen Special Disk,PS,1997,Strategy,Banpresto,0,0,0.3,0.02,0.32 +Live A Live,SNES,1994,Role-Playing,SquareSoft,0,0,0.32,0,0.32 +NFL Fever 2004,XB,2003,Sports,Microsoft Game Studios,0.24,0.07,0,0.01,0.32 +Madden NFL 2002,GBA,2001,Sports,Electronic Arts,0.23,0.08,0,0.01,0.32 +UEFA Euro 2008 Austria-Switzerland,PS2,2008,Sports,Electronic Arts,0.03,0,0,0.28,0.32 +Clive Barker's Jericho,X360,2007,Shooter,Codemasters,0.28,0.01,0,0.02,0.32 +Littlest Pet Shop: City Friends,DS,2009,Simulation,Electronic Arts,0.29,0,0,0.02,0.32 +Kingdom Under Fire: The Crusaders,XB,2004,Strategy,Deep Silver,0.24,0.07,0,0.01,0.32 +4x4 Evolution,PS2,2001,Racing,Gathering of Developers,0.16,0.12,0,0.04,0.32 +Cabela's Dangerous Hunts 2011,X360,2010,Sports,Activision,0.28,0.01,0,0.02,0.32 +Momotarou Dentetsu Happy,SNES,1996,Misc,Hudson Soft,0,0,0.32,0,0.32 +Power Rangers: Time Force,PS,2001,Action,THQ,0.18,0.12,0,0.02,0.32 +Romance of the Three Kingdoms VII,PS2,2000,Strategy,Tecmo Koei,0.08,0.06,0.16,0.02,0.32 +Shrek the Third,PSP,2007,Action,Activision,0.08,0.15,0,0.09,0.32 +Catherine,X360,2011,Adventure,Deep Silver,0.2,0.06,0.03,0.02,0.32 +BlazBlue: Continuum Shift,X360,2010,Fighting,PQube,0.23,0.04,0.02,0.02,0.32 +"Monsters, Inc.",PS2,2002,Adventure,Sony Computer Entertainment,0.15,0.12,0,0.04,0.32 +DJ Hero,PS2,2009,Misc,Activision,0.1,0.02,0,0.2,0.32 +WipEout Pulse,PSP,2007,Racing,Sony Computer Entertainment,0.13,0.12,0,0.06,0.32 +Quiz Magic Academy DS,DS,2008,Misc,Konami Digital Entertainment,0,0,0.32,0,0.32 +Just Dance 2016,XOne,2015,Misc,Ubisoft,0.24,0.04,0,0.03,0.32 +Resident Evil Archives: Resident Evil,Wii,2008,Action,Capcom,0.17,0.04,0.08,0.02,0.32 +Dynasty Warriors 4 Empires,PS2,2004,Action,Tecmo Koei,0,0,0.32,0,0.32 +Shenmue II,XB,2002,Adventure,Microsoft Game Studios,0.22,0.08,0,0.01,0.32 +Heart of Darkness,PS,1998,Platform,Ocean,0.18,0.12,0,0.02,0.32 +LEGO Marvel's Avengers,PS3,2016,Action,Warner Bros. Interactive Entertainment,0.1,0.17,0,0.05,0.32 +Virtua Striker 2,DC,1999,Sports,Sega,0,0,0.32,0,0.32 +Fable III,PC,2011,Role-Playing,Microsoft Game Studios,0.09,0.17,0,0.05,0.32 +Dragon Ball: XenoVerse,XOne,2015,Fighting,Namco Bandai Games,0.18,0.11,0,0.03,0.31 +Might & Magic Heroes VI,PC,2011,Role-Playing,Ubisoft,0.12,0.14,0,0.05,0.31 +Fuel,X360,2009,Racing,Codemasters,0.09,0.19,0,0.04,0.31 +ExerBeat,Wii,2010,Sports,Namco Bandai Games,0.1,0.18,0,0.03,0.31 +WarCraft II: The Dark Saga,PS,1997,Strategy,Electronic Arts,0.18,0.12,0,0.02,0.31 +MonHun Nikki: Poka Poka Ailu Mura G,PSP,2011,Role-Playing,Capcom,0,0,0.31,0,0.31 +Crash Nitro Kart,XB,2003,Racing,Vivendi Games,0.24,0.07,0,0.01,0.31 +Sesame Street: Cookie's Counting Carnival,Wii,2010,Misc,Warner Bros. Interactive Entertainment,0.29,0,0,0.02,0.31 +NBA ShootOut,PS,1995,Sports,Sony Computer Entertainment,0.17,0.12,0,0.02,0.31 +Fishing Master,Wii,2007,Misc,Konami Digital Entertainment,0.29,0,0,0.02,0.31 +Phineas and Ferb Ride Again,DS,2010,Action,Disney Interactive Studios,0.25,0.04,0,0.02,0.31 +Jikkyou Powerful Pro Yakyuu 14,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.31,0,0.31 +Contra 4,DS,2007,Shooter,Konami Digital Entertainment,0.28,0,0.01,0.02,0.31 +Madden NFL 2004,GBA,2003,Sports,Electronic Arts,0.22,0.08,0,0.01,0.31 +Sniper Elite 3,PS3,2014,Shooter,505 Games,0.1,0.15,0,0.06,0.31 +Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu,SNES,1995,Platform,Konami Digital Entertainment,0,0,0.31,0,0.31 +Bust-A-Move Universe,3DS,2011,Puzzle,Square Enix,0.08,0.15,0.06,0.03,0.31 +Mario Golf,GB,1999,Action,Nintendo,0,0,0.31,0,0.31 +Jikkyou Powerful Pro Yakyuu Portable 3,PSP,2008,Sports,Konami Digital Entertainment,0,0,0.31,0,0.31 +Sesame Street: Elmo's Letter Adventure,PS,1998,Misc,NewKidCo,0.17,0.12,0,0.02,0.31 +The Incredible Hulk,Wii,2008,Action,Sega,0.28,0.01,0,0.02,0.31 +Namco Museum: Virtual Arcade,X360,2008,Misc,Atari,0.27,0.01,0.01,0.02,0.31 +NBA Inside Drive 2003,XB,2002,Sports,Microsoft Game Studios,0.23,0.07,0,0.01,0.31 +FIFA Street,PS2,2005,Sports,Electronic Arts,0.15,0.12,0,0.04,0.31 +Barbie as The Island Princess,DS,2007,Adventure,Activision,0.28,0.01,0,0.02,0.31 +Star Wars Episode III: Revenge of the Sith,DS,2005,Action,Ubisoft,0.25,0.03,0,0.03,0.31 +Hatsune Miku: Project Mirai DX,3DS,2015,Misc,Sega,0.15,0.04,0.1,0.02,0.31 +Dragon Ball Heroes: Ultimate Mission 2,3DS,2014,Strategy,Namco Bandai Games,0,0,0.31,0,0.31 +Shrek: Forever After,DS,2010,Platform,Activision,0.19,0.1,0,0.03,0.31 +MLB 07: The Show,PS3,2007,Sports,Sony Computer Entertainment,0.29,0,0,0.02,0.31 +Homefront: The Revolution,PS4,2016,Shooter,Deep Silver,0.05,0.19,0.03,0.04,0.31 +Jampack: Summer 2003 (RP-M),PS2,2003,Misc,Sony Computer Entertainment,0.15,0.12,0,0.04,0.31 +Alone in the Dark: One-Eyed Jack's Revenge,PS,1996,Adventure,Infogrames,0.17,0.12,0,0.02,0.31 +Yu-Gi-Oh! The Dawn of Destiny,XB,2004,Strategy,Konami Digital Entertainment,0.23,0.07,0,0.01,0.31 +The Matrix: Path of Neo,XB,2005,Action,Atari,0.23,0.07,0,0.01,0.31 +Mortal Kombat: Shaolin Monks,XB,2005,Action,Midway Games,0.23,0.07,0,0.01,0.31 +Happy Feet,DS,2006,Action,Midway Games,0.27,0.01,0,0.02,0.31 +Einh?nder,PS,1997,Shooter,SquareSoft,0.1,0.07,0.13,0.02,0.31 +Tiny Toon Adventures: The Great Beanstalk,PS,1998,Misc,Sony Computer Entertainment,0.17,0.12,0,0.02,0.31 +Foto Frenzy: Spot The Diffrence,DS,2009,Puzzle,Storm City Games,0.29,0,0,0.02,0.31 +Metro: Last Light,XOne,2014,Action,Deep Silver,0.15,0.13,0,0.03,0.31 +Dark Void,X360,2010,Action,Capcom,0.19,0.09,0,0.03,0.31 +Pro Evolution Soccer 2013,X360,2012,Sports,Konami Digital Entertainment,0.08,0.2,0,0.03,0.31 +Armored Core: Silent Line,PS2,2003,Simulation,Agetec,0.07,0.06,0.16,0.02,0.31 +SD Gundam G Generation Wars,PS2,2009,Strategy,Namco Bandai Games,0,0,0.31,0,0.31 +Dr. Seuss: How the Grinch Stole Christmas,DS,2007,Action,CokeM Interactive,0.29,0,0,0.02,0.31 +Panzer Dragoon II Zwei,SAT,1995,Shooter,Sega,0,0,0.31,0,0.31 +KISS Pinball,PS,2001,Action,Take-Two Interactive,0.17,0.12,0,0.02,0.31 +Brothers In Arms: Earned in Blood,XB,2005,Shooter,Ubisoft,0.23,0.07,0,0.01,0.31 +2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2,GBA,2005,Action,THQ,0.22,0.08,0,0.01,0.31 +Super Robot Taisen Complete Box,PS,1999,Strategy,Banpresto,0,0,0.29,0.02,0.31 +Mega Man Maverick Hunter X,PSP,2005,Platform,Capcom,0.27,0.01,0,0.03,0.31 +Cabela's Outdoor Adventures (2009),Wii,2009,Sports,Activision Value,0.29,0,0,0.02,0.31 +Lord of Arcana,PSP,2010,Role-Playing,Square Enix,0.07,0.04,0.17,0.03,0.31 +Jikkyou Powerful Pro Yakyuu 4,N64,1997,Sports,Konami Digital Entertainment,0,0,0.26,0.05,0.31 +Goemon's Great Adventure,N64,1998,Platform,Konami Digital Entertainment,0.06,0.02,0.13,0.1,0.31 +Hot Wheels Turbo Racing,N64,1999,Racing,Electronic Arts,0.25,0.06,0,0,0.31 +Vigilante 8,N64,1998,Racing,Activision,0.25,0.06,0,0,0.31 +Bass Hunter 64,N64,1999,Sports,Take-Two Interactive,0.25,0.06,0,0,0.31 +Doubutsu no Mori,N64,2001,Simulation,Nintendo,0,0,0.26,0.05,0.31 +Football Manager 2016,PC,2015,Simulation,Sega,0,0.29,0,0.02,0.31 +Naruto: Ninja Destiny (US sales),DS,2006,Fighting,Namco Bandai Games,0.31,0,0,0,0.31 +TRON: Evolution,X360,2010,Action,Disney Interactive Studios,0.24,0.05,0,0.02,0.31 +Disney Infinity 3.0,XOne,2015,Action,Disney Interactive Studios,0.18,0.1,0,0.03,0.31 +Taiko Drum Master: Don and Katsu's Space-Time Great Adventure,3DS,2014,Action,Namco Bandai Games,0,0,0.31,0,0.31 +Calvin Tucker's Redneck Jamboree,Wii,2008,Misc,Zoo Games,0.29,0,0,0.02,0.31 +MySims SkyHeroes,Wii,2010,Action,Electronic Arts,0.18,0.1,0,0.03,0.31 +J-League Winning Eleven 2007: Club Championship,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.31,0,0.31 +Shrek's Carnival Craze Party Games,Wii,2008,Misc,Activision,0.28,0,0,0.02,0.31 +Harvest Moon: Magical Melody,Wii,2008,Simulation,Rising Star Games,0.25,0.04,0,0.03,0.31 +Star Wars Jedi Knight II: Jedi Outcast,XB,,Shooter,Activision,0.23,0.07,0,0.01,0.31 +Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia,DS,2010,Strategy,Konami Digital Entertainment,0.18,0.02,0.09,0.02,0.31 +Mega Man Battle Network 2,GBA,2002,Action,Ubisoft,0.22,0.08,0,0.01,0.31 +Little King's Story,Wii,2009,Strategy,Rising Star Games,0.15,0.11,0.02,0.02,0.31 +Mountain King,2600,1982,Action,CBS Electronics,0.29,0.02,0,0,0.31 +Jampack Volume 12,PS2,2005,Misc,Sony Computer Entertainment,0.15,0.12,0,0.04,0.31 +Madagascar,DS,2005,Platform,Activision,0.25,0.04,0,0.03,0.31 +Tiger Woods PGA Tour 06,X360,2005,Sports,Electronic Arts,0.28,0,0,0.02,0.31 +Shaun White Snowboarding,PS2,2008,Sports,Ubisoft,0.15,0.12,0,0.04,0.31 +Shin Megami Tensei: Devil Summoner - Soul Hackers,SAT,1997,Role-Playing,Atlus,0,0,0.31,0,0.31 +Major League Baseball 2K8,PS3,2008,Sports,Bethesda Softworks,0.28,0,0,0.02,0.31 +Rapala Pro Bass Fishing 2010,Wii,2010,Sports,Activision,0.23,0.05,0,0.02,0.31 +Lord of the Rings: Battle for Middle-Earth,X360,2006,Strategy,Electronic Arts,0.28,0,0,0.02,0.31 +Demolition Racer,PS,1998,Racing,Infogrames,0.17,0.12,0,0.02,0.31 +Midway Arcade Treasures 2,XB,2004,Misc,Midway Games,0.24,0.05,0,0.01,0.31 +Final Fantasy IV,PS,1997,Simulation,SquareSoft,0,0,0.29,0.02,0.31 +Math Play,DS,2006,Puzzle,Ubisoft,0.28,0,0,0.02,0.31 +Kingdoms of Amalur: Reckoning,PC,2012,Role-Playing,Electronic Arts,0.14,0.13,0,0.04,0.31 +NASCAR Thunder 2003,GC,2002,Racing,Electronic Arts,0.24,0.06,0,0.01,0.31 +SD Gundam G Generation: Overworld,PSP,2012,Strategy,Namco Bandai Games,0,0,0.31,0,0.31 +Sorcery,PS3,2012,Action,Sony Computer Entertainment,0.14,0.12,0,0.05,0.31 +TouchMaster: Connect,DS,2010,Puzzle,Warner Bros. Interactive Entertainment,0.11,0.17,0,0.03,0.31 +NHL FaceOff 2000,PS,1998,Sports,Sony Computer Entertainment,0.17,0.12,0,0.02,0.31 +Star Wars Racer Revenge,PS2,2002,Racing,LucasArts,0.15,0.12,0,0.04,0.31 +NBA Live 08,PSP,2007,Sports,Electronic Arts,0.28,0,0,0.02,0.31 +The King of Fighters XIII,PS3,2011,Fighting,Rising Star Games,0.17,0.07,0.04,0.03,0.31 +NCAA Final Four 2002,PS2,2001,Sports,Sony Computer Entertainment,0.15,0.12,0,0.04,0.31 +South Park: Chef's Luv Shack,PS,1998,Misc,Acclaim Entertainment,0.17,0.12,0,0.02,0.31 +Music Maker,PS2,2001,Misc,Magix,0.15,0.12,0,0.04,0.31 +Slot Machine,2600,,Action,Atari,0.29,0.02,0,0,0.31 +Ganbare Goemon 2: Kiteretsu Shougun Magginesu,SNES,1993,Platform,Konami Digital Entertainment,0,0,0.31,0,0.31 +Astroblast,2600,1981,Action,Mattel Interactive,0.29,0.02,0,0,0.31 +Blade II,PS2,2002,Action,Activision,0.15,0.12,0,0.04,0.31 +40 Winks,PS,1999,Platform,GT Interactive,0.17,0.12,0,0.02,0.31 +The Legend of Heroes: Trails of Cold Steel,PSV,2013,Role-Playing,Nippon Ichi Software,0.08,0.05,0.14,0.04,0.31 +Fate/Extra,PSP,2010,Role-Playing,Marvelous Interactive,0.18,0.01,0.1,0.02,0.31 +Shaun White Snowboarding: World Stage,Wii,2009,Sports,Ubisoft,0.25,0.04,0,0.02,0.31 +My Virtual Tutor: Reading Adventure Pre-K to Kindergarten,DS,2009,Misc,Mentor Interactive,0.29,0,0,0.02,0.31 +Skylanders SWAP Force,XOne,2013,Platform,Activision,0.22,0.06,0,0.02,0.31 +A Collection of Classic Games from the Intellivision,PS,1999,Misc,Activision,0.17,0.12,0,0.02,0.31 +Monsters vs. Aliens,PS3,2009,Action,Activision,0.21,0.06,0,0.03,0.31 +Silent Hill: Shattered Memories,PSP,2010,Action,Konami Digital Entertainment,0.09,0.13,0.01,0.08,0.31 +Bruce Lee: Quest of the Dragon,XB,2002,Fighting,Universal Interactive,0.23,0.07,0,0.01,0.31 +Spin Jam,PS,2000,Puzzle,Empire Interactive,0.17,0.12,0,0.02,0.31 +KuruKuru Kururin,GBA,2001,Puzzle,Nintendo,0,0,0.3,0.01,0.31 +Disney's The Emperor's New Groove,PS,2000,Platform,Sony Computer Entertainment,0.17,0.12,0,0.02,0.31 +Disney's Stitch: Experiment 626,PS2,2002,Action,Sony Computer Entertainment,0.15,0.12,0,0.04,0.31 +RPG Tsukuru 2,SNES,1996,Role-Playing,ASCII Entertainment,0,0,0.31,0,0.31 +Yuu Yuu Hakusho 2: Kakutou no Sho,SNES,1994,Fighting,Namco Bandai Games,0,0,0.31,0,0.31 +Orphen: Scion of Sorcery,PS2,2000,Role-Playing,Activision,0.15,0.12,0,0.04,0.31 +LEGO Legends of Chima: Laval's Journey,3DS,2013,Adventure,Warner Bros. Interactive Entertainment,0.18,0.1,0,0.03,0.31 +Imagine: Family Doctor,DS,2009,Simulation,Ubisoft,0.28,0.01,0,0.02,0.3 +Magna Carta 2,X360,2009,Role-Playing,Banpresto,0.13,0.08,0.07,0.02,0.3 +Ultimate Spider-Man,GBA,2005,Action,Activision,0.22,0.08,0,0.01,0.3 +Nicktoons: Battle for Volcano Island,DS,2006,Action,THQ,0.28,0,0,0.02,0.3 +Midtown Madness 3,XB,2003,Racing,Microsoft Game Studios,0.23,0.07,0,0.01,0.3 +Shrek Swamp Kart Speedway,GBA,2002,Racing,TDK Mediactive,0.22,0.08,0,0.01,0.3 +One Piece: Unlimited World Red,PS3,2014,Action,Namco Bandai Games,0.09,0.12,0.06,0.05,0.3 +Alien: Isolation,X360,2014,Shooter,Sega,0.15,0.13,0,0.03,0.3 +Gameboy Gallery,GB,1995,Misc,Nintendo,0,0,0.3,0,0.3 +Virtua Cop 2,SAT,1996,Shooter,Sega,0,0,0.3,0,0.3 +Ehrgeiz,PS,1998,Fighting,SquareSoft,0.17,0.12,0,0.02,0.3 +Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable,PSP,2005,Misc,Sega,0,0,0.3,0,0.3 +Karaoke Revolution Glee: Volume 3,Wii,2011,Misc,Konami Digital Entertainment,0.24,0.04,0,0.02,0.3 +Spyro: Attack of the Rhynocs,GBA,2003,Platform,Universal Interactive,0.22,0.08,0,0.01,0.3 +"Army Men World War: Land, Sea, Air",PS,2000,Action,3DO,0.17,0.12,0,0.02,0.3 +Dai-2-Ji Super Robot Taisen OG,PS3,2012,Strategy,Namco Bandai Games,0,0,0.3,0,0.3 +Stranglehold,PS3,2007,Shooter,Midway Games,0.24,0.03,0,0.03,0.3 +Trauma Center: New Blood,Wii,2007,Simulation,Nintendo,0.22,0.04,0.01,0.03,0.3 +Shrek the Third,DS,,Action,Activision,0.26,0.02,0,0.02,0.3 +Lumines ll,PSP,2006,Puzzle,Disney Interactive Studios,0.12,0.12,0,0.07,0.3 +NES Remix,WiiU,2014,Action,Nintendo,0.2,0,0.08,0.02,0.3 +1701 A.D.,PC,2006,Simulation,Deep Silver,0,0.25,0,0.05,0.3 +Jumping Flash!,PS,1995,Platform,Sony Computer Entertainment,0.05,0.03,0.21,0.02,0.3 +Karaoke Revolution Party,PS2,2005,Misc,Konami Digital Entertainment,0.15,0.12,0,0.04,0.3 +Batman: The Brave and the Bold the Videogame,DS,2010,Action,Warner Bros. Interactive Entertainment,0.24,0.04,0,0.02,0.3 +Burnout,GC,2002,Racing,Acclaim Entertainment,0.23,0.06,0,0.01,0.3 +Lizzie McGuire 3: Homecoming Havoc,GBA,2005,Platform,Disney Interactive Studios,0.22,0.08,0,0.01,0.3 +Chaos Legion,PS2,2003,Action,Capcom,0.15,0.12,0,0.04,0.3 +PowerUp Heroes,X360,2011,Fighting,Ubisoft,0.18,0.1,0,0.03,0.3 +NASCAR 2011: The Game,X360,2011,Racing,Activision,0.29,0,0,0.02,0.3 +Puyo Puyo 7,DS,2009,Puzzle,Sega,0,0,0.3,0,0.3 +Shrek: Forever After,Wii,2010,Platform,Activision,0.19,0.09,0,0.03,0.3 +Charlie and the Chocolate Factory,GBA,2005,Adventure,Global Star,0.22,0.08,0,0.01,0.3 +Neopets: The Darkest Faerie,PS2,2005,Adventure,Sony Computer Entertainment,0.15,0.12,0,0.04,0.3 +Blazing Heroes,SAT,1995,Role-Playing,Sega,0,0,0.3,0,0.3 +Rhythm Tengoku,GBA,2006,Misc,Nintendo,0,0,0.3,0.01,0.3 +Super Robot Taisen W,DS,2007,Strategy,Banpresto,0,0,0.3,0,0.3 +Cart World Series,PS,1997,Racing,Sony Computer Entertainment,0.17,0.11,0,0.02,0.3 +Invizimals: Shadow Zone,PSP,2010,Strategy,Sony Computer Entertainment,0.05,0.16,0,0.08,0.3 +24: The Game,PS2,2006,Adventure,Sony Computer Entertainment,0.15,0.12,0,0.04,0.3 +Spider-Man 3,PSP,2007,Platform,Activision,0.01,0.23,0,0.06,0.3 +The Dukes of Hazzard II: Daisy Dukes It Out,PS,,Racing,Unknown,0.17,0.11,0,0.02,0.3 +Famista '91,NES,1990,Sports,Namco Bandai Games,0,0,0.3,0,0.3 +Squinkies,DS,2011,Misc,Activision,0.27,0.02,0,0.02,0.3 +Zoo Tycoon 2 DS,DS,2008,Strategy,THQ,0.24,0.03,0,0.02,0.3 +Looney Tunes: Duck Amuck,DS,2007,Action,Warner Bros. Interactive Entertainment,0.28,0,0,0.02,0.3 +Super Robot Taisen OG: Original Generations Gaiden,PS2,2007,Strategy,Banpresto,0,0,0.3,0,0.3 +Drakengard 3,PS3,2013,Role-Playing,Square Enix,0.1,0,0.19,0.02,0.3 +Decathlete,SAT,1994,Sports,Sega,0,0,0.3,0,0.3 +The Sims 2,PC,2004,Simulation,Electronic Arts,0.02,0.24,0,0.05,0.3 +Disgaea 3: Absence of Detention,PSV,,Role-Playing,Nippon Ichi Software,0.13,0.06,0.07,0.04,0.3 +Tom Clancy's Splinter Cell 3D,3DS,2011,Action,Ubisoft,0.14,0.07,0.07,0.02,0.3 +DmC: Devil May Cry,PS4,2015,Action,Capcom,0.12,0.13,0,0.05,0.3 +Jonas,DS,2009,Adventure,Disney Interactive Studios,0.28,0,0,0.02,0.3 +Dynasty Warriors 6,X360,2007,Action,Tecmo Koei,0.15,0.06,0.06,0.02,0.3 +Wacky Races: Crash & Dash,Wii,2008,Racing,Eidos Interactive,0.27,0.01,0,0.02,0.3 +Dynasty Warriors 8: Xtreme Legends,PS4,2014,Action,Tecmo Koei,0.09,0.11,0.06,0.04,0.3 +Toukiden Kiwami,PSV,2014,Action,Tecmo Koei,0.05,0.05,0.17,0.03,0.3 +Sengoku Basara: Samurai Heroes,Wii,2010,Action,Capcom,0.08,0.02,0.2,0.01,0.3 +Romance of the Three Kingdoms VIII,PS2,2002,Strategy,Tecmo Koei,0.05,0.04,0.19,0.01,0.3 +Fossil Fighters (JP sales),DS,2008,Role-Playing,Nintendo,0,0,0.3,0,0.3 +Daikaijyuu Monogatari,SNES,1994,Role-Playing,Hudson Soft,0,0,0.3,0,0.3 +Tropico 5,PS4,2015,Simulation,Kalypso Media,0.05,0.16,0.05,0.04,0.3 +Hard Hitter Tennis,PS2,2001,Sports,Midas Interactive Entertainment,0.15,0.11,0,0.04,0.3 +Glory of Heracles,DS,2008,Role-Playing,Nintendo,0.2,0,0.08,0.01,0.3 +Monster Truck Madness 64,N64,1999,Racing,Take-Two Interactive,0.24,0.06,0,0,0.3 +Quake II,N64,1999,Shooter,Activision,0.24,0.06,0,0,0.3 +Nounai Aeshe: IQ Suppli DS,DS,2006,Misc,Spike,0,0,0.3,0,0.3 +Crazy Taxi: Catch a Ride,GBA,2003,Racing,THQ,0.21,0.08,0,0.01,0.3 +MySims Party,DS,2009,Simulation,Electronic Arts,0.15,0.12,0,0.03,0.3 +Harry Potter and the Order of the Phoenix,X360,2007,Action,Electronic Arts,0.24,0.04,0,0.02,0.3 +Skylanders: SuperChargers,PS4,2015,Action,Activision,0.17,0.08,0,0.05,0.3 +Macross Digital Mission VF-X,PS,1997,Simulation,Namco Bandai Games,0,0,0.28,0.02,0.3 +One Piece Unlimited Cruise SP,3DS,2011,Action,Namco Bandai Games,0,0,0.3,0,0.3 +Rayman 2: Revolution,PS2,2000,Platform,Ubisoft,0.15,0.11,0,0.04,0.3 +Yu Yu Hakusho Ghost Files: Spirit Detective,GBA,2003,Action,Atari,0.21,0.08,0,0.01,0.3 +Super Bomberman 5,SNES,1997,Puzzle,Hudson Soft,0,0,0.3,0,0.3 +N3: Ninety-Nine Nights,X360,2006,Action,Microsoft Game Studios,0.2,0.03,0.05,0.02,0.3 +Shin Megami Tensei: Persona 2: Innocent Sin,PSP,2011,Role-Playing,Atlus,0.13,0.03,0.11,0.03,0.3 +Army Men: Air Attack 2,PS,2000,Action,3DO,0.17,0.11,0,0.02,0.3 +Need for Speed: Most Wanted,PC,2005,Racing,Electronic Arts,0.02,0.23,0,0.05,0.3 +NBA Live 2003,GC,,Sports,Electronic Arts,0.23,0.06,0,0.01,0.3 +Pride FC: Fighting Championships,PS2,2003,Fighting,THQ,0.15,0.11,0,0.04,0.3 +Eternal Ring,PS2,2000,Role-Playing,Ubisoft,0.1,0.07,0.1,0.03,0.3 +Dragon Force,SAT,1996,Strategy,Sega,0,0,0.3,0,0.3 +John Deere: Harvest in the Heartland,DS,2007,Simulation,Ubisoft,0.23,0.04,0,0.02,0.3 +Rabbids: Alive & Kicking,X360,2011,Misc,Ubisoft,0.15,0.12,0,0.03,0.3 +Shin Megami Tensei: Devil Summoner - Soul Hackers,3DS,2012,Role-Playing,Atlus,0.13,0.02,0.14,0.01,0.3 +Winning Post 2,SNES,1995,Sports,Tecmo Koei,0,0,0.3,0,0.3 +Star Gladiator Episode: I Final Crusade,PS,1996,Fighting,Virgin Interactive,0.07,0.05,0.15,0.02,0.3 +Spider-Man: Friend or Foe,X360,2007,Action,Activision,0.26,0.02,0,0.02,0.3 +FIFA 15,PC,2014,Sports,Electronic Arts,0,0.27,0,0.03,0.3 +Dance Dance Revolution Universe 3,X360,2008,Simulation,Konami Digital Entertainment,0.28,0,0,0.02,0.3 +Harvest Moon: The Tale of Two Towns,3DS,,Simulation,Unknown,0.28,0,0,0.02,0.3 +We Sing Pop!,Wii,2012,Misc,Nordic Games,0.08,0.19,0,0.03,0.3 +Showdown: Legends of Wrestling,PS2,2004,Fighting,Acclaim Entertainment,0.15,0.11,0,0.04,0.3 +Capcom Classics Collection Remixed,PSP,2006,Misc,Capcom,0.27,0,0,0.03,0.3 +Reel Fishing: Angler's Dream,Wii,2009,Sports,Zushi Games,0.26,0.01,0,0.02,0.3 +Call of Duty: Modern Warfare 3: Defiance,DS,2011,Shooter,Activision,0.21,0.07,0,0.02,0.3 +SimCity 4,PC,2003,Simulation,Electronic Arts,0.01,0.24,0,0.05,0.3 +Far East of Eden Zero,SNES,1995,Role-Playing,Hudson Soft,0,0,0.3,0,0.3 +Sword Art Online: Hollow Fragment,PSV,2014,Role-Playing,Namco Bandai Games,0,0,0.3,0,0.3 +Star Ocean 5: Integrity and Faithlessness,PS4,2016,Role-Playing,Square Enix,0.06,0.07,0.14,0.02,0.3 +Call of Juarez: The Cartel,PS3,2011,Shooter,Ubisoft,0.12,0.13,0,0.05,0.3 +Full Spectrum Warrior,PS2,2005,Strategy,THQ,0.15,0.11,0,0.04,0.3 +Alvin and the Chipmunks: The Squeakquel,DS,2009,Misc,Majesco Entertainment,0.28,0,0,0.02,0.3 +Taiko no Tatsujin Wii: Minna de Party * 3-Yome!,Wii,2010,Misc,Namco Bandai Games,0,0,0.3,0,0.3 +James Bond 007: Legends,X360,2012,Shooter,Activision,0.13,0.14,0,0.03,0.3 +The Sims 2: Pets,PS2,2006,Simulation,Electronic Arts,0.02,0.01,0,0.27,0.3 +Dragon Quest Builders: Revive Alefgard,PSV,2016,Role-Playing,Square Enix,0,0,0.3,0,0.3 +The Suite Life of Zack & Cody: Circle of Spies,DS,2007,Action,Disney Interactive Studios,0.17,0.09,0,0.03,0.3 +Power Pro Kun Pocket 6,GBA,2003,Sports,Konami Digital Entertainment,0,0,0.29,0.01,0.3 +Mega Man ZX,DS,2006,Platform,Capcom,0.18,0,0.1,0.02,0.3 +Harvest Moon DS Cute (US sales),DS,2005,Simulation,Marvelous Interactive,0.3,0,0,0,0.3 +Power Pro Kun Pocket 10,DS,2007,Sports,Konami Digital Entertainment,0,0,0.3,0,0.3 +Wanted: Weapons of Fate,PS3,2009,Shooter,Warner Bros. Interactive Entertainment,0.14,0.1,0.01,0.05,0.3 +Finding Nemo: The Continuing Adventures,GBA,2004,Action,THQ,0.21,0.08,0,0.01,0.3 +Spirit: Stallion of the Cimarron,GBA,2002,Platform,THQ,0.21,0.08,0,0.01,0.3 +Dreamworks Madagascar Kartz,PS3,2009,Racing,Activision,0.19,0.07,0,0.04,0.3 +Future Cop L.A.P.D.,PS,1997,Simulation,Electronic Arts,0.16,0.11,0,0.02,0.3 +Guitar Hero: Van Halen,X360,2009,Misc,Activision,0.16,0.1,0,0.03,0.3 +Final Fantasy XI: Wings of the Goddess,X360,2007,Role-Playing,Square Enix,0.25,0,0.02,0.02,0.3 +Hamster Tarou,GB,1999,Simulation,Jorudan,0,0,0.3,0,0.3 +Shark Tale,GC,2004,Action,Activision,0.23,0.06,0,0.01,0.3 +Fist of the North Star: Ken's Rage 2,PS3,2012,Fighting,Tecmo Koei,0,0,0.3,0,0.3 +MLB SlugFest Loaded,PS2,2004,Sports,Midway Games,0.14,0.11,0,0.04,0.3 +Teenage Mutant Ninja Turtles,XB,2003,Action,Konami Digital Entertainment,0.22,0.06,0,0.01,0.3 +Trace Memory,DS,2005,Adventure,Nintendo,0.15,0.01,0.12,0.01,0.3 +FIFA Street 3,X360,2008,Sports,Electronic Arts,0.12,0.14,0,0.03,0.3 +Mah Jong Quest: Expeditions,DS,2007,Puzzle,Avanquest,0.02,0.26,0,0.01,0.3 +Batman: The Brave and the Bold the Videogame,Wii,2010,Action,Warner Bros. Interactive Entertainment,0.22,0.06,0,0.02,0.3 +Dragon Ball Z: Budokai Tenkaichi 2,Wii,2006,Fighting,Atari,0.24,0.03,0,0.02,0.3 +AMF Bowling 2004,XB,2003,Sports,Mud Duck Productions,0.22,0.06,0,0.01,0.3 +Thief (2014),X360,2014,Action,Square Enix,0.14,0.13,0,0.03,0.3 +Scooby-Doo! Night of 100 Frights,GC,2002,Platform,THQ,0.23,0.06,0,0.01,0.3 +Just Dance Kids 2,Wii,2011,Misc,Ubisoft,0.28,0,0,0.02,0.29 +RealSports Boxing,2600,1986,Sports,Atari,0.28,0.02,0,0,0.29 +Imagine: Makeup Artist,DS,2020,Simulation,Ubisoft,0.27,0,0,0.02,0.29 +Grandia II,PS2,2002,Role-Playing,Ubisoft,0.14,0.11,0,0.04,0.29 +Syphon Filter: Dark Mirror,PSP,2006,Shooter,Sony Computer Entertainment,0.26,0.01,0,0.03,0.29 +Front Mission Evolved,PS3,2010,Shooter,Square Enix,0.09,0.07,0.11,0.03,0.29 +Tom and Jerry Tales,DS,2006,Platform,Warner Bros. Interactive Entertainment,0.21,0.06,0,0.02,0.29 +Mini Ninjas,X360,2009,Action,Eidos Interactive,0.12,0.14,0,0.03,0.29 +NieR,X360,2010,Role-Playing,Square Enix,0.13,0.1,0.04,0.02,0.29 +The BIGS 2,Wii,2009,Sports,Take-Two Interactive,0.26,0.01,0,0.02,0.29 +X-Men Legends II: Rise of Apocalypse,PSP,2005,Role-Playing,Activision,0.25,0.01,0,0.03,0.29 +Junior Brain Trainer 2,DS,2010,Misc,GSP,0.04,0.21,0,0.04,0.29 +The Chronicles of Riddick: Assault on Dark Athena,X360,2009,Shooter,Atari,0.16,0.1,0,0.03,0.29 +Need for Speed Underground,GBA,2003,Racing,Electronic Arts,0.21,0.08,0,0.01,0.29 +Power Pro Kun Pocket 4,GBA,2002,Sports,Konami Digital Entertainment,0,0,0.29,0.01,0.29 +The Godfather: Dons Edition,PS3,2007,Action,Electronic Arts,0.25,0.02,0,0.03,0.29 +Soul Sacrifice Delta,PSV,2014,Action,Sony Computer Entertainment,0.01,0.12,0.12,0.04,0.29 +Guardian Heroes,SAT,1995,Role-Playing,Sega,0,0,0.29,0,0.29 +Assassin's Creed IV: Black Flag,WiiU,2013,Action,Ubisoft,0.18,0.09,0,0.03,0.29 +MLB Power Pros,Wii,2007,Sports,Konami Digital Entertainment,0.23,0,0.04,0.02,0.29 +Outlaw Golf,XB,2002,Sports,TDK Mediactive,0.22,0.06,0,0.01,0.29 +The Amazing Spider-Man 2 (2014),PS3,2014,Action,Activision,0.06,0.16,0.02,0.05,0.29 +Dynasty Warriors: Strikeforce,PS3,2009,Action,Tecmo Koei,0.11,0.08,0.07,0.03,0.29 +Fisherman's Bait 2: Big Ol' Bass,PS,1999,Sports,Konami Digital Entertainment,0.16,0.11,0,0.02,0.29 +Lupin the 3rd: Treasure of the Sorcerer King,PS2,2002,Adventure,505 Games,0.02,0.02,0.25,0.01,0.29 +Up,X360,2009,Action,THQ,0.2,0.07,0,0.03,0.29 +Kurohyou: Ryu ga Gotoku Shinshou,PSP,2010,Adventure,Sega,0,0,0.29,0,0.29 +Prince of Persia: Rival Swords,Wii,2007,Action,Ubisoft,0.24,0.03,0,0.02,0.29 +One Piece Unlimited Cruise 2: Awakening of a Hero,Wii,2009,Action,Namco Bandai Games,0,0.1,0.17,0.02,0.29 +Ben 10 Alien Force: Vilgax Attacks,PS2,2009,Action,D3Publisher,0.11,0.03,0,0.15,0.29 +Majin and the Forsaken Kingdom,PS3,2010,Adventure,Namco Bandai Games,0.09,0.14,0.01,0.05,0.29 +NBA Street V3,GC,2005,Sports,Electronic Arts,0.23,0.06,0,0.01,0.29 +WinBack: Covert Operations,PS2,2000,Shooter,Midas Interactive Entertainment,0.14,0.11,0,0.04,0.29 +Punch-Out!!,Wii,2007,Sports,Nintendo,0.02,0.22,0.05,0,0.29 +FlatOut: Head On,PSP,2008,Racing,Empire Interactive,0.13,0.11,0,0.06,0.29 +Kagero: Deception II,PS,1998,Strategy,Virgin Interactive,0.03,0.02,0.22,0.02,0.29 +Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban,PS,2000,Sports,Konami Digital Entertainment,0,0,0.27,0.02,0.29 +The Bureau: XCOM Declassified,PS3,2013,Shooter,Take-Two Interactive,0.08,0.16,0,0.05,0.29 +NBA Live 06,X360,2005,Sports,Electronic Arts,0.27,0,0,0.02,0.29 +Guitar Hero: Van Halen,Wii,2009,Misc,Activision,0.14,0.12,0,0.03,0.29 +J-League Victory Goal '96,SAT,1996,Sports,Sega,0,0,0.29,0,0.29 +Shin Megami Tensei: Strange Journey,DS,2009,Role-Playing,Atlus,0.14,0,0.14,0.01,0.29 +Jeopardy! 2nd Edition,PS,2000,Misc,Hasbro Interactive,0.16,0.11,0,0.02,0.29 +SD Gundam G Century,PS,1997,Strategy,Namco Bandai Games,0,0,0.27,0.02,0.29 +Ratchet & Clank: Size Matters,PS2,2008,Platform,Sony Computer Entertainment,0.13,0.1,0.03,0.03,0.29 +Ben 10 Ultimate Alien: Cosmic Destruction,Wii,2010,Platform,D3Publisher,0.17,0.1,0,0.02,0.29 +Atelier Iris 3: Grand Phantasm (US Sales),PS2,2006,Role-Playing,Tecmo Koei,0.14,0.11,0,0.04,0.29 +Itadaki Street 2: Neon Sign wa Bara Iro ni,SNES,1994,Misc,Enix Corporation,0,0,0.29,0,0.29 +Def Jam Rapstar,X360,2010,Misc,Konami Digital Entertainment,0.25,0.03,0,0.02,0.29 +Need for Speed: The Run,Wii,2011,Action,Electronic Arts,0.13,0.13,0.01,0.03,0.29 +From TV Animation One Piece: Treasure Battle!,GC,2002,Fighting,Namco Bandai Games,0,0,0.28,0.01,0.29 +Starhawk,PS3,2012,Action,Sony Computer Entertainment,0.18,0.05,0.03,0.03,0.29 +Dolphin,2600,1983,Action,Activision,0.27,0.02,0,0,0.29 +Imagine: Fashion Designer World Tour,DS,2009,Simulation,Ubisoft,0.27,0,0,0.02,0.29 +Area 51,XB,2005,Shooter,Midway Games,0.22,0.06,0,0.01,0.29 +The Smurfs: Dance Party,Wii,2011,Misc,Ubisoft,0.22,0.04,0,0.02,0.29 +Disney Channel: All Star Party,Wii,2010,Misc,Disney Interactive Studios,0.18,0.08,0,0.02,0.29 +Ace Combat: Joint Assault,PSP,2010,Simulation,Namco Bandai Games,0.06,0.05,0.15,0.03,0.29 +Hamster Club 4: Shigessa Daidassou,GBA,2003,Simulation,Jorudan,0,0,0.28,0.01,0.29 +Medieval Moves: Deadmund's Quest,PS3,2011,Action,Sony Computer Entertainment,0.13,0.12,0,0.05,0.29 +Angry Birds Star Wars,X360,2013,Strategy,Activision,0.16,0.11,0,0.03,0.29 +Mega Man X8,PS2,2004,Platform,Capcom,0.14,0.11,0,0.04,0.29 +CSI: Deadly Intent,Wii,2009,Adventure,Ubisoft,0.13,0.13,0,0.03,0.29 +Ford Mustang: The Legend Lives,PS2,2005,Racing,Take-Two Interactive,0.14,0.11,0,0.04,0.29 +Ys: Memories of Celceta,PSV,2012,Action,Nihon Falcom Corporation,0.15,0.01,0.1,0.04,0.29 +FIFA Soccer 13,3DS,2012,Action,Electronic Arts,0.06,0.2,0,0.03,0.29 +Fast Food,2600,1981,Action,Unknown,0.27,0.02,0,0,0.29 +Jikkyou Powerful Pro Yakyuu 8,PS2,2001,Sports,Konami Digital Entertainment,0,0,0.29,0,0.29 +Viz,N64,1998,Racing,Acclaim Entertainment,0.23,0.06,0,0,0.29 +Top Gear Overdrive,N64,1998,Racing,Kemco,0.23,0.06,0,0,0.29 +Xena: Warrior Princess - The Talisman of Fate,N64,1999,Fighting,Titus,0.23,0.06,0,0,0.29 +Jeremy McGrath Supercross 2000,N64,1999,Racing,Acclaim Entertainment,0.23,0.06,0,0,0.29 +The New Tetris,N64,1999,Puzzle,Nintendo,0.22,0.05,0.02,0,0.29 +Ken Griffey Jr.'s Slugfest,N64,1999,Sports,Nintendo,0.23,0.06,0,0,0.29 +Supercross 2000,N64,1999,Racing,Electronic Arts,0.23,0.06,0,0,0.29 +War Gods,N64,1997,Fighting,Midway Games,0.23,0.06,0,0,0.29 +Bladestorm: The Hundred Years' War,PS3,2007,Action,Tecmo Koei,0.1,0.03,0.14,0.02,0.29 +World of Tanks,PC,2011,Shooter,Wargaming.net,0,0.23,0,0.06,0.29 +Jewel Quest Mysteries: Curse of the Emerald Tear,DS,2010,Puzzle,Avanquest,0,0.25,0,0.04,0.29 +Duel Masters: Sempai Legends,GBA,2003,Misc,Atari,0.21,0.08,0,0.01,0.29 +Marvel Super Hero Squad,PS2,2009,Fighting,THQ,0.14,0.11,0,0.04,0.29 +Turning Point: Fall of Liberty,X360,2008,Shooter,Codemasters,0.23,0.04,0,0.02,0.29 +Heroes of the Pacific,PS2,2005,Simulation,Codemasters,0.14,0.11,0,0.04,0.29 +Dead Rising: Chop Till You Drop,Wii,2009,Action,Capcom,0.15,0.07,0.05,0.02,0.29 +The Lord of the Rings: The Third Age,GC,2004,Role-Playing,Electronic Arts,0.22,0.06,0,0.01,0.29 +Disney Infinity,3DS,2013,Action,Disney Interactive Studios,0.16,0.1,0,0.02,0.29 +Fable: The Journey,X360,2012,Role-Playing,Microsoft Game Studios,0.18,0.09,0,0.02,0.29 +Nicktoons: Battle for Volcano Island,GC,,Action,Unknown,0.22,0.06,0,0.01,0.29 +Sonic Boom: Shattered Crystal,3DS,2014,Action,Sega,0.17,0.09,0,0.03,0.29 +Just Dance Wii 2,Wii,2012,Misc,Nintendo,0,0,0.29,0,0.29 +Madden NFL 08,XB,2007,Sports,Electronic Arts,0.22,0.06,0,0.01,0.29 +DX Game of Life,PS,1996,Misc,Takara,0,0,0.27,0.02,0.29 +Pirates of the Caribbean,XB,2003,Role-Playing,Ubisoft,0.22,0.06,0,0.01,0.29 +Operation Flashpoint: Red River,X360,2011,Shooter,Codemasters,0.1,0.15,0.01,0.03,0.29 +One Piece: Pirate Warriors 3,PS3,2015,Action,Namco Bandai Games,0,0.09,0.19,0.01,0.29 +The Punisher,XB,2005,Action,THQ,0.22,0.06,0,0.01,0.29 +MLB Pennant Race,PS,1996,Sports,Sony Computer Entertainment,0.16,0.11,0,0.02,0.29 +Transformers: Dark of the Moon,X360,2011,Action,Activision,0.13,0.13,0,0.03,0.29 +SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan,SNES,1991,Role-Playing,Angel Studios,0,0,0.29,0,0.29 +GRID 2,X360,2013,Racing,Codemasters,0.08,0.17,0,0.03,0.29 +WWII Aces,Wii,2008,Simulation,Destineer,0.27,0,0,0.02,0.29 +Puzzle Quest: Challenge of the Warlords,Wii,2007,Puzzle,D3Publisher,0.26,0,0,0.02,0.29 +Shrek Super Party,PS2,2002,Misc,TDK Mediactive,0.14,0.11,0,0.04,0.29 +"Sakura Wars 4: Koi Seyo,Otome",DC,2002,Adventure,Sega,0,0,0.29,0,0.29 +"Sakura Wars: So Long, My Love",PS2,2005,Role-Playing,Sega,0.07,0.05,0.15,0.02,0.29 +Dynasty Tactics,PS2,2002,Strategy,Tecmo Koei,0.06,0.05,0.16,0.02,0.29 +The Urbz: Sims In the City (US weekly sales),DS,2004,Simulation,Electronic Arts,0.27,0,0,0.02,0.29 +Lightning Returns: Final Fantasy XIII,X360,2013,Role-Playing,Square Enix,0.15,0.1,0.01,0.02,0.29 +Feel the Magic XY/XX,DS,2004,Puzzle,Sega,0.17,0,0.1,0.02,0.29 +Trivial Pursuit,PS3,2009,Misc,Electronic Arts,0.12,0.12,0,0.05,0.29 +Neopets Puzzle Adventure,DS,2008,Puzzle,Capcom,0.26,0,0,0.02,0.29 +Sonic & All-Stars Racing Transformed,3DS,2012,Racing,Sega,0.12,0.15,0,0.02,0.29 +Shrek the Third,Wii,2007,Action,Activision,0.26,0.01,0,0.02,0.29 +Snowboarding,PS,2000,Sports,Midas Interactive Entertainment,0.16,0.11,0,0.02,0.29 +Purr Pals,Wii,2008,Simulation,Deep Silver,0.27,0,0,0.02,0.29 +Dragon Ball Heroes: Ultimate Mission,3DS,2013,Misc,Namco Bandai Games,0,0,0.29,0,0.29 +Borderlands: The Pre-Sequel,PC,2014,Shooter,Take-Two Interactive,0.11,0.15,0,0.03,0.29 +Surf's Up,PS2,2007,Sports,Ubisoft,0.14,0.11,0,0.04,0.29 +BlazBlue: Chrono Phantasma,PS3,2013,Fighting,Arc System Works,0.13,0,0.14,0.02,0.29 +Looney Tunes Racing,PS,2000,Racing,Infogrames,0.16,0.11,0,0.02,0.29 +Final Fantasy X-2: International + Last Mission,PS2,2004,Role-Playing,Square Enix,0,0,0.29,0,0.29 +Namco Museum Vol.2,PS,1996,Misc,Sony Computer Entertainment,0.03,0.02,0.21,0.02,0.29 +Rayman 3: Hoodlum Havoc,PS2,2003,Platform,Ubisoft,0.14,0.11,0,0.04,0.29 +Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles,DS,2008,Adventure,Konami Digital Entertainment,0,0,0.29,0,0.29 +Psi-Ops: The Mindgate Conspiracy,PS2,2004,Shooter,Midway Games,0.14,0.11,0,0.04,0.29 +I Spy: Spooky Mansion,Wii,2010,Puzzle,Storm City Games,0.27,0,0,0.02,0.29 +Tomba! 2: The Evil Swine Return,PS,1999,Platform,Sony Computer Entertainment,0.16,0.11,0,0.02,0.29 +SAW,X360,2009,Action,Konami Digital Entertainment,0.13,0.12,0,0.03,0.29 +Wappy Dog,DS,2011,Simulation,Activision,0.27,0,0,0.02,0.29 +Dragon Quest: Shounen Yangus to Fushigi no Dungeon,PS2,2006,Role-Playing,Square Enix,0,0,0.29,0,0.29 +BeatMania Append 4thMix: The beat goes on,PS,1999,Simulation,Konami Digital Entertainment,0,0,0.27,0.02,0.29 +NASCAR 08,X360,2007,Racing,Electronic Arts,0.26,0,0,0.02,0.29 +World of Warcraft: Legion,PC,2016,Role-Playing,Activision,0.14,0.12,0,0.02,0.29 +Romance of the Three Kingdoms III: Dragon of Destiny,SNES,1992,Strategy,Tecmo Koei,0,0,0.29,0,0.29 +Power Pro Kun Pocket 11,DS,2008,Sports,Konami Digital Entertainment,0,0,0.29,0,0.29 +El Shaddai: Ascension of the Metatron,PS3,2011,Action,Ignition Entertainment,0.11,0.07,0.08,0.03,0.29 +Family Guy: Back to the Multiverse,PS3,2012,Action,Activision,0.12,0.12,0,0.05,0.29 +Spyro: A Hero's Tail,GC,2004,Platform,Vivendi Games,0.22,0.06,0,0.01,0.29 +Warriors Orochi 2,PSP,2008,Action,Tecmo Koei,0.06,0,0.22,0.01,0.29 +Ratatouille: Food Frenzy,DS,2007,Puzzle,THQ,0.26,0,0,0.02,0.29 +Links 2004,XB,2003,Sports,Microsoft Game Studios,0.21,0.06,0,0.01,0.29 +PGA Tour 97,PS,1996,Sports,Electronic Arts,0.16,0.11,0,0.02,0.29 +Bratz: Super Babyz,DS,2008,Action,THQ,0.26,0,0,0.02,0.29 +Battle & Get! Pokemon Typing DS,DS,2011,Misc,Nintendo,0,0,0.29,0,0.29 +Kung Zhu,DS,2010,Action,Activision,0.26,0,0,0.02,0.29 +Earthworm Jim,GBA,2001,Platform,Interplay,0.2,0.08,0,0.01,0.29 +Tales of Phantasia,GBA,2003,Role-Playing,Nintendo,0.08,0.03,0.17,0.01,0.29 +The Golden Compass,PS3,2007,Action,Sega,0.14,0.1,0,0.05,0.29 +F1 Race Stars,X360,2012,Racing,Codemasters,0.07,0.18,0,0.03,0.29 +All Star Cheer Squad,DS,2008,Sports,THQ,0.26,0,0,0.02,0.28 +Rugby World Cup 2011,X360,2011,Sports,505 Games,0.03,0.21,0,0.04,0.28 +Ice Age: Dawn of the Dinosaurs,Wii,2009,Action,Activision,0.11,0.14,0,0.03,0.28 +Monster 4x4: Masters of Metal,PS2,2003,Racing,Ubisoft,0.14,0.11,0,0.04,0.28 +SingStar Country,PS2,2008,Misc,Sony Computer Entertainment,0.14,0.11,0,0.04,0.28 +DeathSmiles,X360,2009,Shooter,Rising Star Games,0.15,0.06,0.05,0.02,0.28 +VMX Racing,PS,1997,Racing,Playmates,0.16,0.11,0,0.02,0.28 +Hot Shots Golf: World Invitational,PS3,2012,Sports,Sony Computer Entertainment,0,0,0.28,0,0.28 +Disney's Extreme Skate Adventure,GBA,2003,Sports,Activision,0.2,0.08,0,0.01,0.28 +Dragon Ball GT: Transformation,GBA,2005,Action,Atari,0.2,0.08,0,0.01,0.28 +Bratz Ponyz,DS,2007,Adventure,Game Factory,0.26,0,0,0.02,0.28 +Super Fire ProWrestling X,SNES,1995,Fighting,Human Entertainment,0,0,0.28,0,0.28 +Baby Pals,DS,2007,Simulation,THQ,0.26,0.01,0,0.02,0.28 +International Superstar Soccer,SNES,1994,Sports,Konami Digital Entertainment,0,0,0.28,0,0.28 +Metal Gear Solid V: Ground Zeroes,XOne,2014,Action,Konami Digital Entertainment,0.15,0.11,0,0.02,0.28 +Tigger's Honey Hunt,PS,2000,Platform,Ubisoft,0.16,0.11,0,0.02,0.28 +The Warriors,XB,2005,Action,Take-Two Interactive,0.21,0.06,0,0.01,0.28 +Monopoly Streets,X360,2010,Misc,Electronic Arts,0.16,0.1,0,0.03,0.28 +Shadow Hearts,PS2,2001,Role-Playing,Midway Games,0.09,0.07,0.1,0.02,0.28 +NHL 2K11,Wii,2010,Sports,Take-Two Interactive,0.24,0.02,0,0.02,0.28 +One Piece: Burning Blood,PS4,2016,Fighting,Namco Bandai Games,0.1,0.08,0.07,0.04,0.28 +Haven: Call of the King,PS2,,Platform,Midway Games,0.14,0.11,0,0.04,0.28 +Street Hoops,XB,2002,Sports,Activision,0.21,0.06,0,0.01,0.28 +Yu-Gi-Oh! Double Pack,GBA,2006,Role-Playing,Konami Digital Entertainment,0.2,0.08,0,0.01,0.28 +X-Men: Reign of Apocalypse,GBA,2001,Action,Activision,0.2,0.08,0,0.01,0.28 +R: Racing Evolution,PS2,2003,Racing,Namco Bandai Games,0.14,0.11,0,0.04,0.28 +Tony Hawk: Shred,PS3,2010,Sports,Activision,0.18,0.07,0,0.04,0.28 +Netsu Chu! Pro Yakyuu 2003,PS2,2003,Sports,Namco Bandai Games,0,0,0.28,0,0.28 +ATV Quad Power Racing 2,GC,2003,Racing,Acclaim Entertainment,0.22,0.06,0,0.01,0.28 +Digimon Adventure: Anode Tamer,WS,1999,Role-Playing,Namco Bandai Games,0,0,0.28,0,0.28 +Fantastic 4: Flame On,GBA,2005,Action,Activision,0.2,0.08,0,0.01,0.28 +Siren: Blood Curse,PS3,2008,Action,Sony Computer Entertainment,0,0.17,0.09,0.02,0.28 +Pro Evolution Soccer 2017,PS4,2016,Sports,Konami Digital Entertainment,0.01,0.16,0.09,0.03,0.28 +Chromehounds,X360,2006,Simulation,Sega,0.24,0,0.01,0.02,0.28 +Marvel Nemesis: Rise of the Imperfects,XB,2005,Fighting,Electronic Arts,0.21,0.06,0,0.01,0.28 +The King of Fighters '95,SAT,1995,Fighting,SNK Playmore,0,0,0.28,0,0.28 +Pirates of the Caribbean: Dead Man's Chest,PSP,2006,Adventure,Disney Interactive Studios,0.25,0.01,0,0.02,0.28 +Assassin's Creed II: Discovery,DS,2009,Action,Ubisoft,0.15,0.11,0,0.03,0.28 +F/A-18F Super Hornet,GBA,2004,Simulation,Majesco Entertainment,0.2,0.08,0,0.01,0.28 +Avatar: The Last Airbender,Wii,2006,Adventure,THQ,0.24,0.02,0,0.02,0.28 +Final Fantasy VI Advance,GBA,2006,Role-Playing,Nintendo,0,0,0.28,0.01,0.28 +Polaris,2600,1982,Action,Tigervision,0.26,0.02,0,0,0.28 +Viewtiful Joe,PS2,2004,Action,Capcom,0.14,0.11,0,0.04,0.28 +Triple Play 2000,N64,1999,Sports,Electronic Arts,0.27,0.01,0,0,0.28 +Beyblade: Metal Masters,DS,2010,Action,Konami Digital Entertainment,0.16,0.1,0,0.03,0.28 +Need for Speed: Most Wanted,WiiU,2013,Racing,Electronic Arts,0.14,0.12,0,0.02,0.28 +Arcade Hits: Frisky Tom,PS,2002,Action,Hamster Corporation,0.16,0.11,0,0.02,0.28 +Dead to Rights: Retribution,PS3,2010,Shooter,Namco Bandai Games,0.1,0.12,0.02,0.05,0.28 +Harry Potter and the Sorcerer's Stone,PS2,2003,Action,Electronic Arts,0.14,0.11,0,0.04,0.28 +Unreal Championship 2: The Liandri Conflict,XB,,Shooter,Midway Games,0.22,0.05,0,0.01,0.28 +Kung Fu Chaos,XB,2003,Fighting,Microsoft Game Studios,0.21,0.06,0,0.01,0.28 +Mega Man: Dr. Wily's Revenge,GB,1991,Platform,Nintendo,0,0,0.28,0,0.28 +Yu-Gi-Oh! World Championship 2008,DS,2007,Strategy,Konami Digital Entertainment,0.13,0.02,0.12,0.01,0.28 +Naruto Shippuden: Ultimate Ninja Storm 4,XOne,2016,Fighting,Namco Bandai Games,0.19,0.06,0,0.03,0.28 +Godzilla: Domination!,GBA,2002,Fighting,Atari,0.2,0.07,0,0.01,0.28 +Sly Cooper: Thieves in Time,PSV,2013,Platform,Sony Computer Entertainment Europe,0.16,0.06,0,0.05,0.28 +Tales of the World: Radiant Mythology 3,PSP,2011,Role-Playing,Namco Bandai Games,0,0,0.28,0,0.28 +Famista '92,NES,1991,Sports,Namco Bandai Games,0,0,0.28,0,0.28 +Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S,PS2,2002,Misc,Sammy Corporation,0,0,0.28,0,0.28 +Jackass the Game,PS2,2007,Action,Empire Interactive,0.14,0.11,0,0.04,0.28 +Mega Man II,GB,1991,Platform,Nintendo,0,0,0.28,0,0.28 +Lord of Darkness,SNES,1991,Action,Tecmo Koei,0,0,0.28,0,0.28 +Hannah Montana: Spotlight World Tour,PS2,2008,Action,Disney Interactive Studios,0.12,0.02,0,0.14,0.28 +Rocket Power: Beach Bandits,GBA,2002,Platform,THQ,0.2,0.07,0,0.01,0.28 +Surf's Up,DS,2007,Sports,Ubisoft,0.26,0,0,0.02,0.28 +Carol Vorderman's Sudoku,PS2,2006,Puzzle,Xplosiv,0,0.23,0,0.05,0.28 +MX SuperFly featuring Ricky Carmichael,PS2,2002,Racing,THQ,0.14,0.11,0,0.04,0.28 +Remington Super Slam Hunting: Africa,Wii,2010,Sports,Mastiff,0.27,0,0,0.02,0.28 +Army of Two: The Devil's Cartel,PS3,2013,Shooter,Electronic Arts,0.11,0.11,0.01,0.05,0.28 +Syphon Filter: Dark Mirror,PS2,2007,Shooter,Sony Computer Entertainment,0.14,0.11,0,0.04,0.28 +Conflict: Desert Storm II - Back to Bagdhad,XB,2003,Shooter,SCi,0.21,0.06,0,0.01,0.28 +Guitar Hero Live,PS3,2015,Misc,Activision,0.09,0.14,0,0.05,0.28 +Mission: Impossible - Operation Surma,PS2,2003,Platform,Atari,0.14,0.11,0,0.04,0.28 +Sesame Street: Elmo's A-to-Zoo Adventure,DS,2010,Misc,Warner Bros. Interactive Entertainment,0.27,0,0,0.02,0.28 +MLB 07: The Show,PSP,2007,Sports,Sony Computer Entertainment,0.26,0,0,0.02,0.28 +Pitfall: The Mayan Adventure,GBA,2001,Platform,Interplay,0.2,0.07,0,0.01,0.28 +Driver: Parallel Lines,PS2,2006,Racing,Atari,0.12,0.1,0.03,0.03,0.28 +Sing Party,WiiU,2012,Misc,Nintendo,0.13,0.12,0,0.02,0.28 +Shrek: Ogres & Dronkeys,DS,2007,Simulation,Activision,0.26,0,0,0.02,0.28 +Monopoly,DS,2010,Misc,Electronic Arts,0.16,0.1,0,0.03,0.28 +Hot Wheels: Track Attack,DS,2010,Racing,THQ,0.18,0.08,0,0.02,0.28 +Backyard Wrestling 2: There Goes the Neighborhood,PS2,2004,Fighting,Eidos Interactive,0.14,0.11,0,0.04,0.28 +Virtua Fighter 5 Online,X360,2007,Fighting,Sega,0.2,0.03,0.03,0.02,0.28 +Disney's Treasure Planet,GBA,2002,Action,Ubisoft,0.2,0.07,0,0.01,0.28 +Dead or Alive,PS,1998,Fighting,Sony Computer Entertainment,0.09,0.06,0.1,0.02,0.28 +Wild ARMs 5,PS2,2006,Role-Playing,505 Games,0.14,0.11,0,0.04,0.28 +Bionic Commando,X360,2009,Platform,Capcom,0.12,0.12,0.01,0.03,0.28 +NFL Blitz 20-02,PS2,2002,Sports,Midway Games,0.14,0.11,0,0.04,0.28 +Mega Man 7,SNES,1995,Platform,Laguna,0.03,0.01,0.23,0.01,0.28 +NCAA March Madness 2005,XB,2004,Sports,Electronic Arts,0.21,0.06,0,0.01,0.28 +Shadows of the Damned,PS3,2011,Action,Electronic Arts,0.11,0.09,0.04,0.04,0.28 +"The Chronicles of Narnia: The Lion, The Witch and The Wardrobe",GC,,Action,Disney Interactive Studios,0.22,0.06,0,0.01,0.28 +NBA In The Zone,PS,1995,Sports,Konami Digital Entertainment,0.16,0.11,0,0.02,0.28 +Corvette,GBA,2003,Racing,TDK Mediactive,0.2,0.07,0,0.01,0.28 +F1 ROC: Race of Champions,SNES,1992,Sports,Ocean,0,0,0.28,0,0.28 +Just Dance 2015,PS3,2014,Misc,Ubisoft,0.12,0.11,0,0.05,0.28 +The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies,GC,2004,Action,THQ,0.22,0.06,0,0.01,0.28 +Silent Hill 2: Restless Dreams,XB,2001,Action,Konami Digital Entertainment,0.21,0.06,0,0.01,0.28 +Cabela's Big Game Hunter 2012,X360,2011,Sports,Activision,0.24,0.02,0,0.02,0.28 +Dragon Quest Heroes II: Twin Kings and the Prophecy's End,PS4,2016,Action,Square Enix,0,0,0.28,0,0.28 +Moshi Monsters: Moshlings Theme Park,3DS,2012,Misc,Activision,0.13,0.13,0,0.03,0.28 +UEFA Euro 2016,PS4,2016,Sports,Konami Digital Entertainment,0,0.21,0.03,0.03,0.28 +Soul Nomad & the World Eaters,PS2,2007,Role-Playing,Tecmo Koei,0.14,0.11,0,0.04,0.28 +RollerCoaster Tycoon 3,PC,2004,Strategy,Atari,0.01,0.22,0,0.05,0.28 +Bass Strike,PS2,2001,Sports,THQ,0.14,0.11,0,0.04,0.28 +NHL Hitz 20-03,PS2,2002,Sports,Midway Games,0.14,0.11,0,0.04,0.28 +Danganronpa Another Episode: Ultra Despair Girls,PSV,2014,Action,Nippon Ichi Software,0.1,0.03,0.12,0.04,0.28 +Pac-Man Fever,GC,,Misc,Unknown,0.21,0.06,0,0.01,0.28 +Over the Hedge,DS,2006,Platform,Activision,0.25,0.01,0,0.02,0.28 +Real Pool,PS2,2000,Sports,Midas Interactive Entertainment,0.14,0.11,0,0.04,0.28 +iCarly 2: iJoin The Click!,DS,2010,Adventure,Activision,0.26,0.01,0,0.02,0.28 +The Warriors,PSP,2007,Action,Take-Two Interactive,0.23,0.02,0,0.03,0.28 +Mister Mosquito,PS2,2001,Shooter,Eidos Interactive,0.05,0.04,0.17,0.01,0.28 +Kakyuusei,SAT,1997,Strategy,Elf,0,0,0.28,0,0.28 +Patapon 3,PSP,2011,Misc,Sony Computer Entertainment,0.05,0.04,0.17,0.02,0.28 +Sesame Street: Cookie's Counting Carnival,DS,2010,Misc,Warner Bros. Interactive Entertainment,0.26,0,0,0.02,0.28 +Civilization II,PS,1998,Strategy,Activision,0.15,0.11,0,0.02,0.28 +Guitar Hero: Van Halen,PS3,2009,Misc,Activision,0.14,0.09,0,0.04,0.28 +Dynasty Warriors: Gundam,PS2,2008,Action,Namco Bandai Games,0,0,0.28,0,0.28 +Madagascar,XB,2005,Platform,Activision,0.21,0.06,0,0.01,0.28 +Transformers: Cybertron Adventures,Wii,2010,Action,Activision,0.15,0.1,0,0.03,0.28 +Indiana Jones and the Staff of Kings,PS2,2009,Action,Activision,0.11,0.01,0,0.16,0.28 +F-1 Grand Prix,SNES,1992,Racing,Video System,0,0,0.28,0,0.28 +Mass Effect 3,WiiU,2012,Role-Playing,Electronic Arts,0.14,0.11,0,0.02,0.28 +Pinkalicious,DS,2011,Misc,GameMill Entertainment,0.26,0,0,0.02,0.28 +SimCity 2000,SAT,1994,Simulation,Sega,0,0,0.28,0,0.28 +Deer Hunter,PS2,2003,Sports,Atari,0.14,0.11,0,0.04,0.28 +Pokemon Box: Ruby & Sapphire,GC,2003,Misc,Nintendo,0,0,0.27,0.01,0.28 +Puyo Puyo! 15th Anniversary,DS,2006,Puzzle,Sega,0,0,0.28,0,0.28 +Yu-Gi-Oh! Monster Capsule Breed & Battle,PS,1998,Role-Playing,Konami Digital Entertainment,0,0,0.26,0.02,0.28 +FIFA Soccer 07,X360,2006,Sports,Electronic Arts,0.24,0.01,0,0.02,0.28 +Mass Effect Trilogy,PC,2012,Action,Electronic Arts,0.09,0.16,0,0.03,0.28 +Dave Mirra Freestyle BMX 2,GC,2001,Sports,Acclaim Entertainment,0.21,0.06,0,0.01,0.28 +AC/DC LIVE: Rock Band Track Pack,Wii,2008,Misc,MTV Games,0.25,0,0,0.02,0.28 +My Japanese Coach,DS,2008,Misc,Ubisoft,0.25,0,0,0.02,0.28 +Puppeteer,PS3,2013,Platform,Sony Computer Entertainment Europe,0.11,0.1,0.02,0.04,0.28 +Warpath: Jurassic Park,PS,1998,Fighting,Electronic Arts,0.15,0.1,0,0.02,0.28 +Tak and the Guardians of Gross,PS2,2008,Action,THQ,0.14,0.11,0,0.04,0.28 +True Crime: New York City,XB,2005,Action,Activision,0.21,0.06,0,0.01,0.28 +Summer Heat Beach Volleyball,PS2,2003,Sports,Acclaim Entertainment,0.14,0.11,0,0.04,0.28 +NCAA Basketball 09,PS2,2008,Sports,Electronic Arts,0.14,0.11,0,0.04,0.28 +One Piece Unlimited Cruise 1: The Treasure Beneath the Waves,Wii,2008,Adventure,Namco Bandai Games,0,0.07,0.19,0.01,0.28 +Marvel Super Hero Squad: The Infinity Gauntlet,Wii,2010,Action,THQ,0.22,0.04,0,0.02,0.28 +Dead Rising 2: Off the Record,X360,2011,Action,Capcom,0.17,0.09,0,0.02,0.28 +Power Pro Kun Pocket 3,GBA,2001,Sports,Konami Digital Entertainment,0,0,0.27,0.01,0.28 +Myst III: Exile,PS2,2002,Adventure,Ubisoft,0.14,0.11,0,0.04,0.28 +Castlevania: Aria of Sorrow,GBA,2003,Platform,Konami Digital Entertainment,0.2,0.07,0,0,0.28 +NBA 2K12,PSP,2011,Sports,Take-Two Interactive,0.22,0.03,0,0.03,0.28 +R.U.S.E.,PC,2010,Strategy,Ubisoft,0.04,0.19,0,0.05,0.28 +Mobile Suit Gundam Side Story I: Senritsu no Blue,SAT,1996,Shooter,Namco Bandai Games,0,0,0.28,0,0.28 +Armored Core: Project Phantasma,PS,1997,Simulation,From Software,0.06,0.04,0.15,0.02,0.28 +Donkey Kong GB: Dinky Kong & Dixie Kong,GB,2000,Platform,Nintendo,0,0,0.28,0,0.28 +Kobitodzukan: Kobito Kansatsu Set,3DS,2012,Misc,Nippon Columbia,0,0,0.28,0,0.28 +ExciteBots: Trick Racing,Wii,2009,Racing,Nintendo,0.26,0,0,0.02,0.28 +Pro Evolution Soccer 2013,PSP,2012,Sports,Konami Digital Entertainment,0,0.07,0.18,0.03,0.28 +Deadpool,PS4,2015,Action,Activision,0.13,0.1,0,0.05,0.28 +Nichibutsu Arcade Classics,SNES,1995,Misc,Nichibutsu,0,0,0.28,0,0.28 +Kenka Bancho: Badass Rumble,PSP,2008,Action,Spike,0.06,0,0.2,0.01,0.27 +Cabela's Trophy Bucks,PS2,2007,Sports,Activision Value,0.13,0.11,0,0.04,0.27 +Moero! Nekketsu Rhythm Damashii: Osu! Tatakae! Ouendan! 2,DS,2007,Misc,Nintendo,0,0,0.27,0,0.27 +Q-Ball: Billiards Master,PS2,2000,Sports,Take-Two Interactive,0.13,0.1,0,0.04,0.27 +Mr. Do!,2600,1982,Action,Coleco,0.26,0.02,0,0,0.27 +How to Train Your Dragon 2,Wii,2014,Adventure,Little Orbit,0.05,0.2,0,0.02,0.27 +Boogie,DS,2007,Misc,Electronic Arts,0.25,0,0,0.02,0.27 +Tao Feng: Fist of the Lotus,XB,2003,Fighting,Microsoft Game Studios,0.21,0.06,0,0.01,0.27 +Rapala Pro Bass Fishing 2010,PS3,2010,Sports,Activision,0.18,0.06,0,0.03,0.27 +Shin Nippon Pro Wrestling: Toukon Retsuden 2,PS,1996,Fighting,Tomy Corporation,0,0,0.26,0.02,0.27 +Dragon Ball Z: Budokai 2,GC,2004,Fighting,Atari,0.21,0.06,0,0.01,0.27 +The Legend of Zelda: The Minish Cap(weekly JP sales),GBA,,Action,,0,0,0.27,0.01,0.27 +Motocross Maniacs Advance,GBA,2002,Racing,Konami Digital Entertainment,0.2,0.07,0,0,0.27 +Resident Evil 2: Dual Shock Edition,PS,1998,Action,Capcom,0,0,0.26,0.02,0.27 +Dynasty Warriors,PS,1997,Action,Tecmo Koei,0.09,0.06,0.11,0.02,0.27 +M&M's Blast!,GBA,2001,Puzzle,Unknown,0.2,0.07,0,0,0.27 +Zumba Fitness: World Party,Wii,2013,Misc,Majesco Entertainment,0.14,0.11,0,0.03,0.27 +Need for Speed: Most Wanted,DS,2005,Racing,Electronic Arts,0.24,0.01,0,0.02,0.27 +Final Fantasy X International,PS2,2004,Role-Playing,Square Enix,0,0,0.27,0,0.27 +Tiny Toon Adventures: Plucky's Big Adventure,PS,2001,Action,Conspiracy Entertainment,0.15,0.1,0,0.02,0.27 +NHL Hitz 20-02,XB,2001,Sports,Midway Games,0.2,0.06,0,0.01,0.27 +Iron Man 2,X360,2010,Action,Sega,0.15,0.1,0,0.03,0.27 +Indy 500,2600,,Racing,Atari,0.26,0.01,0,0,0.27 +Littlest Pet Shop: Beach Friends,DS,2009,Simulation,Electronic Arts,0.25,0,0,0.02,0.27 +Trivial Pursuit,PS2,2009,Misc,Electronic Arts,0.09,0.01,0,0.17,0.27 +Suikoden Tierkreis,DS,2008,Role-Playing,Konami Digital Entertainment,0.09,0.01,0.15,0.01,0.27 +Evil Dead: Hail to the King,PS,2000,Adventure,THQ,0.15,0.1,0,0.02,0.27 +Dragon Ball GT: Final Bout,PS,1997,Fighting,Namco Bandai Games,0.02,0.02,0.22,0.02,0.27 +Burstrick: Wake Boarding!!,PS,2000,Sports,Natsume,0.15,0.1,0,0.02,0.27 +Dave Mirra Freestyle BMX: Maximum Remix,PS,2001,Sports,Acclaim Entertainment,0.15,0.1,0,0.02,0.27 +Divinity: Original Sin,PS4,2015,Role-Playing,Focus Home Interactive,0.09,0.12,0.02,0.04,0.27 +R.U.S.E.,X360,2010,Strategy,Ubisoft,0.12,0.12,0,0.03,0.27 +Hatsune Miku: Project Diva f,PS3,2013,Misc,Sega,0.08,0,0.19,0.01,0.27 +Resident Evil: Deadly Silence,DS,2006,Action,Capcom,0.12,0.03,0.11,0.01,0.27 +Pac-Pix,DS,2005,Puzzle,Namco Bandai Games,0.16,0,0.1,0.01,0.27 +Beamrider,2600,1984,Racing,Activision,0.26,0.01,0,0,0.27 +EyePet,PSP,2010,Simulation,Sony Computer Entertainment,0.02,0.17,0,0.09,0.27 +The Evil Within,PC,2014,Action,Bethesda Softworks,0.09,0.16,0,0.02,0.27 +Athens 2004,PS2,2004,Sports,Sony Computer Entertainment,0.13,0.1,0,0.03,0.27 +Gunship,PS,1996,Simulation,Microprose,0.15,0.1,0,0.02,0.27 +Jikkyou Powerful Pro Yakyuu Portable 4,PSP,2009,Sports,Konami Digital Entertainment,0,0,0.27,0,0.27 +SD Gundam G Generation Portable,PSP,2006,Strategy,Namco Bandai Games,0,0,0.27,0,0.27 +Sydney 2000,PS,2000,Sports,Eidos Interactive,0.15,0.1,0,0.02,0.27 +Pro Race Driver,PS2,2002,Racing,Codemasters,0.13,0.1,0,0.03,0.27 +Baten Kaitos: Eternal Wings and the Lost Ocean,GC,2003,Role-Playing,Nintendo,0.21,0.05,0,0.01,0.27 +Bishoujo Senshi Sailormoon R,SNES,1993,Fighting,Namco Bandai Games,0,0,0.27,0,0.27 +The Club,X360,2008,Shooter,Sega,0.15,0.1,0,0.02,0.27 +Slam Dunk: Yonkyo Taiketsu!!,SNES,1994,Sports,Namco Bandai Games,0,0,0.27,0,0.27 +Rhythm Thief & the Emperor's Treasure,3DS,2012,Misc,Sega,0.07,0.07,0.12,0.01,0.27 +Rocky: Legends,PS2,2004,Action,Ubisoft,0.13,0.1,0,0.03,0.27 +NickToons: Racing,GBA,2002,Racing,Infogrames,0.19,0.07,0,0,0.27 +MotionSports: Adrenaline,X360,2011,Sports,Ubisoft,0.14,0.1,0,0.03,0.27 +Tiger Woods PGA Tour 07,PSP,2006,Sports,Electronic Arts,0.2,0.04,0,0.04,0.27 +Gun,X360,,Shooter,Activision,0.24,0.01,0,0.02,0.27 +NHL 07,X360,2006,Sports,Electronic Arts,0.25,0.01,0,0.02,0.27 +Flag Capture,2600,,Action,Atari,0.25,0.02,0,0,0.27 +Bridge,2600,1980,Misc,Activision,0.25,0.02,0,0,0.27 +G-Force,PS2,2009,Action,Disney Interactive Studios,0.12,0.01,0,0.14,0.27 +LEGO Harry Potter: Years 5-7,PSP,,Action,Warner Bros. Interactive Entertainment,0.1,0.11,0,0.06,0.27 +The Adventures of Tintin: The Game,PS3,2011,Action,Ubisoft,0.06,0.16,0,0.05,0.27 +RalliSport Challenge 2,XB,2004,Racing,Microsoft Game Studios,0.18,0.08,0,0.01,0.27 +Fushigi no Dungeon: Fuurai no Shiren GB: Tsukikagemura no Kaibutsu,GB,1996,Role-Playing,ChunSoft,0,0,0.27,0,0.27 +Wave Rally,PS2,2001,Racing,Eidos Interactive,0.13,0.1,0,0.03,0.27 +Over the Hedge,GBA,2006,Platform,Activision,0.19,0.07,0,0,0.27 +Disgaea 5: Alliance of Vengeance,PS4,2015,Role-Playing,Nippon Ichi Software,0.1,0.08,0.06,0.04,0.27 +Disney's Chicken Little,GC,2005,Platform,Disney Interactive Studios,0.21,0.05,0,0.01,0.27 +Battle of Giants: Mutant Insects,DS,2010,Strategy,Ubisoft,0.09,0.15,0,0.03,0.27 +Ty the Tasmanian Tiger,GC,2002,Platform,Electronic Arts,0.21,0.05,0,0.01,0.27 +Sengoku Basara 4,PS3,2014,Action,Capcom,0,0,0.27,0,0.27 +Yu-Gi-Oh! The Sacred Cards (JP weekly sales),GBA,2002,Role-Playing,Konami Digital Entertainment,0,0,0.26,0.01,0.27 +WWE Road to WrestleMania X8,GBA,2002,Fighting,THQ,0.19,0.07,0,0,0.27 +Medarot 3: Kabuto / Kuwagata Version,GB,2000,Role-Playing,Imagineer,0,0,0.27,0,0.27 +Fullmetal Alchemist 2: Curse of the Crimson Elixir,PS2,2004,Role-Playing,Square Enix,0.13,0.1,0,0.03,0.27 +Sherlock Holmes: Crimes & Punishments,PS4,2014,Adventure,Focus Home Interactive,0.08,0.14,0,0.05,0.27 +NASCAR 06: Total Team Control,XB,2005,Racing,Electronic Arts,0.2,0.06,0,0.01,0.27 +Bratz: The Movie,Wii,2007,Simulation,THQ,0.24,0.01,0,0.02,0.27 +BloodRayne 2,PS2,2004,Shooter,THQ,0.13,0.1,0,0.03,0.27 +Spider-Man: Web of Shadows,PS3,2008,Action,Activision,0.2,0.04,0,0.03,0.27 +NHL 2002,XB,2001,Sports,Electronic Arts,0.2,0.06,0,0.01,0.27 +Reader Rabbit Kindergarten,DS,2008,Misc,Nordic Games,0.25,0,0,0.02,0.27 +Tropico 4,PC,2011,Strategy,Kalypso Media,0.1,0.13,0,0.04,0.27 +NBA In The Zone '98,N64,1997,Sports,Konami Digital Entertainment,0.25,0.02,0,0,0.27 +Jikkyou Powerful Pro Yakyuu 5,N64,1998,Sports,Konami Digital Entertainment,0,0,0.27,0,0.27 +NBA Jam 99,N64,1998,Sports,Acclaim Entertainment,0.25,0.02,0,0,0.27 +Shadow Man,N64,1999,Action,Acclaim Entertainment,0.18,0.08,0,0.01,0.27 +Command & Conquer,N64,1999,Strategy,Nintendo,0.22,0.05,0,0,0.27 +Call of Juarez: The Cartel,X360,2011,Shooter,Ubisoft,0.14,0.11,0,0.03,0.27 +Shadow of Rome,PS2,2005,Action,Capcom,0.13,0.1,0,0.03,0.27 +Tohoku Daigaku Karei Igaku Kenkyuusho - Kawashima Ryuuta Kyouju Kanshuu - Mono Sugoku Nou o Kitaeru 5-Funkan no Oni Training,3DS,2012,Action,Nintendo,0,0,0.27,0,0.27 +Tales of Eternia,PSP,2005,Role-Playing,Ubisoft,0,0.01,0.25,0.01,0.27 +Harry Potter and the Order of the Phoenix,PS2,2007,Action,Electronic Arts,0.13,0.1,0,0.03,0.27 +Ben 10 Triple Pack,DS,2011,Misc,D3Publisher,0.13,0.12,0,0.03,0.27 +Need for Speed Rivals,PC,2013,Racing,Electronic Arts,0.04,0.19,0,0.04,0.27 +Stuntman: Ignition,PS2,2007,Racing,THQ,0.13,0.1,0,0.03,0.27 +Fantastic 4,XB,2005,Action,Activision,0.2,0.06,0,0.01,0.27 +Mat Hoffman's Pro BMX,GBA,2001,Sports,Activision,0.19,0.07,0,0,0.27 +MotoGP,PS2,2000,Racing,Namco Bandai Games,0.06,0.05,0.14,0.02,0.27 +The Penguins of Madagascar,DS,2010,Action,THQ,0.13,0.12,0,0.02,0.27 +Summer Athletics: The Ultimate Challenge (US sales),Wii,2008,Sports,DTP Entertainment,0.23,0.04,0,0,0.27 +Rock Revolution,X360,2008,Misc,Konami Digital Entertainment,0.25,0,0,0.02,0.27 +Etrian Odyssey II: Heroes of Lagaard,DS,2008,Role-Playing,Atlus,0.1,0,0.16,0.01,0.27 +LEGO The Hobbit,XOne,2014,Action,Warner Bros. Interactive Entertainment,0.13,0.12,0,0.02,0.27 +Jikkyou Powerful Pro Yakyuu 2,SNES,1995,Sports,Konami Digital Entertainment,0,0,0.27,0,0.27 +The Incredible Hulk,PS3,2008,Action,Sega,0.22,0.03,0,0.03,0.27 +Resident Evil: Revelations,X360,2013,Action,Capcom,0.12,0.11,0.02,0.02,0.27 +Major League Baseball 2K10,Wii,2010,Sports,Take-Two Interactive,0.25,0,0,0.02,0.27 +NASCAR 2011: The Game,PS3,2011,Racing,Activision,0.25,0,0,0.02,0.27 +Thoroughbred Breeder II,SNES,1994,Simulation,Hect,0,0,0.27,0,0.27 +Shin Megami Tensei: Devil Survivor,DS,2009,Role-Playing,Atlus,0.14,0,0.12,0.01,0.27 +Magical Vacation,GBA,2001,Role-Playing,Nintendo,0,0,0.26,0.01,0.27 +XGIII: Extreme G Racing,PS2,2001,Racing,Acclaim Entertainment,0.13,0.1,0,0.03,0.27 +NBA Live 2004,GC,2003,Sports,Electronic Arts,0.21,0.05,0,0.01,0.27 +Dragon Ball: XenoVerse,X360,2015,Fighting,Namco Bandai Games,0.16,0.08,0,0.02,0.27 +NASCAR Thunder 2003,XB,2002,Racing,Electronic Arts,0.2,0.06,0,0.01,0.27 +Section 8,X360,2009,Shooter,SouthPeak Games,0.15,0.09,0,0.03,0.27 +Superbike 2000,PS,1999,Racing,Electronic Arts,0.15,0.1,0,0.02,0.27 +America's Test Kitchen: Let's Get Cooking,DS,2010,Simulation,Nintendo,0.25,0,0,0.02,0.27 +Final Fantasy XI: Ultimate Collection,X360,2009,Role-Playing,Square Enix,0.25,0,0,0.02,0.27 +Fire Emblem: Shin Monshou no Nazo Hikari to Kage no Eiyuu,DS,2010,Strategy,Nintendo,0,0,0.27,0,0.27 +F1 2016 (Codemasters),PS4,2016,Racing,Codemasters,0.01,0.21,0.01,0.04,0.27 +Connect Four / Perfection / Trouble,GBA,2005,Misc,Zoo Digital Publishing,0.19,0.07,0,0,0.27 +Wipeout 2,X360,2011,Misc,Activision,0.25,0,0,0.02,0.27 +Ratatouille,X360,2007,Action,THQ,0.23,0.02,0,0.02,0.27 +The Incredible Hulk,X360,2008,Action,Sega,0.22,0.03,0,0.02,0.27 +Dora the Explorer: Dora Saves the Crystal Kingdom,Wii,2009,Misc,Take-Two Interactive,0.24,0.01,0,0.02,0.27 +Alundra 2: A New Legend Begins,PS,1999,Role-Playing,Activision,0.15,0.1,0,0.02,0.27 +Reign of Fire,PS2,2002,Shooter,BAM! Entertainment,0.13,0.1,0,0.03,0.27 +Scooby-Doo! and the Spooky Swamp,PS2,2010,Action,Warner Bros. Interactive Entertainment,0.08,0.11,0,0.08,0.27 +Jikkyou Powerful Pro Yakyuu '98 Ketteiban,PS,1998,Sports,Konami Digital Entertainment,0,0,0.25,0.02,0.27 +Ace Attorney 6,3DS,2016,Adventure,Capcom,0,0,0.27,0,0.27 +The Sims 2: Pets,GC,2006,Simulation,Electronic Arts,0.21,0.05,0,0.01,0.27 +Cake Mania 2: Jill's Next Adventure!,DS,2008,Puzzle,Majesco Entertainment,0.24,0,0,0.02,0.27 +Batman: Arkham Origins Blackgate,3DS,2013,Action,Warner Bros. Interactive Entertainment,0.16,0.09,0,0.02,0.27 +The BIGS,X360,2007,Sports,Take-Two Interactive,0.18,0.08,0,0,0.27 +Initial D: Special Stage,PS2,2003,Racing,Sega,0,0,0.27,0,0.27 +Madden NFL 08,DS,2007,Sports,Electronic Arts,0.24,0,0,0.02,0.27 +Jurassic Park: Operation Genesis,PS2,2003,Simulation,Konami Digital Entertainment,0.13,0.1,0,0.03,0.27 +Family Feud: 2010 Edition,DS,2009,Misc,Ubisoft,0.25,0,0,0.02,0.27 +Final Doom,PS,1995,Shooter,GT Interactive,0.15,0.1,0,0.02,0.27 +Deadly Premonition,X360,2010,Action,Rising Star Games,0.18,0.06,0,0.02,0.27 +Rock Revolution,PS3,,Misc,Unknown,0.25,0,0,0.02,0.27 +Are You Smarter than a 5th Grader? Game Time,Wii,2009,Puzzle,THQ,0.25,0,0,0.02,0.27 +NBA ShootOut 2001,PS,2000,Sports,Sony Computer Entertainment,0.15,0.1,0,0.02,0.27 +Knockout Kings 2002,XB,2002,Sports,Electronic Arts,0.2,0.06,0,0.01,0.27 +Wipeout 2,DS,2011,Misc,Activision,0.25,0,0,0.02,0.27 +Payday 2,PS4,2015,Shooter,505 Games,0.09,0.14,0,0.04,0.27 +Ultimate NES Remix,3DS,2014,Action,Unknown,0.15,0.09,0,0.02,0.27 +Megamind: The Blue Defender,DS,2010,Adventure,THQ,0.19,0.05,0,0.02,0.27 +NFL Street 3,PSP,2006,Sports,Electronic Arts,0.24,0,0,0.02,0.27 +Battle Arena Toshinden 3,PS,1996,Fighting,Sony Computer Entertainment,0.06,0.04,0.14,0.02,0.27 +Teenage Mutant Ninja Turtles: Danger of the Ooze,PS3,2014,Adventure,Activision,0.11,0.11,0,0.05,0.27 +Jade Cocoon: Story of the Tamamayu,PS,1998,Role-Playing,Crave Entertainment,0.15,0.1,0,0.02,0.27 +Super Nazo Puyo: Ruruu no Ruu,SNES,1995,Puzzle,Banpresto,0,0,0.27,0,0.27 +Cabela's Big Game Hunter 2010,X360,2009,Sports,Activision Value,0.25,0,0,0.02,0.27 +InuYasha: Feudal Combat,PS2,2005,Fighting,Namco Bandai Games,0.13,0.1,0,0.03,0.27 +Duel Masters,PS2,2004,Strategy,Atari,0.13,0.1,0,0.03,0.27 +Ninja Gaiden Sigma,PSV,2012,Action,Tecmo Koei,0.13,0.06,0.04,0.04,0.27 +Super Collapse! 3,DS,2007,Puzzle,Mumbo Jumbo,0.25,0,0,0.02,0.27 +Superman Returns,X360,2006,Action,Electronic Arts,0.23,0.02,0,0.02,0.27 +The Dog Island,PS2,2007,Adventure,Ubisoft,0.13,0.1,0,0.03,0.27 +My Virtual Tutor: Reading Adventure Kindergarten to First,DS,2009,Misc,Mentor Interactive,0.25,0,0,0.02,0.27 +Dynasty Warriors Next,PSV,2011,Action,Tecmo Koei,0.06,0.07,0.11,0.03,0.27 +Major League Baseball 2K9,Wii,2009,Sports,Take-Two Interactive,0.25,0,0,0.02,0.27 +Jikkyou Powerful Pro Yakyuu 2010,PS3,2010,Sports,Konami Digital Entertainment,0,0,0.27,0,0.27 +Operation Armored Liberty,GBA,2003,Action,Majesco Entertainment,0.19,0.07,0,0,0.27 +Rory McIlroy PGA Tour,XOne,2015,Action,Electronic Arts,0.15,0.09,0,0.02,0.27 +Dynasty Warriors 7: Xtreme Legends,PS3,2011,Action,Tecmo Koei,0.04,0.05,0.16,0.02,0.27 +Summer Sports 2: Island Sports Party,Wii,2008,Sports,Ubisoft,0.24,0,0,0.02,0.27 +Imagine: Fashion Party,Wii,2009,Simulation,Ubisoft,0.25,0,0,0.02,0.27 +Fish Tycoon,DS,2007,Simulation,Majesco Entertainment,0.24,0,0,0.02,0.27 +Scene It? Twilight,Wii,2009,Misc,Konami Digital Entertainment,0.16,0.08,0,0.02,0.27 +And1 Streetball,PS2,2006,Action,Ubisoft,0.13,0.1,0,0.03,0.27 +Don King Boxing,Wii,2009,Sports,Take-Two Interactive,0.14,0.1,0,0.03,0.27 +Atelier Ayesha: The Alchemist of Dusk,PS3,2012,Role-Playing,Tecmo Koei,0.06,0.04,0.14,0.02,0.27 +Angry Birds Trilogy,X360,2012,Action,Activision,0.18,0.06,0,0.02,0.27 +Dragon Ball Z: Tenkaichi Tag Team,PSP,2010,Fighting,Namco Bandai Games,0.11,0.04,0.09,0.03,0.27 +Sonic X: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.19,0.07,0,0,0.27 +ESPN NBA Basketball,XB,2003,Sports,Sega,0.2,0.06,0,0.01,0.27 +Gallop Racer 2: One and Only Road to Victory,PS,1997,Sports,Tecmo Koei,0,0,0.25,0.02,0.27 +NBA 07,PS3,2006,Sports,Sony Computer Entertainment,0.24,0,0.01,0.02,0.26 +Lowrider,PS2,2002,Misc,Pacific Century Cyber Works,0.11,0.09,0.03,0.03,0.26 +Reload: Target Down,Wii,2010,Shooter,Mastiff,0.25,0,0,0.02,0.26 +All-Pro Football 2K8,X360,2007,Sports,Take-Two Interactive,0.24,0,0,0.02,0.26 +Dungeons & Dragons: Eye of the Beholder,GBA,2002,Role-Playing,Atari,0.19,0.07,0,0,0.26 +The Crew,X360,2014,Racing,Ubisoft,0.06,0.18,0,0.02,0.26 +"Barbie: Jet, Set & Style!",Wii,2011,Misc,THQ,0.23,0.01,0,0.02,0.26 +Battlestations: Midway,X360,2007,Strategy,Eidos Interactive,0.21,0.02,0,0.02,0.26 +Rayman DS,DS,2005,Platform,Ubisoft,0.21,0.04,0,0.02,0.26 +Gundam Breaker,PS3,2013,Action,Namco Bandai Games,0,0,0.26,0,0.26 +The House of the Dead 2,DC,1998,Shooter,Sega,0,0,0.26,0,0.26 +Create,Wii,2010,Action,Electronic Arts,0.22,0.03,0,0.02,0.26 +A.C.E.: Another Century's Episode R,PS3,2010,Simulation,Namco Bandai Games,0,0,0.26,0,0.26 +Littlest Pet Shop: Friends,Wii,2009,Simulation,Electronic Arts,0.22,0.02,0,0.02,0.26 +Rune: Viking Warlord,PS2,2001,Action,Take-Two Interactive,0.13,0.1,0,0.03,0.26 +Panzer Dragoon Orta,XB,2002,Shooter,Sega,0.16,0.05,0.04,0.01,0.26 +Jikkyou Powerful Pro Yakyuu '99 Ketteiban,PS,1999,Sports,Konami Digital Entertainment,0,0,0.25,0.02,0.26 +Dragon Age Origins: Awakening,PS3,2010,Role-Playing,Spike,0.24,0,0,0.02,0.26 +King's Field II,PS,1996,Role-Playing,From Software,0.08,0.06,0.11,0.02,0.26 +Danganronpa 2: Goodbye Despair,PSV,2014,Misc,Nippon Ichi Software,0.13,0.07,0,0.06,0.26 +Aikatsu! 2-nin no My Princess,3DS,2013,Action,Namco Bandai Games,0,0,0.26,0,0.26 +Beyblade: Metal Fusion,DS,2009,Role-Playing,Hudson Soft,0.08,0.03,0.14,0.01,0.26 +NCAA Gamebreaker,PS,1996,Sports,Sony Computer Entertainment,0.15,0.1,0,0.02,0.26 +Petz: Horsez 2,PS2,2007,Simulation,Ubisoft,0.13,0.1,0,0.03,0.26 +NPPL: Championship Paintball 2009,PS2,2008,Shooter,Activision Value,0.13,0.1,0,0.03,0.26 +Skylanders: SuperChargers,Wii,2015,Action,Activision,0.05,0.19,0,0.02,0.26 +Zoo Tycoon 2: Ultimate Collection,PC,2008,Strategy,Microsoft Game Studios,0.04,0.18,0,0.04,0.26 +Tomba!,PS,1997,Platform,Sony Computer Entertainment,0.15,0.1,0,0.02,0.26 +Love Plus,DS,2009,Simulation,Konami Digital Entertainment,0,0,0.26,0,0.26 +Tales of Innocence,DS,2007,Role-Playing,Namco Bandai Games,0,0,0.26,0,0.26 +MLB SlugFest 2006,PS2,2006,Sports,Midway Games,0.13,0.1,0,0.03,0.26 +J Stars Victory Vs.,PSV,2014,Fighting,Namco Bandai Games,0,0.07,0.17,0.02,0.26 +Rugrats: I Gotta Go Party,GBA,2002,Action,THQ,0.19,0.07,0,0,0.26 +Virtua Racing,GEN,1994,Racing,Sega,0,0,0.26,0,0.26 +Crash Tag Team Racing,PSP,2005,Racing,Vivendi Games,0.16,0.06,0,0.04,0.26 +Prison Break: The Conspiracy,PS3,2010,Action,Deep Silver,0.05,0.16,0,0.05,0.26 +Bolt,PS2,2008,Adventure,Disney Interactive Studios,0.09,0.02,0,0.16,0.26 +DS Bungaku Zenshuu,DS,2007,Misc,Nintendo,0,0,0.26,0,0.26 +We Cheer 2,Wii,2009,Simulation,Namco Bandai Games,0.24,0,0,0.02,0.26 +Nancy Drew: The Mystery of the Clue Bender Society,DS,2008,Adventure,Codemasters,0.24,0,0,0.02,0.26 +Inazuma Eleven GO 3: Galaxy,3DS,2013,Sports,Level 5,0,0,0.26,0,0.26 +Ford Racing 3,PS2,2004,Racing,Take-Two Interactive,0.13,0.1,0,0.03,0.26 +Michael Jackson: The Experience,DS,2010,Misc,Ubisoft,0.22,0.03,0,0.02,0.26 +Phantasy Star Universe: Ambition of the Illuminus,PS2,2007,Role-Playing,Sega,0.1,0.08,0.05,0.03,0.26 +Project Runway,Wii,2010,Simulation,Atari,0.24,0,0,0.02,0.26 +Jikkyou Powerful Pro Yakyuu 2013,PS3,2013,Sports,Konami Digital Entertainment,0,0,0.26,0,0.26 +The Adventures of Jimmy Neutron Boy Genius vs. Jimmy Negatron,GBA,2002,Action,THQ,0.19,0.07,0,0,0.26 +Sengoku Basara 2,PS2,2006,Action,Capcom,0,0,0.26,0,0.26 +Naruto: Ultimate Ninja Heroes,PSP,2006,Fighting,Namco Bandai Games,0.26,0,0,0,0.26 +Inazuma Eleven Strikers,Wii,2011,Role-Playing,Nintendo,0,0.01,0.25,0,0.26 +Hey Arnold! The Movie,GBA,2002,Platform,THQ,0.19,0.07,0,0,0.26 +Final Fantasy V Advance,GBA,2006,Role-Playing,Nintendo,0,0,0.26,0.01,0.26 +Need for Speed: Most Wanted,GBA,2005,Racing,Electronic Arts,0.19,0.07,0,0,0.26 +Lumines: Electronic Symphony,PSV,2012,Misc,Ubisoft,0.11,0.1,0.01,0.05,0.26 +Star Trek: Invasion,PS,2000,Simulation,Activision,0.15,0.1,0,0.02,0.26 +Final Fantasy Crystal Chronicles: Echoes of Time,Wii,2009,Role-Playing,Square Enix,0.13,0.06,0.05,0.02,0.26 +Jonah Lomu Rugby Challenge,PS3,,Sports,Home Entertainment Suppliers,0,0.2,0,0.06,0.26 +Babysitting Mania,DS,2008,Simulation,Majesco Entertainment,0.24,0,0,0.02,0.26 +Star Wars: Bounty Hunter,GC,2002,Shooter,LucasArts,0.2,0.05,0,0.01,0.26 +Tom and Jerry in War of the Whiskers,PS2,2002,Fighting,Ubisoft,0.13,0.1,0,0.03,0.26 +Ace Attorney Investigations 2,DS,2011,Adventure,Capcom,0,0,0.26,0,0.26 +Minute to Win It,Wii,2010,Misc,Zoo Games,0.25,0,0,0.02,0.26 +Smart Girl's Playhouse,DS,2007,Misc,505 Games,0.24,0,0,0.02,0.26 +Racquet Sports,Wii,2010,Sports,Ubisoft,0.14,0.09,0,0.02,0.26 +TouchMaster 3(Others sales),DS,2009,Puzzle,Warner Bros. Interactive Entertainment,0,0.24,0,0.02,0.26 +The Elder Scrolls IV: Oblivion,PC,2006,Role-Playing,Take-Two Interactive,0.01,0.2,0,0.05,0.26 +Jikkyou Powerful Pro Yakyuu 2011,PS3,2011,Sports,Konami Digital Entertainment,0,0,0.26,0,0.26 +Madden NFL 2005,DS,2004,Sports,Electronic Arts,0.24,0,0,0.02,0.26 +Skylanders: Trap Team,3DS,2014,Action,Activision,0.14,0.1,0,0.02,0.26 +Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006,GBA,2006,Misc,Konami Digital Entertainment,0.14,0.05,0.07,0.01,0.26 +Power Pro Kun Pocket 5,GBA,2003,Sports,Konami Digital Entertainment,0,0,0.25,0.01,0.26 +Konjiki no Gashbell!! Makai no Bookmark,GBA,2004,Adventure,Banpresto,0,0,0.25,0.01,0.26 +Plants vs. Zombies,X360,2010,Strategy,PopCap Games,0.24,0,0,0.02,0.26 +Riding Spirits,PS2,2002,Racing,BAM! Entertainment,0.13,0.1,0,0.03,0.26 +Disney Sing It: Pop Hits,PS3,2009,Misc,Disney Interactive Studios,0.17,0.05,0,0.03,0.26 +Indiana Jones and the Staff of Kings,DS,2009,Action,Activision,0.17,0.07,0,0.02,0.26 +Etrian Odyssey Untold: The Millennium Girl,3DS,2013,Role-Playing,Atlus,0.1,0.01,0.14,0.01,0.26 +Bust A Groove 2,PS,1999,Misc,Enix Corporation,0.04,0.03,0.18,0.02,0.26 +Hatsune Miku: Project Diva,PSP,2009,Misc,Sega,0,0,0.26,0,0.26 +Juiced 2: Hot Import Nights,PS3,2007,Racing,THQ,0.18,0.04,0.01,0.03,0.26 +Gundam Battle Universe,PSP,2008,Fighting,Namco Bandai Games,0,0,0.26,0,0.26 +Sengoku Basara: Battle Heroes,PSP,2009,Action,Capcom,0,0,0.26,0,0.26 +Nightmare Creatures,N64,1996,Action,Activision,0.21,0.05,0,0,0.26 +Star Wars Episode I: Battle for Naboo,N64,2000,Simulation,LucasArts,0.21,0.05,0,0,0.26 +Duke Nukem: Zero Hour,N64,1999,Shooter,GT Interactive,0.21,0.05,0,0,0.26 +Armorines: Project S.W.A.R.M.,N64,1999,Shooter,Acclaim Entertainment,0.21,0.05,0,0,0.26 +NCAA March Madness 08,PS2,2007,Sports,Electronic Arts,0.13,0.1,0,0.03,0.26 +Armored Core: Nexus,PS2,2004,Simulation,Indie Games,0.06,0.05,0.14,0.02,0.26 +Evolution Skateboarding,PS2,2002,Sports,Konami Digital Entertainment,0.13,0.1,0,0.03,0.26 +Dora the Explorer: The Search for Pirate Pig's Treasure,GBA,2002,Adventure,NewKidCo,0.19,0.07,0,0,0.26 +Muramasa: The Demon Blade,PSV,2013,Role-Playing,Marvelous Entertainment,0.13,0,0.1,0.03,0.26 +Yakuza: Ishin,PS3,2014,Action,Sega,0,0,0.26,0,0.26 +Indiana Jones and the Staff of Kings,PSP,2009,Action,Activision,0.11,0.1,0,0.06,0.26 +Tony Hawk: Shred,X360,2010,Sports,Activision,0.17,0.07,0,0.02,0.26 +Outlaw Volleyball,XB,2003,Sports,TDK Mediactive,0.19,0.06,0,0.01,0.26 +Batman: Vengeance,GC,2001,Adventure,Ubisoft,0.2,0.05,0,0.01,0.26 +The Amazing Spider-Man 2 (2014),X360,2014,Action,Activision,0.1,0.14,0,0.02,0.26 +RealSports Football,2600,1981,Sports,Atari,0.24,0.01,0,0,0.26 +Tiger Woods PGA Tour 10,PS2,2009,Sports,Electronic Arts,0.12,0.01,0,0.13,0.26 +SD Gundam G Generation: Cross Drive,DS,2007,Strategy,Namco Bandai Games,0,0,0.26,0,0.26 +Tom Clancy's Splinter Cell: Double Agent,PS3,2007,Action,Ubisoft,0.2,0.03,0,0.03,0.26 +Monsters vs. Aliens,Wii,2009,Action,Activision,0.14,0.09,0,0.03,0.26 +Dungeons & Dragons Heroes,XB,2003,Role-Playing,Atari,0.19,0.06,0,0.01,0.26 +The Testament of Sherlock Holmes,PS3,2012,Adventure,Focus Home Interactive,0.05,0.15,0,0.06,0.26 +Game of Thrones,X360,2012,Role-Playing,Focus Home Interactive,0.15,0.08,0,0.02,0.26 +Loving Life with Hello Kitty & Friends,DS,2011,Misc,Rising Star Games,0.15,0.08,0,0.02,0.26 +McGrath Vs. Pastrana Freestyle Motocross,PS,2000,Racing,Acclaim Entertainment,0.14,0.1,0,0.02,0.26 +Legaia 2: Duel Saga,PS2,2001,Role-Playing,Eidos Interactive,0.13,0.1,0,0.03,0.26 +Crash Nitro Kart,GC,2003,Racing,Vivendi Games,0.2,0.05,0,0.01,0.26 +Karaoke Joysound Wii,Wii,2008,Misc,Hudson Soft,0.01,0,0.25,0,0.26 +MLB 09: The Show,PSP,2009,Sports,Sony Computer Entertainment,0.24,0,0,0.02,0.26 +Polarium,DS,2004,Puzzle,Nintendo,0.13,0.01,0.11,0.01,0.26 +Samurai Warriors 4,PS3,2014,Action,Tecmo Koei,0,0,0.26,0,0.26 +F1 2014,X360,2014,Racing,Codemasters,0.08,0.15,0,0.02,0.26 +Classic NES Series: Bomberman,GBA,2004,Action,Nintendo,0.1,0.04,0.11,0.01,0.26 +Avatar: The Last Airbender - The Burning Earth,Wii,2007,Action,THQ,0.24,0,0,0.02,0.26 +Peter Jackson's King Kong: The Official Game of the Movie,X360,2005,Action,Ubisoft,0.2,0.03,0,0.02,0.26 +Bratz Ponyz 2,DS,2008,Adventure,Game Factory,0.24,0,0,0.02,0.26 +A.C.E.: Another Century's Episode,PS2,2005,Simulation,Banpresto,0,0,0.26,0,0.26 +Frogger's Journey: The Forgotten Relic,GBA,2003,Action,Konami Digital Entertainment,0.18,0.07,0,0,0.26 +X-Men vs. Street Fighter,SAT,1997,Fighting,Capcom,0,0,0.26,0,0.26 +Army of Two: The Devil's Cartel,X360,2013,Shooter,Electronic Arts,0.16,0.07,0,0.02,0.26 +Dora the Explorer: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.18,0.07,0,0,0.26 +Oddworld: Stranger's Wrath,XB,2005,Adventure,Electronic Arts,0.19,0.06,0,0.01,0.26 +Sega Rally Revo,PSP,2007,Racing,Sega,0.03,0.15,0,0.08,0.26 +King of Fighters: Maximum Impact,PS2,2004,Fighting,Ignition Entertainment,0.13,0.1,0,0.03,0.26 +Marvel Super Heroes vs. Street Fighter,PS,1998,Fighting,Virgin Interactive,0.14,0.1,0,0.02,0.26 +Legendary,X360,2008,Shooter,Atari,0.08,0.15,0,0.03,0.26 +J-League Pro Soccer Club wo Tsukurou!,SAT,1996,Sports,Sega,0,0,0.26,0,0.26 +Daisy Fuentes Pilates,Wii,2009,Sports,505 Games,0.17,0.06,0,0.02,0.26 +Star Trek: The Game,PS3,2013,Action,Namco Bandai Games,0.1,0.11,0,0.05,0.26 +Drakan: The Ancients' Gates,PS2,2002,Adventure,Sony Computer Entertainment,0.13,0.1,0,0.03,0.26 +Dead or Alive Xtreme 2,X360,2006,Sports,Tecmo Koei,0.15,0.03,0.06,0.02,0.26 +Petz: Crazy Monkeyz,Wii,2008,Simulation,Ubisoft,0.23,0,0,0.02,0.26 +"SpongeBob SquarePants: Lights, Camera, Pants!",XB,2005,Misc,THQ,0.19,0.06,0,0.01,0.26 +Choro Q3,PS,1998,Racing,Takara,0,0,0.24,0.02,0.26 +Tokyo Jungle,PS3,2012,Action,Sony Computer Entertainment,0,0,0.26,0,0.26 +Hunted: The Demon's Forge,PS3,2011,Action,Bethesda Softworks,0.12,0.08,0.02,0.04,0.26 +Lemony Snicket's A Series of Unfortunate Events,GC,2004,Platform,Activision,0.2,0.05,0,0.01,0.26 +Pirates of the Caribbean: Dead Man's Chest,DS,2006,Adventure,Disney Interactive Studios,0.23,0.01,0,0.02,0.26 +Bionicle: Matoran Adventures,GBA,2002,Platform,Electronic Arts,0.18,0.07,0,0,0.26 +Armored Core: Master of Arena,PS,1999,Simulation,From Software,0.07,0.05,0.13,0.02,0.26 +Fire Emblem: Thracia 776,SNES,1999,Strategy,Nintendo,0,0,0.26,0,0.26 +Desert Falcon,2600,1987,Shooter,Atari,0.24,0.01,0,0,0.26 +NASCAR 09,PS3,2008,Racing,Electronic Arts,0.22,0.01,0,0.02,0.26 +Tengai Makyou: Daishi no Mokushiroku - The Apocalypse IV,SAT,1997,Role-Playing,Hudson Soft,0,0,0.26,0,0.26 +A.C.E.: Another Century's Episode 3: The Final,PS2,2007,Simulation,Banpresto,0,0,0.26,0,0.26 +ATV: Quad Power Racing,GBA,2002,Racing,Liquid Games,0.18,0.07,0,0,0.26 +Mario & Sonic at the Rio 2016 Olympic Games,WiiU,2016,Action,Nintendo,0.03,0.11,0.1,0.01,0.26 +The Backyardigans,DS,2009,Adventure,Take-Two Interactive,0.24,0,0,0.02,0.26 +Backyard NFL Football,GC,2002,Sports,Infogrames,0.2,0.05,0,0.01,0.26 +All-Star Baseball 2003,XB,2002,Sports,Acclaim Entertainment,0.19,0.06,0,0.01,0.26 +Silent Hunter 5: Battle of the Atlantic,PC,2010,Simulation,Ubisoft,0,0.21,0,0.05,0.26 +MTX Mototrax,PS2,2004,Racing,Activision,0.13,0.1,0,0.03,0.26 +Tomb Raider: Underworld (Others sales),PS2,2009,Adventure,Eidos Interactive,0,0.21,0,0.04,0.26 +NHL Rock the Rink,PS,1999,Sports,Electronic Arts,0.14,0.1,0,0.02,0.26 +LEGO Star Wars III: The Clone Wars,PC,2011,Action,LucasArts,0.1,0.13,0,0.03,0.26 +NBA ShootOut 2004,PS2,2003,Sports,Sony Computer Entertainment,0.13,0.1,0,0.03,0.26 +TOCA Race Driver 2: Ultimate Racing Simulator,PSP,2005,Racing,Codemasters,0,0.25,0,0,0.26 +Super Robot Taisen R,GBA,2002,Strategy,Banpresto,0,0,0.25,0.01,0.26 +Castlevania: Harmony of Dissonance,GBA,2002,Platform,Konami Digital Entertainment,0.16,0.06,0.04,0,0.26 +Metroid Prime Pinball,DS,2005,Misc,Nintendo,0.21,0,0.02,0.02,0.26 +Formula One 2001,PS2,2001,Racing,Sony Computer Entertainment,0.13,0.1,0,0.03,0.26 +Nickelodeon Dance,Wii,2011,Misc,Take-Two Interactive,0.23,0.01,0,0.02,0.26 +Doukyuusei if,SAT,1996,Role-Playing,NEC,0,0,0.26,0,0.26 +Baldur's Gate: Dark Alliance II,XB,2004,Role-Playing,Acclaim Entertainment,0.19,0.06,0,0.01,0.26 +MVP Baseball 2004,GC,2004,Sports,Electronic Arts,0.2,0.05,0,0.01,0.26 +Super Street Fighter II: Turbo Revival,GBA,2001,Fighting,Ubisoft,0.18,0.07,0,0,0.25 +Secret Weapons Over Normandy,XB,2003,Simulation,LucasArts,0.19,0.05,0,0.01,0.25 +Combination Pro Soccer: J-League no Kantoku ni Natte Sekai wo Mezase!!,PS,1998,Sports,Axela,0,0,0.24,0.02,0.25 +NHL 08,PS3,2007,Action,Electronic Arts,0.16,0.06,0,0.03,0.25 +Kidou Senshi Gundam: Giren no Yabou,SAT,1998,Strategy,Namco Bandai Games,0,0,0.25,0,0.25 +Imagine: Ballet Star,DS,2008,Simulation,Ubisoft,0.23,0.01,0,0.02,0.25 +Teen Titans,PS2,2006,Action,THQ,0.12,0.1,0,0.03,0.25 +Percy Jackson and the Olympians: The Lightning Thief,DS,2010,Role-Playing,Activision,0.22,0.01,0,0.02,0.25 +Spelling Challenges and more!,PSP,2007,Misc,Crave Entertainment,0.24,0,0,0.02,0.25 +Crusaders of Might and Magic,PS,1999,Role-Playing,3DO,0.14,0.1,0,0.02,0.25 +Journey,PS3,2012,Adventure,Sony Computer Entertainment Europe,0.04,0.15,0,0.06,0.25 +Tearaway Unfolded,PS4,2015,Platform,Sony Computer Entertainment,0.09,0.12,0,0.04,0.25 +Star Wars The Clone Wars: Republic Heroes,PS2,2009,Action,LucasArts,0.17,0.01,0,0.08,0.25 +Bomberman Generation,GC,2002,Adventure,Vivendi Games,0.15,0.04,0.06,0.01,0.25 +NASCAR 09,X360,2008,Racing,Electronic Arts,0.23,0,0,0.02,0.25 +Surfing H3O,PS2,2000,Sports,Take-Two Interactive,0.12,0.1,0,0.03,0.25 +Romance of the Three Kingdoms II,SNES,1991,Strategy,Tecmo Koei,0,0,0.25,0,0.25 +The Chronicles of Riddick: Assault on Dark Athena,PS3,2009,Shooter,Vivendi Games,0.12,0.1,0,0.04,0.25 +Resident Evil Archives: Resident Evil Zero,Wii,2008,Action,Capcom,0.14,0.04,0.06,0.02,0.25 +Zoo Resort 3D,3DS,2011,Simulation,Ubisoft,0.11,0.09,0.03,0.02,0.25 +Ice Age 2: The Meltdown,GBA,2006,Platform,Vivendi Games,0.18,0.07,0,0,0.25 +The Suite Life of Zack & Cody: Tipton Trouble,DS,2006,Action,Disney Interactive Studios,0.23,0,0,0.02,0.25 +World Series of Poker,XB,2005,Misc,Activision,0.19,0.05,0,0.01,0.25 +Hatsune Miku: Project Diva F 2nd,PS3,2014,Misc,Sega,0.09,0.04,0.1,0.03,0.25 +Galactic Attack,SAT,1994,Shooter,Acclaim Entertainment,0,0,0.25,0,0.25 +Power Pro Kun Pocket 2,GB,2000,Sports,Konami Digital Entertainment,0,0,0.25,0,0.25 +Game of Thrones,PS3,2012,Role-Playing,Focus Home Interactive,0.1,0.11,0,0.04,0.25 +Happy Feet,GC,2006,Action,Midway Games,0.2,0.05,0,0.01,0.25 +Walt Disney's The Jungle Book: Rhythm N'Groove,PS2,2003,Misc,Disney Interactive Studios,0.12,0.1,0,0.03,0.25 +Triple Play 2002,XB,2002,Sports,Electronic Arts,0.19,0.05,0,0.01,0.25 +Scrabble,DS,2009,Misc,Ubisoft,0.21,0.02,0,0.03,0.25 +Evil Zone,PS,1998,Fighting,Titus,0.14,0.1,0,0.02,0.25 +Spy Kids Challenger,GBA,2002,Platform,Disney Interactive Studios,0.18,0.07,0,0,0.25 +K-ON! Houkago Live!!,PSP,2010,Misc,Sega,0,0,0.25,0,0.25 +A. IV Evolution: A Ressha de Ikou 4,PS,1994,Strategy,ArtDink,0,0,0.24,0.02,0.25 +Exhibition,XB,2001,Misc,Microsoft Game Studios,0.19,0.05,0,0.01,0.25 +Scrabble,PS,1999,Misc,Ubisoft,0.14,0.1,0,0.02,0.25 +Tony Hawk's Proving Ground,Wii,2007,Sports,Activision,0.22,0.01,0,0.02,0.25 +Amped 2,XB,2003,Sports,Microsoft Game Studios,0.2,0.04,0,0.01,0.25 +Blaster Master: Blasting Again,PS,2000,Shooter,Sunsoft,0.14,0.1,0,0.02,0.25 +College Hoops 2K6,PS2,,Sports,Unknown,0.12,0.1,0,0.03,0.25 +Cartoon Network Collection: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.18,0.07,0,0,0.25 +Cars,X360,2006,Racing,THQ,0.22,0.02,0,0.02,0.25 +Family Guy: Back to the Multiverse,X360,2012,Action,Activision,0.14,0.09,0,0.02,0.25 +Kung Fu Panda 2,X360,2011,Action,THQ,0.16,0.07,0,0.02,0.25 +Up,PS3,2009,Action,THQ,0.15,0.07,0,0.03,0.25 +Birds of Steel,PS3,2012,Simulation,Konami Digital Entertainment,0.1,0.09,0.02,0.04,0.25 +Madagascar: Escape 2 Africa,X360,2008,Action,Activision,0.12,0.1,0,0.03,0.25 +WipEout XL,PS,1996,Racing,Psygnosis,0.14,0.1,0,0.02,0.25 +Animal Paradise,DS,2007,Simulation,Empire Interactive,0.09,0.14,0,0.02,0.25 +The Powerpuff Girls: Chemical X-Traction,PS,2001,Action,BAM! Entertainment,0.14,0.1,0,0.02,0.25 +NHL 08,X360,2007,Action,Electronic Arts,0.22,0.01,0,0.02,0.25 +Dynasty Warriors 6 (JP sales),PS2,2008,Action,Tecmo Koei,0,0,0.25,0,0.25 +Just Dance Kids 2,PS3,2011,Misc,Ubisoft,0.1,0.1,0,0.04,0.25 +FIFA 14,3DS,2013,Sports,Electronic Arts,0,0.23,0,0.03,0.25 +Men of Valor,XB,2004,Shooter,Vivendi Games,0.19,0.05,0,0.01,0.25 +Bomberman Tournament,GBA,2001,Puzzle,Activision,0.1,0.04,0.1,0.01,0.25 +Medal of Honor European Assault,GC,2005,Shooter,Electronic Arts,0.19,0.05,0,0.01,0.25 +Spider-Man: Web of Shadows,Wii,2008,Action,Activision,0.22,0.01,0,0.02,0.25 +Billy Hatcher and the Giant Egg,GC,2003,Platform,Sega,0.19,0.05,0,0.01,0.25 +Midway's Greatest Arcade Hits,GBA,2001,Misc,Midway Games,0.18,0.07,0,0,0.25 +SpongeBob's Truth or Square (US sales),X360,2009,Action,THQ,0.25,0,0,0,0.25 +Final Fantasy II,WS,2001,Role-Playing,SquareSoft,0,0,0.25,0,0.25 +WipEout Fusion,PS2,2002,Racing,Sony Computer Entertainment,0.12,0.1,0,0.03,0.25 +Spider-Man: Edge of Time,X360,2011,Action,Activision,0.18,0.05,0,0.02,0.25 +UEFA Euro 2008 Austria-Switzerland,PSP,2008,Sports,Electronic Arts,0.06,0.13,0,0.06,0.25 +Marie no Atelier: Salburg no Renkinjutsushi,PS,1997,Role-Playing,Gust,0,0,0.23,0.02,0.25 +The Outfit,X360,2006,Action,THQ,0.21,0.02,0,0.02,0.25 +Golden Nugget Casino,GBA,2004,Misc,Majesco Entertainment,0.18,0.07,0,0,0.25 +NHL 06,XB,2005,Sports,Electronic Arts,0.19,0.05,0,0.01,0.25 +Atari Anthology,XB,2004,Misc,Atari,0.19,0.05,0,0.01,0.25 +Ultimate Fighting Championship,PS,2000,Fighting,Ubisoft,0.14,0.09,0,0.02,0.25 +XIII,XB,2003,Shooter,Ubisoft,0.16,0.08,0,0.01,0.25 +MotoGP '07,X360,2007,Racing,THQ,0.23,0,0,0.02,0.25 +Samurai Shodown II,NG,1994,Fighting,SNK,0,0,0.25,0,0.25 +Mortal Kombat: Armageddon,Wii,2007,Fighting,Midway Games,0.21,0.02,0,0.02,0.25 +Don King Presents: Prizefighter,X360,2008,Sports,Take-Two Interactive,0.14,0.08,0,0.02,0.25 +Hybrid Heaven,N64,1999,Role-Playing,Konami Digital Entertainment,0.16,0.04,0.05,0,0.25 +NBA Showtime: NBA on NBC,N64,1999,Sports,Midway Games,0.23,0.02,0,0,0.25 +Fox Sports College Hoops '99,N64,1998,Sports,Fox Interactive,0.2,0.05,0,0,0.25 +Wheel of Fortune,N64,1997,Misc,Take-Two Interactive,0.2,0.05,0,0,0.25 +MRC: Multi-Racing Championship,N64,1997,Racing,Ocean,0.2,0.05,0,0,0.25 +F1 Pole Position 64,N64,1997,Racing,Ubisoft,0.11,0.13,0,0.01,0.25 +Gex 64: Enter the Gecko,N64,1998,Action,GT Interactive,0.2,0.05,0,0,0.25 +Wayne Gretzky's 3D Hockey '98,N64,1997,Sports,Midway Games,0.23,0.02,0,0,0.25 +NBA Courtside 2 featuring Kobe Bryant,N64,1999,Sports,Nintendo,0.2,0.05,0,0,0.25 +J Stars Victory Vs.,PS4,2015,Fighting,Namco Bandai Games,0.07,0.14,0,0.04,0.25 +U-Sing: Girls Night,Wii,2010,Misc,Mindscape,0,0.21,0,0.04,0.25 +The Mummy: Tomb of the Dragon Emperor,PS2,2008,Action,Vivendi Games,0.12,0.1,0,0.03,0.25 +Def Jam Vendetta,GC,2003,Fighting,Electronic Arts,0.19,0.05,0,0.01,0.25 +Scooby-Doo! Unmasked,PS2,2005,Platform,THQ,0.12,0.1,0,0.03,0.25 +Penny Racers,PS,1996,Racing,Sony Computer Entertainment,0,0,0.23,0.02,0.25 +The Sims 2,XB,2005,Simulation,Electronic Arts,0.19,0.05,0,0.01,0.25 +Caesars Palace II,PS,1998,Misc,Interplay,0.14,0.09,0,0.02,0.25 +Final Fantasy Type-0,XOne,2015,Role-Playing,Square Enix,0.15,0.07,0,0.02,0.25 +World Series Baseball 2K3,PS2,2003,Sports,Sega,0.12,0.1,0,0.03,0.25 +Freshly-Picked: Tingle's Rosy Rupeeland,DS,2006,Role-Playing,Nintendo,0,0.01,0.24,0,0.25 +Pro Yakyuu Team o Tsukurou!,SAT,1998,Sports,Sega,0,0,0.25,0,0.25 +L.A. Noire: The Complete Edition,PC,2011,Adventure,Take-Two Interactive,0.08,0.13,0,0.04,0.25 +Sentimental Graffiti,SAT,1998,Adventure,NEC Interchannel,0,0,0.25,0,0.25 +Hitman: Absolution,PC,2012,Action,Square Enix,0.03,0.17,0,0.04,0.25 +Bolt,X360,2008,Adventure,Disney Interactive Studios,0.18,0.05,0,0.02,0.25 +Marvel: Ultimate Alliance 2,PSP,2009,Role-Playing,Activision,0.17,0.04,0,0.04,0.25 +The Legend of Legacy,3DS,2015,Role-Playing,FuRyu,0.11,0.02,0.1,0.01,0.25 +Disgaea 2: Dark Hero Days,PSP,2009,Role-Playing,Nippon Ichi Software,0.1,0.01,0.12,0.02,0.25 +Devil Kings,PS2,2005,Action,Capcom,0.03,0.03,0.18,0.01,0.25 +Ultimate Band,Wii,2008,Misc,Disney Interactive Studios,0.2,0.03,0,0.02,0.25 +NBA Jam Tournament Edition,PS,1995,Sports,Acclaim Entertainment,0.14,0.09,0,0.02,0.25 +Far Cry Instincts Predator,X360,2006,Shooter,Ubisoft,0.2,0.03,0,0.02,0.25 +Medabots AX: Metabee,GBA,2002,Role-Playing,Natsume,0.18,0.07,0,0,0.25 +Tennis no Oji-Sama: Genius Boys Academy,GBA,2002,Sports,Konami Digital Entertainment,0,0,0.24,0.01,0.25 +X-Men: Destiny,PS3,2011,Action,Activision,0.14,0.08,0,0.03,0.25 +Shadow Man,PS,1998,Action,Acclaim Entertainment,0.14,0.09,0,0.02,0.25 +X-Men Origins: Wolverine,Wii,2009,Action,Activision,0.19,0.04,0,0.02,0.25 +Netsu Chu! Pro Yakyuu 2002,PS2,2002,Sports,Namco Bandai Games,0,0,0.25,0,0.25 +Ninja Gaiden 3,X360,2012,Action,Tecmo Koei,0.16,0.05,0.03,0.02,0.25 +Ben 10 Ultimate Alien: Cosmic Destruction,PS3,2010,Platform,D3Publisher,0.12,0.09,0,0.04,0.25 +Yakuza Zero: The Place of Oath,PS3,2015,Action,Sega,0,0,0.25,0,0.25 +Prince of Persia: The Forgotten Sands,Wii,2010,Action,Ubisoft,0.11,0.11,0,0.02,0.25 +Dynasty Warriors 6,PS2,2008,Action,Tecmo Koei,0.12,0.09,0,0.03,0.25 +Imagine: Zookeeper,DS,2009,Simulation,Ubisoft,0.16,0.06,0,0.02,0.25 +Porky's,2600,1982,Action,20th Century Fox Video Games,0.23,0.01,0,0,0.25 +America's Army: Rise of a Soldier,XB,2005,Shooter,Ubisoft,0.19,0.05,0,0.01,0.25 +Grandia,PS,1999,Role-Playing,Ubisoft,0.14,0.09,0,0.02,0.25 +TV Superstars,PS3,2010,Misc,Sony Computer Entertainment,0.07,0.13,0,0.05,0.25 +Armored Core 4,X360,2007,Simulation,505 Games,0.19,0.01,0.03,0.02,0.25 +F1 2000,PS,2000,Racing,Electronic Arts,0.14,0.09,0,0.02,0.25 +Littlest Pet Shop: Country Friends,DS,2009,Simulation,Electronic Arts,0.23,0,0,0.02,0.25 +Dood's Big Adventure,Wii,2010,Platform,THQ,0.22,0.01,0,0.02,0.25 +Pirates of the Caribbean: The Legend of Jack Sparrow,PS2,2006,Adventure,Ubisoft,0.12,0.09,0,0.03,0.25 +We Love Golf!,Wii,2007,Sports,Capcom,0.2,0.01,0.03,0.02,0.25 +WRC: World Rally Championship,PS2,2001,Racing,Sony Computer Entertainment,0.12,0.09,0,0.03,0.25 +"Ed, Edd n Eddy: The Mis-Edventures",GC,2005,Platform,Midway Games,0.19,0.05,0,0.01,0.25 +Cars: Mater-National Championship,PS2,2007,Racing,THQ,0.12,0.09,0,0.03,0.25 +Dreamworks Madagascar Kartz,X360,2009,Racing,Activision,0.14,0.09,0,0.02,0.25 +Harry Potter and the Order of the Phoenix,PS3,2007,Action,Electronic Arts,0.18,0.04,0,0.03,0.25 +Anno 2205,PC,2015,Strategy,Ubisoft,0.02,0.22,0,0.01,0.25 +Dune 2000,PS,1999,Strategy,Electronic Arts,0.14,0.09,0,0.02,0.25 +Cradle of Rome,DS,2008,Puzzle,Rising Star Games,0.06,0.16,0,0.03,0.25 +Monster Hunter G,Wii,2009,Role-Playing,Capcom,0,0,0.25,0,0.25 +Fuel,PS3,2009,Racing,Codemasters,0.08,0.12,0,0.05,0.25 +Hasbro Family Game Night 3,PS3,2010,Misc,Electronic Arts,0.18,0.04,0,0.03,0.25 +Pro Evolution Soccer 2014,X360,2013,Action,Konami Digital Entertainment,0.06,0.16,0,0.03,0.25 +Project Overkill,PS,1996,Shooter,Konami Digital Entertainment,0.14,0.09,0,0.02,0.25 +Jumping Flash! 2,PS,1996,Platform,Sony Computer Entertainment,0.05,0.03,0.15,0.02,0.25 +Nickelodeon Party Blast,GC,2002,Misc,Atari,0.19,0.05,0,0.01,0.25 +SBK Superbike World Championship,PS3,2008,Racing,Black Bean Games,0.12,0.11,0,0.02,0.25 +Final Fantasy XI: Chains of Promathia,PS2,2004,Role-Playing,Square Enix,0.12,0.09,0,0.03,0.25 +Choro Q2,PS,1997,Racing,Takara,0,0,0.23,0.02,0.25 +Disney's A Christmas Carol,DS,2009,Adventure,Disney Interactive Studios,0.22,0.01,0,0.02,0.25 +Butt Ugly Martians: B.K.M. Battles,GBA,2002,Action,Vivendi Games,0.18,0.07,0,0,0.25 +Major League Baseball 2K7,PS3,2007,Sports,Spike,0.23,0,0,0.02,0.25 +X-Men Legends II: Rise of Apocalypse,GC,2005,Role-Playing,Activision,0.19,0.05,0,0.01,0.25 +Sorry! / Aggravation / Scrabble Junior,GBA,2005,Misc,Zoo Digital Publishing,0.18,0.07,0,0,0.25 +Driver '76,PSP,2007,Racing,Ubisoft,0.03,0.14,0,0.08,0.25 +Turning Point: Fall of Liberty,PS3,2008,Shooter,Codemasters,0.21,0.01,0,0.02,0.25 +NBA Courtside 2002,GC,2002,Sports,Nintendo,0.19,0.05,0,0.01,0.25 +How to Train Your Dragon 2,3DS,2014,Adventure,Little Orbit,0.04,0.19,0,0.02,0.25 +The Adventures of Tintin: The Game,X360,2011,Action,Ubisoft,0.07,0.14,0,0.03,0.25 +Classic NES Series: Excitebike,GBA,2004,Racing,Nintendo,0.11,0.04,0.1,0.01,0.25 +Classic NES Series: Xevious,GBA,2004,Shooter,Nintendo,0.08,0.03,0.12,0.01,0.25 +Avatar: The Last Airbender - Into the Inferno,PS2,2008,Adventure,THQ,0.12,0.09,0,0.03,0.25 +Disney's Planes,DS,2013,Simulation,Disney Interactive Studios,0.13,0.1,0,0.02,0.25 +Dora the Explorer: Journey to the Purple Planet,PS2,2005,Adventure,Global Star,0.12,0.09,0,0.03,0.24 +Tales of Hearts,DS,2008,Role-Playing,Namco Bandai Games,0,0,0.24,0,0.24 +Digimon World: Data Squad,PS2,2006,Role-Playing,Namco Bandai Games,0.12,0.09,0,0.03,0.24 +Dynasty Warriors 7,X360,2011,Action,Tecmo Koei,0.16,0.07,0,0.02,0.24 +Catz,GBA,2005,Simulation,Ubisoft,0.18,0.06,0,0,0.24 +Jikkyou Powerful Pro Yakyuu 2001,PS,2001,Sports,Konami Digital Entertainment,0,0,0.23,0.02,0.24 +Transformers: War for Cybertron (DS Version),DS,2010,Shooter,Activision,0.22,0.01,0,0.02,0.24 +Mega Man X Collection,PS2,,Misc,Unknown,0.12,0.09,0,0.03,0.24 +Trials Fusion,XOne,2014,Racing,Ubisoft,0.12,0.1,0,0.02,0.24 +LEGO Ninjago: Shadow of Ronin,PSV,2015,Action,Warner Bros. Interactive Entertainment,0.03,0.16,0,0.05,0.24 +Avalon Code,DS,2008,Role-Playing,Rising Star Games,0.11,0,0.12,0.01,0.24 +That's So Raven: Psychic on the Scene,DS,2006,Adventure,Disney Interactive Studios,0.23,0,0,0.02,0.24 +Monster Jam: Path of Destruction,PS3,2010,Racing,Activision,0.21,0.02,0,0.02,0.24 +Tongari Boushi to Oshare na Mahou Tsukai,DS,2011,Action,Konami Digital Entertainment,0,0,0.24,0,0.24 +Panzer General,PS,1995,Strategy,Mindscape,0.14,0.09,0,0.02,0.24 +Broken Sword: Shadow of the Templars - The Director's Cut,Wii,2009,Adventure,Ubisoft,0.12,0.1,0,0.02,0.24 +Gallop Racer (JP),PS,1996,Sports,Tecmo Koei,0.04,0.03,0.16,0.02,0.24 +Spawn the Eternal,PS,1997,Action,Sony Computer Entertainment,0.14,0.09,0,0.02,0.24 +MLB,PSP,2005,Sports,Sony Computer Entertainment,0.23,0,0,0.02,0.24 +Army Men: Sarge's Heroes 2,PS,2000,Shooter,3DO,0.14,0.09,0,0.02,0.24 +Command & Conquer 3: Kane's Wrath,X360,2008,Strategy,Electronic Arts,0.16,0.06,0,0.02,0.24 +Dreamcast Collection,X360,2011,Misc,Sega,0.16,0.07,0,0.02,0.24 +Madden NFL 13,WiiU,2012,Sports,Electronic Arts,0.22,0,0,0.02,0.24 +Corpse Party: Blood Drive,PSV,2014,Adventure,Marvelous Interactive,0.11,0.03,0.06,0.05,0.24 +Homefront,PC,2011,Shooter,THQ,0.11,0.1,0,0.03,0.24 +Disney Stitch Jam,DS,2009,Misc,Disney Interactive Studios,0.08,0,0.16,0,0.24 +Bakugan: Battle Brawlers,X360,2009,Action,Activision,0.2,0.02,0,0.02,0.24 +Britney's Dance Beat,PS2,2002,Misc,THQ,0.12,0.09,0,0.03,0.24 +Guitar Freaks,PS,1999,Simulation,Konami Digital Entertainment,0,0,0.23,0.02,0.24 +World Soccer Winning Eleven 7,PS2,2003,Sports,Konami Digital Entertainment,0.12,0.09,0,0.03,0.24 +Ace Combat: Assault Horizon Legacy,3DS,2011,Simulation,Namco Bandai Games,0.1,0.06,0.08,0.01,0.24 +Cabela's Outdoor Adventures (2009),X360,2009,Sports,Activision Value,0.23,0,0,0.02,0.24 +SRS: Street Racing Syndicate,XB,2004,Racing,Namco Bandai Games,0.18,0.05,0,0.01,0.24 +Namco Tennis Smash Court,PS,1995,Sports,Sony Computer Entertainment,0,0,0.23,0.02,0.24 +Vexx,PS2,2003,Platform,Acclaim Entertainment,0.12,0.09,0,0.03,0.24 +The Incredible Hulk,DS,2008,Action,Sega,0.22,0,0,0.02,0.24 +BioShock 2,PC,,Shooter,Take-Two Interactive,0.02,0.19,0,0.04,0.24 +Marvel vs. Capcom Origins,PS2,2006,Fighting,Capcom,0.11,0.08,0.02,0.03,0.24 +Pro Yaky? Spirits 2011,PSP,2011,Sports,Konami Digital Entertainment,0,0,0.24,0,0.24 +Imagine: Teacher Class Trip,DS,2009,Adventure,Ubisoft,0.1,0.12,0,0.02,0.24 +TimeSplitters: Future Perfect,PS2,2005,Shooter,Electronic Arts,0.12,0.09,0,0.03,0.24 +Final Fantasy Fables: Chocobo Tales,DS,2006,Adventure,Ubisoft,0.11,0.01,0.12,0.01,0.24 +Harvest Moon: Magical Melody,GC,2005,Simulation,Ubisoft,0.19,0.05,0,0.01,0.24 +Genma Onimusha,XB,2002,Action,Capcom,0.14,0.04,0.05,0.01,0.24 +DK: King of Swing,GBA,2005,Platform,Nintendo,0.17,0.06,0,0,0.24 +K-1 Revenge,PS,1997,Fighting,Xing Entertainment,0.04,0.03,0.16,0.02,0.24 +G-Police,PS,1997,Action,Psygnosis,0.13,0.09,0,0.02,0.24 +Pure Futbol,PS3,2010,Sports,Ubisoft,0.06,0.13,0,0.05,0.24 +Spider-Man: Shattered Dimensions,Wii,2010,Action,Activision,0.13,0.09,0,0.02,0.24 +Corvette,XB,2003,Racing,TDK Mediactive,0.18,0.05,0,0.01,0.24 +Atelier Meruru: Alchemist of Arland 3,PS3,2011,Role-Playing,Nippon Ichi Software,0.05,0,0.18,0.01,0.24 +AC/DC LIVE: Rock Band Track Pack,PS3,2008,Misc,MTV Games,0.21,0.01,0,0.02,0.24 +Deca Sports 3,Wii,2010,Sports,Hudson Soft,0.15,0.07,0,0.02,0.24 +Harry Potter and the Goblet of Fire,DS,2005,Action,Electronic Arts,0.21,0.02,0,0.02,0.24 +Midway Arcade Treasures: Extended Play,PSP,2005,Misc,Midway Games,0.21,0.01,0,0.02,0.24 +F1 2015,XOne,2015,Racing,Codemasters,0.08,0.15,0,0.02,0.24 +Skylanders SWAP Force,3DS,2013,Platform,Activision,0.1,0.12,0,0.02,0.24 +Bass Pro Shops: The Hunt,Wii,2010,Sports,XS Games,0.23,0,0,0.02,0.24 +"What Did I Do to Deserve This, My Lord!? 2",PSP,2008,Role-Playing,Nippon Ichi Software,0.05,0,0.18,0.01,0.24 +Boogie SuperStar,Wii,2008,Misc,Electronic Arts,0.2,0.02,0,0.02,0.24 +Burnout 2: Point of Impact,XB,2003,Racing,Acclaim Entertainment,0.18,0.05,0,0.01,0.24 +Rock Band Track Pack Volume 1,Wii,2008,Misc,MTV Games,0.17,0.05,0,0.02,0.24 +Singularity,PS3,,Shooter,Unknown,0.17,0.04,0.01,0.03,0.24 +Super Monkey Ball Deluxe,PS2,2005,Misc,Sega,0.12,0.09,0,0.03,0.24 +Street Fighter X Tekken,PSV,2012,Fighting,Capcom,0.14,0.05,0.01,0.04,0.24 +Kill.Switch,XB,2003,Shooter,Namco Bandai Games,0.18,0.05,0,0.01,0.24 +Ben 10 Ultimate Alien: Cosmic Destruction,PSP,2010,Platform,D3Publisher,0.1,0.09,0,0.05,0.24 +Metro 2033,PC,2010,Shooter,THQ,0,0.19,0,0.05,0.24 +Peter Jackson's King Kong: The Official Game of the Movie,GC,2005,Action,Ubisoft,0.19,0.05,0,0.01,0.24 +Stella Glow,3DS,2015,Role-Playing,Atlus,0.16,0.01,0.05,0.02,0.24 +Dancing With The Stars,Wii,2007,Misc,Activision,0.22,0,0,0.02,0.24 +Summon Night 3,PS2,2003,Role-Playing,Banpresto,0,0,0.24,0,0.24 +Pro Yaky? Spirits 2010,PSP,2010,Sports,Konami Digital Entertainment,0,0,0.24,0,0.24 +The Simpsons: Road Rage,GC,2001,Racing,Electronic Arts,0.19,0.05,0,0.01,0.24 +Megamind: Mega Team Unite,Wii,2010,Adventure,THQ,0.16,0.06,0,0.02,0.24 +PDC World Championship Darts 2008,Wii,2008,Sports,Oxygen Interactive,0.02,0.21,0,0.01,0.24 +Jissen Pachi-Slot Hisshouhou! Hokuto no Ken SE,PS2,2006,Misc,Sega,0,0,0.24,0,0.24 +Azurik: Rise of Perathia,XB,2001,Action,Microsoft Game Studios,0.18,0.05,0,0.01,0.24 +Luminous Arc,DS,2007,Role-Playing,Rising Star Games,0.16,0,0.06,0.01,0.24 +All Grown Up!: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.17,0.06,0,0,0.24 +The Lord of the Rings: Aragorn's Quest,Wii,2010,Action,Warner Bros. Interactive Entertainment,0.17,0.05,0,0.02,0.24 +Dragon Ball Z: Sagas,XB,2005,Fighting,Atari,0.18,0.05,0,0.01,0.24 +Paws & Claws: Pet Resort,DS,2008,Simulation,THQ,0.22,0,0,0.02,0.24 +Grand Slam Tennis 2,PS3,2012,Sports,Electronic Arts,0.09,0.11,0,0.04,0.24 +Sakura Wars: Atsuki Chishio Ni,PS2,2003,Role-Playing,Sega,0,0,0.24,0,0.24 +Ms. Pac-Man: Maze Madness / Pac-Man World,GBA,2005,Puzzle,Namco Bandai Games,0.17,0.06,0,0,0.24 +NHRA Championship Drag Racing,PS2,2005,Racing,ValuSoft,0.12,0.09,0,0.03,0.24 +The Price is Right 2010 Edition,Wii,2009,Misc,Ubisoft,0.22,0,0,0.02,0.24 +Monster Jam,PS2,2007,Racing,Activision,0.12,0.09,0,0.03,0.24 +Valhalla Knights,PSP,2006,Role-Playing,Rising Star Games,0.15,0,0.07,0.01,0.24 +Harvest Moon: Another Wonderful Life,GC,2004,Role-Playing,Marvelous Interactive,0.19,0.05,0,0.01,0.24 +NBA Live 10,PSP,2009,Sports,Electronic Arts,0.21,0,0.01,0.02,0.24 +The Godfather (US & Others sales),X360,2006,Action,Electronic Arts,0.2,0.02,0,0.02,0.24 +Jikkyou Powerful Pro Yakyuu 15,PS2,2008,Sports,Konami Digital Entertainment,0,0,0.24,0,0.24 +MX vs. ATV Reflex,PSP,2009,Racing,THQ,0.18,0.03,0,0.03,0.24 +Bakugan: Battle Brawlers,PS3,2009,Action,Activision,0.19,0.03,0,0.02,0.24 +Front Line,2600,1981,Action,Taito,0.22,0.01,0,0,0.24 +Paperboy,N64,1999,Action,Midway Games,0.19,0.05,0,0,0.24 +South Park: Chef's Luv Shack,N64,1999,Misc,Acclaim Entertainment,0.19,0.05,0,0,0.24 +Midway's Greatest Arcade Hits Volume 1,N64,2000,Misc,Midway Games,0.19,0.05,0,0,0.24 +Road Rash 64,N64,1999,Racing,THQ,0.19,0.05,0,0,0.24 +Ready 2 Rumble Boxing: Round 2,N64,2000,Fighting,Midway Games,0.19,0.05,0,0,0.24 +Army Men: Air Combat,N64,2000,Action,3DO,0.19,0.05,0,0,0.24 +Rock Band Track Pack Volume 2,Wii,2008,Misc,MTV Games,0.21,0.02,0,0.02,0.24 +NCAA College Basketball 2K3,PS2,2002,Sports,Sega,0.12,0.09,0,0.03,0.24 +Mobile Suit Gundam Battlefield Record U.C.0081,PS3,2009,Action,Namco Bandai Games,0,0,0.24,0,0.24 +Harry Potter and the Deathly Hallows - Part 2,DS,2011,Action,Electronic Arts,0.12,0.1,0,0.02,0.24 +NCAA March Madness 2004,XB,2003,Sports,Electronic Arts,0.18,0.05,0,0.01,0.24 +Lucky Luke,PS,1998,Platform,Ocean,0.13,0.09,0,0.02,0.24 +Fantastic 4,GC,2005,Action,Activision,0.19,0.05,0,0.01,0.24 +Ashes Cricket 2009,Wii,2009,Sports,Codemasters,0,0.23,0,0.01,0.24 +Ghost Rider,PSP,2007,Action,Take-Two Interactive,0.22,0,0,0.02,0.24 +Tony Hawk's American Sk8land,GBA,2005,Sports,Activision,0.17,0.06,0,0,0.24 +Juiced 2: Hot Import Nights,DS,2007,Racing,THQ,0.22,0,0,0.02,0.24 +Are You Smarter than a 5th Grader? Game Time,DS,2009,Puzzle,THQ,0.22,0,0,0.02,0.24 +Amazing Adventures: The Forgotten Ruins,DS,2008,Adventure,PopCap Games,0.13,0.08,0,0.02,0.24 +Densetsu no Stafi 3,GBA,2004,Platform,Nintendo,0,0,0.23,0.01,0.24 +Forsaken,PS,1998,Shooter,Acclaim Entertainment,0.13,0.09,0,0.02,0.24 +Ratchet & Clank: Going Commando (JP weekly sales),PS2,2003,Action,Sony Computer Entertainment,0,0,0.24,0,0.24 +Pictionary: Ultimate Edition,PS3,2011,Misc,THQ,0.15,0.06,0,0.03,0.24 +LEGO The Hobbit,3DS,2014,Action,Warner Bros. Interactive Entertainment,0.09,0.13,0,0.02,0.24 +Samurai Warriors 4,PS4,2014,Action,Tecmo Koei,0.08,0.07,0.06,0.03,0.24 +The Hobbit,XB,2003,Platform,Vivendi Games,0.18,0.05,0,0.01,0.24 +Dance Dance Revolution: Disney Channel Edition,PS2,2008,Simulation,Konami Digital Entertainment,0.12,0.09,0,0.03,0.24 +DiRT Showdown,X360,2012,Racing,Codemasters,0.08,0.14,0,0.02,0.24 +Divinity II: Ego Draconis,X360,2009,Role-Playing,DTP Entertainment,0.18,0.04,0,0.02,0.24 +Checkers,2600,1980,Misc,Atari,0.22,0.01,0,0,0.24 +Front Mission: Gun Hazard,SNES,1996,Role-Playing,SquareSoft,0,0,0.24,0,0.24 +X-Men: Destiny,X360,2011,Action,Activision,0.18,0.05,0,0.02,0.24 +Hello Kitty Seasons,Wii,2010,Adventure,Namco Bandai Games,0.16,0.06,0,0.02,0.24 +Chibi-Robo! Zip Lash,3DS,2015,Platform,Nintendo,0.09,0.08,0.06,0.02,0.24 +4x4 EVO 2,XB,2001,Racing,Gathering of Developers,0.18,0.05,0,0.01,0.24 +XS Airboat Racing,PS,2002,Racing,XS Games,0.13,0.09,0,0.02,0.24 +Lunar: Silver Star Harmony,PSP,2009,Role-Playing,GungHo,0.19,0,0.03,0.02,0.24 +Sherlock Holmes and the Mystery of Osborne House,DS,2010,Adventure,Focus Home Interactive,0.07,0.14,0,0.03,0.24 +Grand Theft Auto,GBA,2004,Action,Take-Two Interactive,0.17,0.06,0,0,0.24 +Dora the Explorer: Super Star Adventures,GBA,2004,Adventure,Game Factory,0.17,0.06,0,0,0.24 +Viva Pinata: Party Animals,X360,2007,Misc,Microsoft Game Studios,0.19,0.03,0,0.02,0.24 +Scrabble (Others sales),DS,2009,Puzzle,Ubisoft,0,0.24,0,0,0.24 +Asura's Wrath,X360,2012,Action,Capcom,0.15,0.06,0.01,0.02,0.24 +Lego Star Wars: The Force Awakens,XOne,2016,Action,Warner Bros. Interactive Entertainment,0.12,0.1,0,0.02,0.24 +Dynasty Warriors 6 Empires,X360,2009,Action,Tecmo Koei,0.16,0.02,0.04,0.02,0.24 +My Street,PS2,2003,Misc,Sony Computer Entertainment,0.12,0.09,0,0.03,0.24 +Wild 9,PS,1998,Action,Interplay,0.13,0.09,0,0.02,0.24 +Shadow Hearts: Covenant,PS2,2004,Role-Playing,Midway Games,0.12,0.09,0,0.03,0.24 +Tiger Woods PGA Tour 10,PSP,2009,Sports,Electronic Arts,0.12,0.07,0,0.05,0.24 +Shrek's Carnival Craze Party Games,DS,2008,Misc,Activision,0.22,0,0,0.02,0.24 +Angry Birds,PC,2011,Puzzle,Focus Home Interactive,0,0.18,0,0.05,0.24 +Risen 2: Dark Waters,PS3,2012,Role-Playing,Deep Silver,0.04,0.14,0.01,0.05,0.24 +Danganronpa: Trigger Happy Havoc,PSP,,Misc,Unknown,0,0,0.24,0,0.24 +Guitar Hero Live,X360,2015,Misc,Activision,0.12,0.1,0,0.02,0.24 +Game & Wario,WiiU,2013,Misc,Nintendo,0.06,0.06,0.11,0.01,0.24 +PGA Tour 96,PS,1995,Sports,Electronic Arts,0.13,0.09,0,0.02,0.24 +Onechanbara Z2: Chaos,PS4,2014,Action,Nippon Ichi Software,0.13,0.02,0.04,0.04,0.24 +Fallout 3 Game Add-On Pack: Broken Steel and Point Lookout,X360,2009,Role-Playing,Bethesda Softworks,0.16,0.06,0,0.02,0.24 +Covert Ops: Nuclear Dawn,PS,2000,Action,Sony Computer Entertainment,0.13,0.09,0,0.02,0.24 +DanceDanceRevolution II,Wii,,Misc,Konami Digital Entertainment,0.22,0,0,0.02,0.24 +Pictionary: Ultimate Edition,X360,2011,Misc,THQ,0.16,0.05,0,0.02,0.24 +LEGO Harry Potter: Years 5-7,PSV,2012,Action,Warner Bros. Interactive Entertainment,0.09,0.1,0,0.05,0.24 +TrackMania: Build to Race,Wii,2010,Racing,Focus Home Interactive,0.1,0.11,0,0.03,0.24 +Nintendo Presents: Crossword Collection,DS,2009,Puzzle,Nintendo,0,0.21,0,0.02,0.24 +Galaga: Destination Earth,PS,2000,Shooter,Hasbro Interactive,0.13,0.09,0,0.02,0.24 +G.I. Joe: The Rise of Cobra,X360,2009,Action,Electronic Arts,0.17,0.05,0,0.02,0.24 +Ar tonelico Qoga: Knell of Ar Ciel,PS3,2010,Role-Playing,Tecmo Koei,0.08,0.01,0.13,0.01,0.24 +FIFA World Cup Germany 2006,XB,2006,Sports,Electronic Arts,0.18,0.05,0,0.01,0.24 +Polly Pocket: Super Splash Island,GBA,2003,Action,Knowledge Adventure,0.17,0.06,0,0,0.24 +God Eater 2,PSP,2013,Role-Playing,Namco Bandai Games,0,0,0.24,0,0.24 +Tony Hawk's Downhill Jam,Wii,,Sports,Activision,0.21,0,0,0.02,0.24 +Sesame Street: Elmo's Number Journey,PS,1998,Misc,NewKidCo,0.13,0.09,0,0.02,0.24 +Rampage,2600,1988,Action,Activision,0.22,0.01,0,0,0.24 +Dark Cavern,2600,1981,Shooter,Mattel Interactive,0.22,0.01,0,0,0.24 +Jewels of the Tropical Lost Island,DS,2010,Puzzle,Storm City Games,0.11,0.1,0,0.02,0.24 +Afro Samurai,X360,2009,Action,Atari,0.16,0.05,0,0.02,0.24 +The Bureau: XCOM Declassified,X360,2013,Shooter,Take-Two Interactive,0.1,0.12,0,0.02,0.24 +Sands of Destruction,DS,2008,Role-Playing,Sega,0.09,0,0.13,0.01,0.24 +NASCAR 2011: The Game,Wii,2011,Racing,Activision,0.22,0,0,0.01,0.24 +Silent Hill: Book of Memories,PSV,2012,Action,Konami Digital Entertainment,0.13,0.06,0,0.04,0.24 +Lunar Knights,DS,2006,Role-Playing,Konami Digital Entertainment,0.17,0.01,0.04,0.02,0.24 +The Walking Dead: Season Two,PS4,2014,Adventure,Telltale Games,0.1,0.09,0.01,0.04,0.24 +Epic Mickey 2: The Power of Two,WiiU,2012,Action,Disney Interactive Studios,0.14,0.07,0.01,0.02,0.24 +DC Universe Online,PC,2011,Role-Playing,Sony Online Entertainment,0.16,0.06,0,0.02,0.24 +NASCAR 08,PS2,2007,Racing,Electronic Arts,0.12,0.09,0,0.03,0.24 +Madagascar: Escape 2 Africa,PS3,2008,Action,Activision,0.12,0.08,0,0.04,0.23 +New Carnival Games,DS,2010,Misc,Take-Two Interactive,0.16,0.05,0,0.02,0.23 +Need For Speed: Undercover,DS,2008,Racing,Electronic Arts,0.18,0.03,0,0.02,0.23 +LEGO Marvel's Avengers,WiiU,2016,Action,Warner Bros. Interactive Entertainment,0.12,0.09,0,0.02,0.23 +Naruto: Path of the Ninja 2,DS,2006,Role-Playing,Takara Tomy,0.22,0,0,0.02,0.23 +Wallace & Gromit in Project Zoo,PS2,2003,Platform,BAM! Entertainment,0.11,0.09,0,0.03,0.23 +Karaoke Revolution Volume 2,PS2,2004,Misc,Konami Digital Entertainment,0.11,0.09,0,0.03,0.23 +Wizards of Waverly Place: Spellbound,DS,2010,Misc,Disney Interactive Studios,0.16,0.06,0,0.02,0.23 +Love Plus +,DS,2010,Simulation,Konami Digital Entertainment,0,0,0.23,0,0.23 +Etrian Mystery Dungeon,3DS,2015,Role-Playing,Nippon Ichi Software,0.09,0.01,0.12,0.01,0.23 +Mobile Suit Gundam: Climax U.C.,PS2,2006,Action,Namco Bandai Games,0,0,0.23,0,0.23 +Street Fighter EX2 Plus,PS,1998,Fighting,Virgin Interactive,0.13,0.09,0,0.02,0.23 +The Smurfs 2,DS,2013,Platform,Ubisoft,0,0.21,0,0.02,0.23 +Big Family Games,Wii,2009,Misc,THQ,0,0.22,0,0.02,0.23 +Big Beach Sports 2,Wii,,Sports,THQ,0.09,0.12,0,0.03,0.23 +Hot Wheels: Beat That!,DS,2007,Racing,Activision,0.22,0,0,0.02,0.23 +Jet X20,PS2,,Racing,Unknown,0.11,0.09,0,0.03,0.23 +Super Robot Taisen D,GBA,2003,Strategy,Banpresto,0,0,0.23,0.01,0.23 +NASCAR Thunder 2004,XB,2003,Racing,Electronic Arts,0.18,0.05,0,0.01,0.23 +Buffy the Vampire Slayer,XB,2002,Action,Electronic Arts,0.18,0.05,0,0.01,0.23 +LEGO Marvel's Avengers,PSV,2016,Action,Warner Bros. Interactive Entertainment,0.07,0.11,0,0.05,0.23 +Star Wars: The Force Unleashed II,DS,2010,Action,LucasArts,0.18,0.04,0,0.02,0.23 +Harry Potter and the Goblet of Fire,XB,2005,Action,Electronic Arts,0.18,0.05,0,0.01,0.23 +Zumba Fitness: World Party,XOne,2013,Misc,Majesco Entertainment,0.17,0.05,0,0.02,0.23 +Saint Seiya: Sanctuary Battle,PS3,2011,Action,Namco Bandai Games,0,0.09,0.11,0.03,0.23 +Girls Mode 3: Kirakira Code,3DS,2015,Action,Nintendo,0,0,0.23,0,0.23 +Meteos,DS,2005,Puzzle,Nintendo,0.15,0.01,0.06,0.01,0.23 +Virtua Tennis 4,X360,2011,Sports,Sega,0.11,0.1,0.01,0.02,0.23 +Kung Fu Panda 2,DS,2011,Action,THQ,0.16,0.05,0,0.02,0.23 +Cross Edge,PS3,2008,Role-Playing,Nippon Ichi Software,0.14,0.02,0.05,0.02,0.23 +Hotel for Dogs,DS,2008,Simulation,505 Games,0.22,0,0,0.02,0.23 +Cabela's Big Game Hunter 2012,PS3,2011,Sports,Activision,0.17,0.03,0,0.03,0.23 +Pro Yakyuu Team o Tsukurou!,DC,1999,Sports,Sega,0,0,0.23,0,0.23 +Me & My Katamari,PSP,2005,Puzzle,Namco Bandai Games,0.13,0.02,0.08,0,0.23 +Asphalt: Injection,PSV,2011,Action,Ubisoft,0.14,0.06,0,0.04,0.23 +Total War: Attila,PC,2015,Strategy,Sega,0.09,0.13,0,0.02,0.23 +SSX On Tour,PSP,2005,Sports,Electronic Arts,0.19,0.02,0,0.02,0.23 +Vancouver 2010 - The Official Video Game of the Olympic Winter Games,X360,2010,Sports,Sega,0.08,0.13,0,0.03,0.23 +World Series Baseball,XB,2002,Sports,Sega,0.17,0.05,0,0.01,0.23 +SingStar Pop Edition,PS3,2009,Misc,Sony Computer Entertainment,0,0.19,0,0.05,0.23 +Test Drive: Eve of Destruction,PS2,2004,Racing,Atari,0.11,0.09,0,0.03,0.23 +Starsky & Hutch,XB,2003,Racing,Empire Interactive,0.17,0.05,0,0.01,0.23 +Dynasty Warriors: Gundam Reborn,PS3,2013,Action,Tecmo Koei,0,0,0.23,0,0.23 +Hatsune Miku: Project Diva f,PSV,2012,Misc,Sega,0,0,0.23,0,0.23 +The Club,PS3,2008,Shooter,Sega,0.14,0.07,0,0.03,0.23 +Carnival Island,PS3,2011,Misc,Sony Computer Entertainment,0.13,0.06,0,0.04,0.23 +Jeremy McGrath Supercross World,PS2,2001,Racing,Acclaim Entertainment,0.11,0.09,0,0.03,0.23 +M&M's Kart Racing,Wii,2007,Racing,Zoo Digital Publishing,0.22,0,0,0.02,0.23 +Rock Band Track Pack: Classic Rock,Wii,2009,Misc,MTV Games,0.22,0,0,0.02,0.23 +The Scorpion King: Rise of the Akkadian,PS2,2002,Action,Universal Interactive,0.11,0.09,0,0.03,0.23 +Let's Make a Soccer Team!,PS2,2006,Sports,Sega,0,0,0.23,0,0.23 +Looney Tunes: Acme Arsenal,Wii,2007,Action,Warner Bros. Interactive Entertainment,0.21,0.01,0,0.02,0.23 +Monster Hunter G,PS2,2005,Role-Playing,Capcom,0,0,0.23,0,0.23 +All-Star Baseball 2001,N64,2000,Sports,Acclaim Entertainment,0.22,0.01,0,0,0.23 +Pinball Hall of Fame: The Gottlieb Collection,PSP,2005,Misc,Play It,0.2,0.01,0,0.02,0.23 +Sword Art Online: Lost Song,PS4,2015,Role-Playing,Namco Bandai Games,0.09,0.1,0,0.04,0.23 +Star Wars Jedi Knight II: Jedi Outcast,GC,2002,Shooter,Activision,0.18,0.05,0,0.01,0.23 +Tom Clancy's Splinter Cell,GC,2003,Action,Ubisoft,0.18,0.05,0,0.01,0.23 +Pitfall: The Big Adventure,Wii,2008,Adventure,Activision,0.2,0.02,0,0.02,0.23 +Rock Band Country Track Pack,X360,2009,Misc,MTV Games,0.22,0,0,0.02,0.23 +Worms: Battle Islands,Wii,2010,Strategy,THQ,0.11,0.1,0,0.02,0.23 +ESPN NHL Hockey,PS2,2003,Sports,Sega,0.11,0.09,0,0.03,0.23 +Harvest Moon GB,GB,1997,Simulation,Victor Interactive,0,0,0.23,0,0.23 +Imagine: Detective,DS,2009,Simulation,Ubisoft,0.16,0.01,0,0.06,0.23 +The Incredible Hulk: Ultimate Destruction,XB,2005,Action,Vivendi Games,0.17,0.05,0,0.01,0.23 +Hannah Montana: The Movie,PS3,2009,Adventure,Disney Interactive Studios,0.14,0.06,0,0.03,0.23 +NCAA GameBreaker 2003,PS2,2002,Sports,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +Skylanders: SuperChargers,XOne,2015,Action,Activision,0.16,0.05,0,0.02,0.23 +Gundam Battle Assault,PS,1998,Fighting,Namco Bandai Games,0.13,0.09,0,0.02,0.23 +Virtua Fighter Kids,SAT,1995,Fighting,Sega,0,0,0.23,0,0.23 +Lunar: Silver Star Story,SAT,1996,Role-Playing,Kadokawa Shoten,0,0,0.23,0,0.23 +Rocket Power: Beach Bandits,GC,2002,Platform,THQ,0.18,0.05,0,0.01,0.23 +Shaun White Snowboarding,DS,2008,Sports,Ubisoft,0.21,0,0,0.02,0.23 +LEGO The Hobbit,WiiU,2014,Action,Warner Bros. Interactive Entertainment,0.1,0.11,0,0.02,0.23 +Ultimate Band,DS,2008,Misc,Disney Interactive Studios,0.19,0.02,0,0.02,0.23 +NBA 2K6,X360,2005,Action,Take-Two Interactive,0.21,0.01,0,0.02,0.23 +Age of Empires: The Age of Kings,DS,2006,Strategy,THQ,0.19,0.02,0,0.02,0.23 +What's Cooking? Jamie Oliver,DS,2008,Simulation,Atari,0.2,0.01,0,0.02,0.23 +Tom Clancy's Rainbow Six: Rogue Spear,PS,2001,Shooter,Ubisoft,0.13,0.09,0,0.02,0.23 +NHL FaceOff 2001,PS,2000,Sports,Sony Computer Entertainment,0.13,0.09,0,0.02,0.23 +Ultimate Duck Hunting: Hunting & Retrieving Ducks,Wii,2007,Sports,Detn8 Games,0.21,0,0,0.02,0.23 +Yu-Gi-Oh! GX: Duel Academy,GBA,2005,Misc,Konami Digital Entertainment,0.17,0.06,0,0,0.23 +FIFA 14,PSP,2013,Sports,Electronic Arts,0,0.16,0,0.07,0.23 +Tribes: Aerial Assault,PS2,,Shooter,Unknown,0.11,0.09,0,0.03,0.23 +Colony Wars: Vengeance,PS,1998,Simulation,Psygnosis,0.13,0.09,0,0.02,0.23 +Last Window: The Secret of Cape West,DS,2010,Adventure,Nintendo,0,0.12,0.09,0.02,0.23 +Yu-Gi-Oh! GX: Tag Force 3,PSP,2008,Strategy,Konami Digital Entertainment,0,0.03,0.18,0.01,0.23 +Dynasty Warriors: Strikeforce,X360,2009,Action,Tecmo Koei,0.13,0.06,0.02,0.02,0.23 +Naruto Shippuden: Ultimate Ninja Storm Revolution,X360,2014,Fighting,Namco Bandai Games,0.13,0.08,0,0.02,0.23 +I Love Horses,DS,2008,Simulation,GSP,0.21,0,0,0.01,0.23 +Madden NFL 06,GBA,2005,Sports,Electronic Arts,0.17,0.06,0,0,0.23 +Karaoke Revolution Glee 2: Road to Regionals,Wii,2011,Misc,Konami Digital Entertainment,0.15,0.06,0,0.02,0.23 +NASCAR 08,PS3,2007,Racing,Electronic Arts,0.15,0.05,0,0.03,0.23 +The King of Fighters '95 (CD),NG,1994,Fighting,SNK,0,0,0.23,0,0.23 +Perfect Weapon,PS,1996,Action,American Softworks,0.13,0.09,0,0.02,0.23 +Luminous Arc 2,DS,2008,Role-Playing,Rising Star Games,0.21,0,0,0.02,0.23 +Project CARS,XOne,2015,Racing,Slightly Mad Studios,0.08,0.13,0,0.02,0.23 +Major League Baseball 2K10,PS2,2010,Sports,Take-Two Interactive,0.11,0.09,0,0.03,0.23 +Call of Duty: Black Ops 3,PC,2015,Shooter,Activision,0,0.22,0,0.01,0.23 +Mafia,XB,2004,Action,Take-Two Interactive,0.17,0.05,0,0.01,0.23 +Spider-Man: Edge of Time,PS3,2011,Action,Activision,0.13,0.07,0,0.03,0.23 +Deadly Creatures,Wii,2009,Action,THQ,0.08,0.12,0,0.03,0.23 +Airblade,PS2,2001,Sports,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +Cabela's Outdoor Adventures (2009),PS3,2009,Sports,Activision Value,0.21,0,0,0.02,0.23 +Mega Man & Bass,GBA,2002,Platform,Capcom,0.16,0.06,0,0,0.23 +NBA Live 15,PS4,2014,Sports,Electronic Arts,0.15,0.04,0,0.04,0.23 +Neopets Puzzle Adventure,Wii,2008,Puzzle,Capcom,0.19,0.02,0,0.02,0.23 +Risen 2: Dark Waters,PC,2012,Role-Playing,Deep Silver,0,0.19,0,0.04,0.23 +Dragon Quest Heroes II: Twin Kings and the Prophecy's End,PSV,2016,Action,Square Enix,0,0,0.23,0,0.23 +Puss in Boots,X360,2011,Action,THQ,0.2,0.02,0,0.02,0.23 +Family Fest presents: Movie Games,Wii,2008,Action,Ubisoft,0.2,0.01,0,0.02,0.23 +AKB1/149: Love Election,PSP,2012,Adventure,Namco Bandai Games,0,0,0.23,0,0.23 +Tony Hawk's Proving Ground,DS,2007,Sports,Activision,0.21,0.01,0,0.02,0.23 +Tetris 2 (weekly jp sales),GB,1992,Puzzle,Nintendo,0,0,0.23,0,0.23 +Pro Yakyuu Team o Tsukurou! 2,PS2,2003,Sports,Sega,0,0,0.23,0,0.23 +Musou Orochi Z,PS3,2009,Action,Tecmo Koei,0,0,0.23,0,0.23 +World Series of Poker 2008: Battle for the Bracelets,PS2,2007,Misc,Activision,0.11,0.09,0,0.03,0.23 +WWE All Stars,3DS,2011,Fighting,THQ,0.15,0.06,0,0.02,0.23 +Naruto Shippuden: Ninja Council 4,DS,2007,Action,Nintendo,0.09,0,0.13,0.01,0.23 +Genji: Dawn of the Samurai,PS2,2005,Action,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +Rocket League,PS4,2016,Sports,505 Games,0.02,0.14,0,0.07,0.23 +Wipeout 2,3DS,2011,Misc,Activision,0.22,0,0,0.01,0.23 +The Idolm@ster SP: Wandering Star / Perfect Sun / Missing Moon,PSP,2009,Adventure,Namco Bandai Games,0,0,0.23,0,0.23 +Critical Depth,PS,1997,Action,GT Interactive,0.13,0.09,0,0.01,0.23 +Barbie as The Island Princess,GBA,2007,Adventure,Activision,0.16,0.06,0,0,0.23 +Petz Rescue: Wildlife Vet,Wii,2008,Simulation,Ubisoft,0.21,0,0,0.02,0.23 +Tales of VS.,PSP,2009,Fighting,Namco Bandai Games,0,0,0.23,0,0.23 +Saka-Tsuku DS: Touch and Direct,DS,2008,Sports,Sega,0,0,0.23,0,0.23 +Super Swing Golf,Wii,2006,Sports,Nintendo,0.14,0.01,0.07,0.01,0.23 +The Italian Job,PS2,2003,Racing,Eidos Interactive,0.11,0.09,0,0.03,0.23 +Mega Man Battle Network 5: Team Colonel / Protoman,GBA,2004,Role-Playing,Capcom,0.16,0.06,0,0,0.23 +Barbie and the Three Musketeers,Wii,2009,Adventure,Activision,0.21,0,0,0.02,0.23 +Star Ocean,SNES,1996,Role-Playing,Enix Corporation,0,0,0.23,0,0.23 +Freedom Fighters,XB,2003,Shooter,Electronic Arts,0.17,0.05,0,0.01,0.23 +Naruto: Ninja Council 2 European Version,DS,2005,Fighting,Tomy Corporation,0,0,0.23,0,0.23 +Soldier of Fortune II: Double Helix,XB,2003,Shooter,Activision,0.17,0.05,0,0.01,0.23 +pro evolution soccer 2011,Wii,2010,Sports,Konami Digital Entertainment,0.08,0.1,0.03,0.02,0.23 +Disney Princess: Enchanted Journey,PS2,2007,Adventure,Disney Interactive Studios,0.11,0.09,0,0.03,0.23 +Final Fantasy XI: Treasures of Aht Urhgan,PS2,2006,Role-Playing,Square Enix,0.06,0.05,0.1,0.02,0.23 +Alundra,PS,1997,Role-Playing,Psygnosis,0.13,0.09,0,0.01,0.23 +World Soccer Winning Eleven 2010: Aoki Samurai no Chousen,PS3,2010,Sports,Konami Digital Entertainment,0,0,0.23,0,0.23 +Bratz: Girlz Really Rock,PS2,2008,Action,THQ,0.11,0.09,0,0.03,0.23 +Super R-Type,SNES,1991,Shooter,Nintendo,0,0,0.23,0,0.23 +Rampage 2: Universal Tour,PS,1998,Action,GT Interactive,0.13,0.09,0,0.01,0.23 +Super Robot Taisen F Kanketsuhen,PS,1999,Strategy,Banpresto,0,0,0.21,0.01,0.23 +Tiger Woods PGA Tour 2003,GC,2002,Sports,Electronic Arts,0.18,0.05,0,0.01,0.23 +BlowOut,PS2,2003,Shooter,Zoo Digital Publishing,0.11,0.09,0,0.03,0.23 +NFL Blitz Pro,PS2,2003,Sports,Midway Games,0.11,0.09,0,0.03,0.23 +MySims Party,Wii,2009,Simulation,Electronic Arts,0.18,0.03,0,0.02,0.23 +TRON: Evolution - Battle Grids,Wii,2010,Racing,Disney Interactive Studios,0.18,0.03,0,0.02,0.23 +The Raiden Project,PS,1995,Shooter,Ocean,0.06,0.04,0.12,0.01,0.23 +Hooked! Real Motion Fishing,Wii,2007,Sports,505 Games,0.21,0,0,0.02,0.23 +Pocket Fighter,PS,1997,Fighting,Virgin Interactive,0.06,0.04,0.12,0.01,0.23 +Bicycle Casino 2005,XB,2004,Misc,Zoo Digital Publishing,0.17,0.05,0,0.01,0.23 +Valhalla Knights 2,PSP,2008,Role-Playing,Rising Star Games,0.09,0,0.12,0.01,0.23 +.hack//G.U. Vol.2//Reminisce,PS2,2006,Role-Playing,Namco Bandai Games,0.11,0.09,0,0.03,0.23 +Disgaea: Afternoon of Darkness,PSP,2006,Role-Playing,Tecmo Koei,0.15,0.01,0.04,0.02,0.23 +Ratchet & Clank: Full Frontal Assault,PS3,2012,Adventure,Sony Computer Entertainment,0.19,0.01,0,0.02,0.23 +NCAA Football 09,PSP,2008,Sports,Electronic Arts,0.21,0,0,0.02,0.23 +Family Party: 30 Great Games Winter Fun,Wii,2010,Sports,D3Publisher,0.21,0,0,0.01,0.23 +NCAA GameBreaker 2004,PS2,2003,Sports,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +101-in-1 Party Megamix Wii,Wii,2009,Misc,Nordcurrent,0.19,0.01,0,0.02,0.23 +The Polar Express,PS2,2004,Adventure,THQ,0.11,0.09,0,0.03,0.23 +Dinosaur King,DS,2007,Strategy,Sega,0.2,0,0,0.02,0.23 +Buzz! Junior: RoboJam,PS2,2007,Misc,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +Child of Eden,PS3,2011,Shooter,Ubisoft,0.09,0.1,0,0.04,0.23 +All Star Karate,Wii,2010,Action,THQ,0.14,0.07,0,0.02,0.23 +AC/DC LIVE: Rock Band Track Pack,X360,2008,Misc,MTV Games,0.21,0,0,0.02,0.23 +Tetris Attack,GB,1996,Puzzle,Nintendo,0,0,0.23,0,0.23 +NBA ShootOut 2003,PS2,2002,Sports,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +The Magic School Bus: Oceans,DS,2011,Adventure,Scholastic Inc.,0.21,0,0,0.01,0.23 +Shin Nippon Pro Wrestling: Toukon Retsuden 3,PS,1998,Fighting,Tomy Corporation,0,0,0.21,0.01,0.23 +Senran Kagura: Estival Versus,PSV,2015,Action,Marvelous Interactive,0.06,0.05,0.09,0.03,0.23 +Digimon World DS (JP sales),DS,2006,Role-Playing,Namco Bandai Games,0,0,0.23,0,0.23 +NHL FaceOff 2003,PS2,2002,Sports,Sony Computer Entertainment,0.11,0.09,0,0.03,0.23 +Jersey Devil,PS,1997,Platform,Ocean,0.13,0.09,0,0.01,0.23 +Rogue Ops,PS2,2003,Action,Kemco,0.11,0.09,0,0.03,0.23 +NBA Street: Showdown,PSP,2005,Sports,Electronic Arts,0.2,0,0,0.02,0.23 +3rd Super Robot Wars Z Jigoku Hen,PS3,2014,Role-Playing,Namco Bandai Games,0,0,0.23,0,0.23 +Cars 2,3DS,2011,Racing,Disney Interactive Studios,0.21,0,0,0.02,0.23 +Petz Monkeyz House,DS,2008,Simulation,Ubisoft,0.2,0,0,0.02,0.23 +Spec Ops: The Line,PC,2012,Shooter,Take-Two Interactive,0.11,0.09,0,0.03,0.23 +Legion: The Legend of Excalibur,PS2,2002,Action,Midway Games,0.11,0.09,0,0.03,0.22 +FaceBreaker K.O. Party,Wii,2008,Fighting,Electronic Arts,0.2,0.01,0,0.02,0.22 +Justice League Heroes,PSP,2006,Role-Playing,Eidos Interactive,0.2,0.01,0,0.02,0.22 +Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack,PS3,2011,Action,Namco Bandai Games,0,0,0.22,0,0.22 +TNA iMPACT!,PS2,2008,Fighting,Midway Games,0.1,0,0,0.12,0.22 +Yu-Gi-Oh! GX: Spirit Caller (American Sales),DS,2006,Misc,Konami Digital Entertainment,0.18,0.03,0,0.02,0.22 +Def Jam: Fight for NY,GC,2004,Fighting,Electronic Arts,0.17,0.05,0,0.01,0.22 +Sword Art Online: Infinity Moment,PSP,2013,Role-Playing,Namco Bandai Games,0,0,0.22,0,0.22 +Spartan: Total Warrior,PS2,2005,Action,Sega,0.11,0.09,0,0.03,0.22 +Killer is Dead,PS3,2013,Action,Deep Silver,0.12,0.04,0.05,0.02,0.22 +EX Monopoly,GBA,2001,Misc,Takara,0.16,0.06,0,0,0.22 +Star Trek: The Game,X360,2013,Action,Namco Bandai Games,0.12,0.09,0,0.02,0.22 +64 de Hakken! Tamagotchi Minna de Tamagotchi World,N64,1997,Misc,Namco Bandai Games,0,0,0.22,0,0.22 +Mary-Kate and Ashley: Sweet 16 - Licenced to Drive,GC,2003,Misc,Acclaim Entertainment,0.17,0.04,0,0.01,0.22 +Deadly Duck,2600,1981,Shooter,20th Century Fox Video Games,0.21,0.01,0,0,0.22 +Assault,2600,1982,Action,Bomb,0.21,0.01,0,0,0.22 +Reactor,2600,1981,Action,Parker Bros.,0.21,0.01,0,0,0.22 +Ys Seven,PSP,2009,Role-Playing,Falcom Corporation,0.14,0,0.08,0.01,0.22 +Marvel Super Hero Squad: The Infinity Gauntlet,DS,2010,Action,THQ,0.17,0.03,0,0.02,0.22 +Gundam Battle Chronicle,PSP,2007,Action,Namco Bandai Games,0,0,0.22,0,0.22 +G-Force,PS3,2009,Action,Disney Interactive Studios,0.13,0.06,0,0.03,0.22 +Danball Senki Boost,PSP,2011,Action,Level 5,0,0,0.22,0,0.22 +Kidz Bop Dance Party! The Video Game,Wii,2010,Misc,D3Publisher,0.21,0,0,0.01,0.22 +Conflict: Vietnam,XB,2004,Shooter,SCi,0.17,0.05,0,0.01,0.22 +Whirl Tour,PS2,2002,Sports,Crave Entertainment,0.11,0.09,0,0.03,0.22 +Time Crisis: Crisis Zone,PS2,2004,Shooter,Namco Bandai Games,0.11,0.09,0,0.03,0.22 +Momotarou Dentetsu 15,PS2,2005,Misc,Hudson Soft,0,0,0.22,0,0.22 +Dark Souls II,XOne,2015,Role-Playing,Namco Bandai Games,0.13,0.07,0,0.02,0.22 +Discovery Kids: Dolphin Discovery,DS,2008,Simulation,505 Games,0.21,0,0,0.01,0.22 +Ben 10 Ultimate Alien: Cosmic Destruction,PS2,2010,Platform,D3Publisher,0.13,0.06,0,0.04,0.22 +Hatsune Miku: Project Mirai 2,3DS,2013,Action,Sega,0,0,0.22,0,0.22 +Skies of Arcadia Legends,GC,2002,Role-Playing,Atari,0.17,0.04,0,0.01,0.22 +Cloudy With a Chance of Meatballs,DS,2009,Platform,Ubisoft,0.2,0.01,0,0.02,0.22 +MotoGP 08,PS2,2008,Racing,Capcom,0.01,0,0,0.21,0.22 +Madden NFL 12,PSP,2011,Sports,Electronic Arts,0.21,0,0,0.02,0.22 +Sengoku Basara 3 Utage,PS3,2011,Action,Capcom,0,0,0.22,0,0.22 +Breath of Fire,GBA,2001,Role-Playing,Ubisoft,0.11,0.04,0.06,0,0.22 +Ragnarok DS,DS,2008,Role-Playing,GungHo,0.1,0,0.11,0.01,0.22 +Ford vs. Chevy,PS2,2005,Racing,Global Star,0.11,0.09,0,0.03,0.22 +NCAA Football 2005,GC,2004,Sports,Electronic Arts,0.17,0.04,0,0.01,0.22 +Hamtaro: Ham-Ham Games,GBA,2004,Sports,Nintendo,0.16,0.06,0,0,0.22 +Danny Phantom: The Ultimate Enemy,GBA,2005,Action,THQ,0.16,0.06,0,0,0.22 +Petz Rescue: Endangered Paradise,DS,2008,Adventure,Ubisoft,0.21,0,0,0.02,0.22 +MotoGP 09/10,PS3,2010,Racing,Capcom,0.05,0.13,0,0.04,0.22 +Rune Factory: Tides of Destiny,PS3,2011,Role-Playing,Marvelous Interactive,0.14,0,0.07,0.01,0.22 +A Boy and His Blob,Wii,2009,Platform,Majesco Entertainment,0.19,0.02,0,0.02,0.22 +Battleborn,PS4,2016,Shooter,Take-Two Interactive,0.09,0.08,0.01,0.04,0.22 +Move Fitness,PS3,,Sports,Sony Computer Entertainment,0,0.17,0,0.05,0.22 +Atelier Escha & Logy: Alchemists of the Dusk Sky,PS3,2013,Role-Playing,Tecmo Koei,0.06,0.04,0.1,0.02,0.22 +Hidden Mysteries: Buckingham Palace,DS,2010,Puzzle,Avanquest,0.13,0.07,0,0.02,0.22 +Crazy Climber,2600,1981,Action,Atari,0.21,0.01,0,0,0.22 +Super Adventure Island,SNES,1992,Platform,Hudson Soft,0,0,0.22,0,0.22 +Bust-A-Move 4,PS,1998,Puzzle,Acclaim Entertainment,0.12,0.08,0,0.01,0.22 +The Legend of Spyro: The Eternal Night,Wii,2007,Platform,Vivendi Games,0.18,0.02,0,0.02,0.22 +NFL Quarterback Club 97,PS,1996,Sports,Acclaim Entertainment,0.12,0.08,0,0.01,0.22 +Rampage: Total Destruction,Wii,2006,Action,Midway Games,0.19,0.01,0,0.02,0.22 +Galactic Wrestling: Featuring Ultimate Muscle,PS2,2004,Fighting,Namco Bandai Games,0.03,0.02,0.17,0.01,0.22 +Petz: Horse Club,Wii,2008,Misc,Ubisoft,0.2,0,0,0.02,0.22 +Dino Stalker,PS2,2002,Shooter,Capcom,0.07,0.06,0.08,0.02,0.22 +Rapala's Fishing Frenzy,Wii,2008,Sports,Activision,0.2,0,0,0.02,0.22 +Mobile Suit Gundam Seed,PS2,2003,Action,Namco Bandai Games,0,0,0.22,0,0.22 +Shinobi,3DS,2011,Platform,Sega,0.14,0.07,0,0.02,0.22 +Puss in Boots,Wii,2011,Action,THQ,0.19,0.01,0,0.01,0.22 +Tony Hawk's Downhill Jam,DS,2006,Sports,Activision,0.2,0,0,0.02,0.22 +Mega Man Zero 3,GBA,2004,Platform,Capcom,0.16,0.06,0,0,0.22 +LEGO The Lord of the Rings,PC,2012,Action,Warner Bros. Interactive Entertainment,0.07,0.13,0,0.03,0.22 +Hitman: HD Trilogy,PS3,2013,Action,Square Enix,0.07,0.1,0,0.04,0.22 +Aliens vs Predator: Requiem,PSP,2007,Action,Vivendi Games,0.03,0.12,0,0.07,0.22 +Castlevania: Lords of Shadow 2,PS3,2014,Action,Konami Digital Entertainment,0.03,0.13,0.02,0.04,0.22 +Barbie: Groom and Glam Pups,Wii,2010,Action,THQ,0.19,0.02,0,0.01,0.22 +KORG DS-10 Synthesizer,DS,2008,Misc,AQ Interactive,0.2,0.01,0,0.02,0.22 +Tenchu: Shadow Assassins,Wii,2008,Action,Ubisoft,0.16,0.01,0.03,0.02,0.22 +Barbie Super Sports,PS,1999,Sports,Mattel Interactive,0.12,0.08,0,0.01,0.22 +CSI: Fatal Conspiracy,Wii,2010,Adventure,Ubisoft,0.12,0.08,0,0.02,0.22 +Nicktoons Collection: Game Boy Advance Video Volume 2,GBA,2004,Misc,,0.16,0.06,0,0,0.22 +Jackass the Game,PSP,2007,Action,Empire Interactive,0.09,0.08,0,0.05,0.22 +The Legend of Heroes: Trails of Cold Steel,PS3,2013,Role-Playing,Nippon Ichi Software,0.05,0.04,0.12,0.02,0.22 +Tom Clancy's Rainbow Six: Siege,PC,2015,Shooter,Ubisoft,0.12,0.08,0,0.02,0.22 +Dungeon Hunter Alliance,PSV,2012,Action,Ubisoft,0.09,0.1,0,0.04,0.22 +LEGO Harry Potter: Years 5-7,PC,,Action,Warner Bros. Interactive Entertainment,0.05,0.14,0,0.03,0.22 +Duel Masters: Kaijudo Showdown,GBA,2004,Misc,Atari,0.16,0.06,0,0,0.22 +Imagine: Boutique Owner,DS,2009,Simulation,Ubisoft,0.2,0,0,0.02,0.22 +The Walking Dead: Season Two,PS3,2014,Adventure,Telltale Games,0.09,0.09,0,0.04,0.22 +The Lord of the Rings: The Third Age,GBA,2004,Role-Playing,Electronic Arts,0.16,0.06,0,0,0.22 +Cursed Mountain,Wii,2009,Adventure,Deep Silver,0.09,0.1,0,0.02,0.22 +The Suffering,XB,2004,Action,Midway Games,0.16,0.05,0,0.01,0.22 +Dragon Quest Builders: Revive Alefgard,PS4,2016,Role-Playing,Square Enix,0,0,0.22,0,0.22 +Tetris Worlds,GC,2002,Puzzle,THQ,0.17,0.04,0,0.01,0.22 +Teenage Mutant Ninja Turtles: Danger of the Ooze,X360,2014,Adventure,Activision,0.11,0.09,0,0.02,0.22 +ECW Hardcore Revolution,N64,2000,Fighting,Acclaim Entertainment,0.18,0.04,0,0,0.22 +Mega Man 64,N64,2000,Action,Capcom,0.14,0.03,0.05,0,0.22 +Chou-Kuukan Night Pro Yakyuu King(higher JP sales),N64,1996,Sports,Imagineer,0,0,0.22,0,0.22 +Rampage 2: Universal Tour,N64,1999,Action,GT Interactive,0.18,0.04,0,0,0.22 +Ms. Pac-Man: Maze Madness,N64,2000,Puzzle,Namco Bandai Games,0.18,0.04,0,0,0.22 +Tales of Graces,Wii,2009,Role-Playing,Namco Bandai Games,0,0,0.22,0,0.22 +Age of Empires: Mythologies,DS,2008,Strategy,THQ,0.17,0.03,0,0.02,0.22 +Viewtiful Joe 2,GC,2004,Action,Capcom,0.17,0.04,0,0.01,0.22 +Where's Waldo? The Fantastic Journey,DS,2009,Adventure,Ubisoft,0.2,0,0,0.02,0.22 +ATV Quad Kings,Wii,2009,Racing,Zoo Digital Publishing,0.21,0,0,0.01,0.22 +Mary-Kate and Ashley: Sweet 16 - Licenced to Drive,PS2,2002,Misc,Acclaim Entertainment,0.11,0.08,0,0.03,0.22 +Jewel Quest: Expeditions,DS,2007,Puzzle,Avanquest,0.03,0.18,0,0.01,0.22 +NBA Jam Extreme,PS,1996,Sports,Acclaim Entertainment,0.12,0.08,0,0.01,0.22 +Dragon Ball: Origins (JP & incomplete US sales),DS,2008,Adventure,Atari,0.04,0,0.17,0,0.22 +Touch the Dead,DS,2007,Shooter,Eidos Interactive,0.2,0,0,0.02,0.22 +Tropico 3,X360,2009,Strategy,Kalypso Media,0.15,0.02,0.03,0.02,0.22 +Nickelodeon Party Blast,XB,2002,Misc,Infogrames,0.16,0.05,0,0.01,0.22 +Ben 10 Alien Force: Vilgax Attacks,X360,2009,Action,D3Publisher,0.11,0.09,0,0.02,0.22 +NHL Championship 2000,PS,1998,Sports,Fox Interactive,0.12,0.08,0,0.01,0.22 +G.I. Joe: The Rise of Cobra,Wii,2009,Action,Electronic Arts,0.17,0.03,0,0.02,0.22 +Shellshock: Nam '67,XB,2004,Shooter,Eidos Interactive,0.16,0.05,0,0.01,0.22 +Hunted: The Demon's Forge,X360,2011,Action,Bethesda Softworks,0.13,0.07,0,0.02,0.22 +Kartia: The Word of Fate,PS,1998,Strategy,Konami Digital Entertainment,0.05,0.03,0.12,0.01,0.22 +Tales of Berseria,PS4,2016,Role-Playing,Namco Bandai Games,0,0,0.22,0,0.22 +All-Star Baseball 2002,GC,2001,Sports,Acclaim Entertainment,0.17,0.04,0,0.01,0.22 +Magna Carta: Tears of Blood,PS2,2004,Role-Playing,505 Games,0.11,0.08,0,0.03,0.22 +Lethal Skies Elite Pilot: Team SW,PS2,2001,Simulation,Sammy Corporation,0.11,0.08,0,0.03,0.22 +Capcom vs. SNK,DC,2000,Fighting,Virgin Interactive,0,0,0.22,0,0.22 +NBA Live 09 All-Play,Wii,2008,Sports,Electronic Arts,0.19,0.01,0,0.02,0.22 +Infinite Space,DS,2009,Role-Playing,Sega,0.07,0.06,0.07,0.01,0.22 +Yoostar2,X360,2011,Misc,Unknown,0.11,0.09,0,0.02,0.22 +Transformers: Devastation,PS4,2015,Action,Activision,0.1,0.08,0,0.04,0.22 +Tamagotchi no KiraKira Omisecchi,DS,2008,Misc,Namco Bandai Games,0,0,0.22,0,0.22 +From Russia With Love,GC,2005,Action,Electronic Arts,0.17,0.04,0,0.01,0.22 +You Don't Know Jack,Wii,2011,Misc,THQ,0.2,0,0,0.01,0.22 +Just Dance 2016,PS3,2015,Misc,Ubisoft,0.1,0.08,0,0.04,0.22 +Pinball Hall of Fame: The Williams Collection,PS3,2009,Misc,Crave Entertainment,0.2,0,0,0.02,0.22 +Guitar Hero: Smash Hits,PS2,2009,Misc,Activision,0.11,0.01,0,0.1,0.22 +NFL Quarterback Club 2002,PS2,2001,Sports,Acclaim Entertainment,0.11,0.08,0,0.03,0.22 +Kirby's Star Stacker,GB,1997,Puzzle,Nintendo,0,0,0.22,0,0.22 +NCAA Basketball 09,X360,2008,Sports,Electronic Arts,0.2,0,0,0.02,0.22 +Full Auto,X360,2006,Shooter,Sega,0.19,0.01,0,0.02,0.22 +Dead Island,PC,2011,Action,Deep Silver,0.12,0.07,0,0.03,0.22 +Growlanser: Heritage of War,PS2,2006,Role-Playing,Rising Star Games,0.11,0.08,0,0.03,0.22 +Hasbro Family Game Night,DS,2009,Puzzle,Electronic Arts,0.01,0.19,0,0.02,0.22 +Shin Megami Tensei x Fire Emblem,WiiU,2015,Role-Playing,Nintendo,0.1,0.04,0.06,0.01,0.22 +Rugby 2004,PS2,2003,Sports,Electronic Arts,0.11,0.08,0,0.03,0.22 +Disney's Magical Quest Starring Mickey and Minnie,GBA,2002,Action,Nintendo,0.16,0.06,0,0,0.22 +Spirit Camera: The Cursed Memoir,3DS,2012,Adventure,Nintendo,0.12,0.02,0.06,0.01,0.22 +NBA 06,PSP,2005,Sports,Sony Computer Entertainment,0.2,0,0,0.02,0.22 +Naruto: Ninja Council,GBA,2003,Action,Tomy Corporation,0.16,0.06,0,0,0.22 +Shin Megami Tensei: Persona,PSP,2009,Role-Playing,Atlus,0.08,0,0.13,0.01,0.22 +DS Nishimura Kyotaro Suspense Shin Tantei Series: Kyoto Atami Zekkai no Kotou - Satsui no Wana,DS,2007,Adventure,Tecmo Koei,0,0,0.22,0,0.22 +Wreckless: ThE YaKuza MisSiOns,PS2,2002,Racing,Activision,0.11,0.08,0,0.03,0.22 +Madden NFL 07,DS,2006,Sports,Electronic Arts,0.2,0,0,0.02,0.22 +Jikkyou Powerful Major League,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.22,0,0.22 +NFL 2K3,GC,2002,Sports,Sega,0.17,0.04,0,0.01,0.22 +Darksiders II,PS4,2015,Action,Nordic Games,0.09,0.1,0,0.04,0.22 +Saltwater Sportfishing,PS,2001,Sports,Take-Two Interactive,0.12,0.08,0,0.01,0.22 +Yoshi Touch & Go (JP sales),DS,2005,Platform,Nintendo,0,0,0.22,0,0.22 +Samurai Jack: The Amulet of Time,GBA,2003,Platform,Zoo Digital Publishing,0.16,0.06,0,0,0.22 +Pass the Pigs,DS,2008,Misc,THQ,0.2,0,0,0.02,0.22 +J-League Winning Eleven 2008: Club Championship,PS2,2008,Sports,Konami Digital Entertainment,0,0,0.22,0,0.22 +Jackie Chan: Stuntmaster,PS,1999,Action,Sony Computer Entertainment,0.12,0.08,0,0.01,0.22 +Sports Car GT,PS,1999,Racing,Electronic Arts,0.12,0.08,0,0.01,0.22 +Lost Planet 3,PS3,2013,Shooter,Capcom,0.07,0.06,0.06,0.03,0.22 +Order Up!,Wii,2008,Misc,Zoo Digital Publishing,0.19,0.01,0,0.02,0.22 +Code Name: S.T.E.A.M.,3DS,2015,Strategy,Nintendo,0.14,0.05,0.01,0.02,0.22 +SBK X: Superbike World Championship,PS3,2010,Racing,Black Bean Games,0.05,0.13,0,0.04,0.22 +NBA Live 14,PS4,2013,Sports,Electronic Arts,0.14,0.05,0,0.03,0.22 +Scooby-Doo! Mystery Mayhem,GC,2004,Action,THQ,0.17,0.04,0,0.01,0.22 +Kanzen Chuuki Pro Yakyuu Greatest Nine,SAT,1995,Sports,Sega,0,0,0.22,0,0.22 +American Idol,GBA,2003,Misc,Codemasters,0.15,0.06,0,0,0.22 +Summer Athletics: The Ultimate Challenge (Others sales),Wii,2008,Sports,DTP Entertainment,0,0.2,0,0.01,0.22 +Britney's Dance Beat,GBA,2002,Misc,THQ,0.15,0.06,0,0,0.22 +Shrek SuperSlam,GC,2005,Action,Activision,0.17,0.04,0,0.01,0.22 +Sniper: Ghost Warrior 2,X360,2013,Shooter,City Interactive,0.06,0.13,0,0.02,0.22 +Over G Fighters,X360,2006,Simulation,Ubisoft,0.19,0.01,0,0.02,0.22 +Sailor Moon,SNES,1993,Action,Namco Bandai Games,0,0,0.22,0,0.22 +Apache: Air Assault,PS3,2010,Simulation,Activision,0.11,0.07,0,0.03,0.22 +One Piece: Pirate Warriors 3,PSV,2015,Action,Namco Bandai Games,0,0.07,0.13,0.02,0.22 +Herdy Gerdy,PS2,2002,Adventure,Eidos Interactive,0.11,0.08,0,0.03,0.22 +Armored Core V,X360,2012,Simulation,Namco Bandai Games,0.13,0.03,0.04,0.01,0.22 +EVE Online,PC,2003,Role-Playing,CCP,0,0.19,0,0.02,0.22 +Digimon World Re:Digitize,PSP,2012,Action,Namco Bandai Games,0,0,0.22,0,0.22 +Ninja Gaiden: Dragon Sword,DS,2008,Action,Tecmo Koei,0.17,0.02,0.02,0.02,0.22 +Ride,PS4,2015,Racing,Milestone S.r.l.,0.03,0.13,0.03,0.03,0.22 +Blue Dragon Plus,DS,2008,Role-Playing,Ignition Entertainment,0.12,0.04,0.05,0.01,0.22 +Lords of the Fallen,XOne,2014,Role-Playing,Square Enix,0.1,0.1,0,0.02,0.22 +NBA in the Zone 2000,PS,2000,Sports,Konami Digital Entertainment,0.12,0.08,0,0.01,0.21 +Dark Summit,PS2,2001,Sports,THQ,0.11,0.08,0,0.03,0.21 +Afrika,PS3,2008,Adventure,Unknown,0.12,0,0.08,0.01,0.21 +Cabela's Big Game Hunter: Ultimate Challenge,PS,2001,Sports,Activision Value,0.12,0.08,0,0.01,0.21 +The Legend of Heroes: Trails in the Sky First Chapter,PSP,2006,Role-Playing,Ghostlight,0.1,0.03,0.06,0.03,0.21 +Are You Smarter Than a 5th Grader? Back to School,Wii,2010,Misc,Nintendo,0.2,0,0,0.02,0.21 +"Steins,Gate",PSV,2013,Adventure,PQube,0.07,0.09,0,0.05,0.21 +The Dukes of Hazzard: Return of the General Lee,PS2,2004,Racing,Ubisoft,0.11,0.08,0,0.03,0.21 +Pandemonium!,PS,1996,Platform,BMG Interactive Entertainment,0.12,0.08,0,0.01,0.21 +SingStar: Back to the 80s,PS3,2011,Misc,Sony Computer Entertainment,0,0.16,0,0.05,0.21 +Namco Museum: 50th Anniversary,GC,2005,Misc,Namco Bandai Games,0.17,0.04,0,0.01,0.21 +Crash 'N' Burn,PS2,2004,Racing,Eidos Interactive,0.11,0.08,0,0.03,0.21 +NBA,PSP,2005,Sports,Sony Computer Entertainment,0.2,0,0,0.02,0.21 +Teenage Mutant Ninja Turtles: Smash-Up,PS2,2009,Fighting,Ubisoft,0.11,0.08,0,0.03,0.21 +Pro Yakyuu Greatest Nine '97,SAT,1997,Sports,Sega,0,0,0.21,0,0.21 +Transformers: Dark of the Moon,3DS,2011,Action,Activision,0.16,0.04,0,0.02,0.21 +Final Fantasy Fables: Chocobo's Dungeon,Wii,2007,Role-Playing,Square Enix,0.09,0,0.11,0.01,0.21 +Lunar: Silver Star Story Complete,SAT,1997,Role-Playing,Kadokawa Shoten,0,0,0.21,0,0.21 +Dorabase DS: Dramatic Stadium,DS,2007,Sports,Namco Bandai Games,0,0,0.21,0,0.21 +Disaster Report,PS2,2002,Action,Agetec,0.03,0.02,0.15,0.01,0.21 +EVE: burst error,SAT,1997,Adventure,Imagineer,0,0,0.21,0,0.21 +We Sing Robbie Williams,Wii,2010,Misc,Nordic Games,0,0.19,0,0.03,0.21 +Backyard NFL Football '09,Wii,2008,Sports,Atari,0.2,0,0,0.02,0.21 +Pro Evolution Soccer 2012,Wii,2011,Action,Konami Digital Entertainment,0.08,0.08,0.03,0.02,0.21 +Akiba's Trip: Undead & Undressed,PSV,2013,Action,Nippon Ichi Software,0.09,0.02,0.08,0.03,0.21 +Speed Racer: The Videogame,PS2,2008,Racing,Warner Bros. Interactive Entertainment,0.1,0.08,0,0.03,0.21 +College Hoops 2K7,X360,2006,Sports,Take-Two Interactive,0.2,0,0,0.02,0.21 +The Amazing Spider-Man 2 (2014),XOne,2014,Action,Activision,0.12,0.07,0,0.02,0.21 +Big League Sports,X360,2011,Sports,Activision,0.18,0.02,0,0.01,0.21 +Bratz: Forever Diamondz,GC,2006,Adventure,THQ,0.17,0.04,0,0.01,0.21 +WCW Backstage Assault,PS,1999,Action,Electronic Arts,0.12,0.08,0,0.01,0.21 +UFC Undisputed 2010,PSP,2010,Fighting,THQ,0.11,0.07,0,0.04,0.21 +Baja: Edge of Control,PS3,2008,Racing,THQ,0.1,0.08,0,0.04,0.21 +Wild Wild Racing,PS2,2000,Racing,Interplay,0.1,0.08,0,0.03,0.21 +Magician's Quest: Town of Magic,3DS,2012,Simulation,Konami Digital Entertainment,0,0,0.21,0,0.21 +The Bard's Tale,PS2,2004,Role-Playing,Ubisoft,0.1,0.08,0,0.03,0.21 +NCAA March Madness 08,X360,2007,Sports,Electronic Arts,0.2,0,0,0.02,0.21 +Momotarou Dentetsu 16,PS2,2006,Misc,Hudson Soft,0,0,0.21,0,0.21 +Robotech: The Macross Saga,GBA,2002,Shooter,TDK Mediactive,0.15,0.06,0,0,0.21 +Yu Yu Hakusho: Dark Tournament,PS2,,Fighting,,0.1,0.08,0,0.03,0.21 +MTV Celebrity Deathmatch,XB,2003,Fighting,Gotham Games,0.16,0.05,0,0.01,0.21 +Gekijouban Macross F: Itsuwarino Utahime - Hybrid Pack,PS3,2010,Action,Namco Bandai Games,0,0,0.21,0,0.21 +Conflict Zone,PS2,2002,Strategy,Ubisoft,0.1,0.08,0,0.03,0.21 +Tony Hawk's American Sk8land,DS,2005,Sports,Activision,0.19,0.01,0,0.02,0.21 +de Blob 2,PS3,2011,Platform,THQ,0.11,0.07,0,0.03,0.21 +The BIGS 2,X360,2009,Sports,Take-Two Interactive,0.19,0.01,0,0.02,0.21 +BloodRayne,XB,2002,Shooter,Universal Interactive,0.16,0.05,0,0.01,0.21 +Hannah Montana: The Movie,X360,2009,Adventure,Disney Interactive Studios,0.14,0.06,0,0.02,0.21 +50 Cent: Blood on the Sand,X360,2009,Shooter,THQ,0.12,0.07,0,0.02,0.21 +Bratz: Girlz Really Rock,Wii,2008,Action,THQ,0.19,0,0,0.02,0.21 +NHL 2K6,XB,2005,Sports,Take-Two Interactive,0.16,0.05,0,0.01,0.21 +Tenchu: Return From Darkness,XB,2004,Action,Activision,0.16,0.05,0,0.01,0.21 +World Poker Tour,PS2,2005,Misc,Take-Two Interactive,0.1,0.08,0,0.03,0.21 +Prison Break: The Conspiracy,X360,2010,Action,Deep Silver,0.07,0.12,0,0.02,0.21 +Neo Contra,PS2,2004,Shooter,Konami Digital Entertainment,0.1,0.08,0,0.03,0.21 +MVP Baseball,PSP,2005,Sports,Electronic Arts,0.2,0,0,0.02,0.21 +GRID Autosport,PS3,2014,Racing,Codemasters,0.05,0.11,0.01,0.04,0.21 +Ghostbusters II,2600,,Action,Activision,0.2,0.01,0,0,0.21 +Breakaway IV,2600,,Puzzle,Sears,0.2,0.01,0,0,0.21 +RealSports Baseball,2600,1981,Sports,Atari,0.2,0.01,0,0,0.21 +Now! That's What I Call Music: Dance & Sing,Wii,2011,Misc,Unknown,0,0.18,0,0.04,0.21 +Yu-Gi-Oh! 5D's World Championship 2011: Over the Nexus,DS,2011,Strategy,Konami Digital Entertainment,0.1,0.03,0.07,0.01,0.21 +Metal Gear Solid V: The Phantom Pain,X360,2015,Action,Konami Digital Entertainment,0.12,0.08,0,0.02,0.21 +Hasbro Family Game Night 3,X360,2010,Misc,Electronic Arts,0.17,0.03,0,0.01,0.21 +G.I. Joe: The Rise of Cobra,PS3,2009,Action,Electronic Arts,0.11,0.07,0,0.03,0.21 +Rayman Raving Rabbids,X360,2007,Misc,Ubisoft,0.18,0.01,0,0.02,0.21 +Viewtiful Joe 2,PS2,2004,Action,Capcom,0.1,0.08,0,0.03,0.21 +Quake III: Revolution,PS2,2001,Shooter,Electronic Arts,0.1,0.08,0,0.03,0.21 +Pac-Man World 3,PS2,2005,Platform,Namco Bandai Games,0.1,0.08,0,0.03,0.21 +Naruto: Clash of Ninja (JP sales),GC,2003,Fighting,Tomy Corporation,0,0,0.21,0.01,0.21 +Robotech: Battlecry,XB,,Shooter,Unknown,0.16,0.05,0,0.01,0.21 +NO?L: NOT DiGITAL,PS,1996,Adventure,Pioneer LDC,0,0,0.2,0.01,0.21 +Transformer: Rise of the Dark Spark,PS4,2014,Action,Activision,0.07,0.1,0.01,0.04,0.21 +Dragon Ball Z Hyper Dimension,SNES,1995,Fighting,Namco Bandai Games,0,0,0.21,0,0.21 +Hidden Mysteries: Titanic - Secrets of the Fateful Voyage,Wii,2009,Adventure,GSP,0.12,0.07,0,0.02,0.21 +Senran Kagura 2: Deep Crimson,3DS,2014,Action,Marvelous Entertainment,0.09,0.03,0.08,0.01,0.21 +Marvel Super Hero Squad,PSP,2009,Fighting,THQ,0.17,0.02,0,0.02,0.21 +The Chronicles of Narnia: Prince Caspian,DS,2008,Action,Disney Interactive Studios,0.19,0.01,0,0.02,0.21 +Champion Jockey: G1 Jockey & Gallop Racer,PS3,2011,Sports,Tecmo Koei,0.06,0.05,0.08,0.02,0.21 +HBO Boxing,PS,2000,Fighting,Acclaim Entertainment,0.12,0.08,0,0.01,0.21 +Yoga Wii,Wii,2009,Sports,JoWood Productions,0.15,0.05,0,0.02,0.21 +Darkwatch,XB,2005,Shooter,Ubisoft,0.16,0.05,0,0.01,0.21 +Cabela's Survival: Shadows of Katmai,Wii,2011,Sports,Activision,0.15,0.05,0,0.02,0.21 +Prince of Persia: Revelations,PSP,2005,Adventure,Ubisoft,0.18,0.01,0,0.02,0.21 +Bass Pro Shops: The Strike,X360,2009,Sports,XS Games,0.2,0,0,0.02,0.21 +Front Mission 5: Scars of the War,PS2,2005,Strategy,Square Enix,0,0,0.21,0,0.21 +Maximo vs Army of Zin,PS2,2003,Platform,Capcom,0.1,0.08,0,0.03,0.21 +The Fairly OddParents: Breakin' Da Rules,GC,2003,Platform,THQ,0.16,0.04,0,0.01,0.21 +Namco Museum Megamix,Wii,2010,Misc,Namco Bandai Games,0.2,0,0,0.01,0.21 +Wedding Dash,DS,2009,Action,Zoo Games,0.2,0,0,0.01,0.21 +Hot Shots Tennis: Get a Grip,PSP,2010,Sports,Sony Computer Entertainment,0.06,0,0.13,0.01,0.21 +Summoner 2,PS2,2002,Role-Playing,THQ,0.1,0.08,0,0.03,0.21 +The Land Before Time: Big Water Adventure,PS,2002,Platform,TDK Mediactive,0.12,0.08,0,0.01,0.21 +Shadow of Destiny,PS2,2001,Adventure,Konami Digital Entertainment,0.09,0.07,0.03,0.02,0.21 +Valkyria Chronicles III: Unrecorded Chronicles,PSP,,Strategy,Sega,0,0,0.21,0,0.21 +Cabela's Deer Hunt: 2004 Season,XB,2003,Sports,Activision Value,0.16,0.05,0,0.01,0.21 +Disney's Planes,WiiU,2013,Simulation,Disney Interactive Studios,0.15,0.04,0,0.02,0.21 +Brunswick Pro Bowling,PSP,2007,Sports,505 Games,0.19,0,0,0.02,0.21 +World Series of Poker,PSP,2005,Misc,Activision,0.19,0,0,0.02,0.21 +ClayFighter 63 1/3,N64,1997,Fighting,Interplay,0.17,0.04,0,0,0.21 +Monopoly,N64,1999,Misc,Hasbro Interactive,0.17,0.04,0,0,0.21 +WCW Nitro,N64,1998,Fighting,THQ,0.17,0.04,0,0,0.21 +Cruis'n Exotica,N64,2000,Racing,Midway Games,0.17,0.04,0,0,0.21 +Gex 3: Deep Cover Gecko,N64,1999,Platform,Crave Entertainment,0.17,0.04,0,0,0.21 +WinBack: Covert Operations,N64,1999,Shooter,Virgin Interactive,0.17,0.04,0,0,0.21 +Heroes of Ruin,3DS,2012,Role-Playing,Nintendo,0.13,0.07,0,0.02,0.21 +WipeOut 3 The Game,X360,2012,Action,Activision,0.2,0,0,0.01,0.21 +Bastard!! Utsuro Naru Kamigami no Utsuwa,PS,1996,Role-Playing,Seta Corporation,0,0,0.2,0.01,0.21 +SBK Superbike World Championship,X360,2008,Racing,Black Bean Games,0.06,0.14,0,0.01,0.21 +The King of Fighters '96,SAT,1996,Fighting,SNK,0,0,0.21,0,0.21 +Bionicle,GC,2003,Action,Electronic Arts,0.16,0.04,0,0.01,0.21 +WRC: FIA World Rally Championship,PS3,,Racing,Black Bean Games,0,0.15,0.01,0.05,0.21 +Angel Blade: Neo Tokyo Guardians,PS,1997,Role-Playing,On Demand,0.12,0.08,0,0.01,0.21 +Threads of Fate,PS,1999,Role-Playing,SquareSoft,0.12,0.08,0,0.01,0.21 +PoPoLoCrois Monogatari II,PS,2000,Role-Playing,Sony Computer Entertainment,0,0,0.2,0.01,0.21 +Famicom Mini: Ganbare Goemon! Karakuri Douchuu,GBA,2004,Platform,Konami Digital Entertainment,0,0,0.2,0.01,0.21 +Vampire Rain,X360,2007,Action,Microsoft Game Studios,0.18,0,0.01,0.01,0.21 +Way of the Samurai 3,X360,2009,Action,Gamebridge,0.12,0.05,0.02,0.02,0.21 +Deus Ex: The Conspiracy,PS2,2002,Action,Eidos Interactive,0.1,0.08,0,0.03,0.21 +Unreal II: The Awakening,XB,2004,Shooter,Atari,0.17,0.04,0,0.01,0.21 +Rumble Racing,PS2,2001,Racing,Electronic Arts,0.1,0.08,0,0.03,0.21 +Spider-Man: Web of Shadows,PS2,2008,Action,Activision,0.1,0.08,0,0.03,0.21 +Disgaea D2: A Brighter Darkness,PS3,2013,Role-Playing,Nippon Ichi Software,0.09,0,0.1,0.01,0.21 +Batman Begins,XB,2005,Action,Electronic Arts,0.16,0.04,0,0.01,0.21 +Just Dance: Greatest Hits,Wii,2012,Misc,Ubisoft,0.15,0.04,0,0.02,0.21 +J-League Winning Eleven 10 + Europa League 06-07,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.21,0,0.21 +Shrek: Reekin' Havoc,GBA,2003,Platform,TDK Mediactive,0.15,0.06,0,0,0.21 +Solatorobo: Red the Hunter,DS,2010,Role-Playing,Nintendo,0.08,0.04,0.07,0.01,0.21 +Tales of Phantasia: Narikiri Dungeon X,PSP,2010,Role-Playing,Namco Bandai Games,0,0,0.21,0,0.21 +JSRF: Jet Set Radio Future,XB,2002,Action,Sega,0.13,0.04,0.03,0.01,0.21 +NHL Hitz 20-02,GC,2001,Sports,Midway Games,0.16,0.04,0,0.01,0.21 +The Last Airbender,Wii,2010,Action,THQ,0.12,0.07,0,0.02,0.21 +NCAA Football 2003,GC,2002,Sports,Electronic Arts,0.16,0.04,0,0.01,0.21 +StokEd,X360,2009,Sports,Zushi Games,0.18,0.01,0,0.01,0.21 +Rollcage,PS,1999,Racing,Psygnosis,0.12,0.08,0,0.01,0.21 +ESPN Winter X Games: Snowboarding 2002,PS2,2000,Sports,Konami Digital Entertainment,0.1,0.08,0,0.03,0.21 +Project: Snowblind,PS2,2005,Action,Eidos Interactive,0.1,0.08,0,0.03,0.21 +Tony Hawk's Motion,DS,2008,Sports,Activision,0.19,0,0,0.02,0.21 +Super Robot Taisen K,DS,2009,Strategy,Namco Bandai Games,0,0,0.21,0,0.21 +Mortal Kombat: Special Forces,PS,2000,Fighting,Midway Games,0.12,0.08,0,0.01,0.21 +LEGO The Hobbit,PSV,2014,Action,Warner Bros. Interactive Entertainment,0.03,0.13,0,0.05,0.21 +Rayman Legends,PSV,2014,Platform,Ubisoft,0.03,0.12,0,0.05,0.21 +Dragon Ball Z: Harukanaru Densetsu,DS,2007,Role-Playing,Namco Bandai Games,0.19,0,0,0.02,0.21 +Wacky Races: Crash & Dash,DS,2008,Racing,Eidos Interactive,0.19,0,0,0.01,0.21 +I Spy: Castle,DS,2011,Puzzle,Scholastic Inc.,0.19,0,0,0.01,0.21 +Shin Megami Tensei: Persona 3 (jp sales),PS2,2006,Role-Playing,Tecmo Koei,0,0,0.21,0,0.21 +Greg Hastings Paintball 2,X360,2010,Shooter,Majesco Entertainment,0.19,0,0,0.01,0.21 +Evil Dead: Regeneration,PS2,2005,Action,THQ,0.1,0.08,0,0.03,0.21 +Dead to Rights: Retribution,X360,2010,Shooter,Namco Bandai Games,0.11,0.08,0,0.02,0.21 +NCAA March Madness 07,X360,2007,Sports,Electronic Arts,0.19,0,0,0.02,0.21 +NHL 2003,XB,2002,Sports,Electronic Arts,0.15,0.04,0,0.01,0.21 +Marvel Super Hero Squad: Comic Combat,PS3,2011,Action,THQ,0.11,0.07,0,0.03,0.21 +X-Men: Children of the Atom,SAT,1995,Fighting,Acclaim Entertainment,0,0,0.21,0,0.21 +Barbie Fashion Show: An Eye for Style,DS,2008,Misc,Activision,0.19,0,0,0.02,0.21 +Tiger Woods PGA Tour,PSP,2005,Sports,Electronic Arts,0.19,0,0,0.02,0.21 +Yarudora Series Vol. 2: Kisetsu wo Dakishimete,PS,1998,Adventure,Sony Computer Entertainment,0,0,0.19,0.01,0.21 +NHL 2K3,PS2,2002,Sports,Sega,0.1,0.08,0,0.03,0.21 +Heisei Kyouiku linkai DS,DS,2006,Misc,Namco Bandai Games,0,0,0.21,0,0.21 +SpongeBob SquarePants: Game Boy Advance Video Volume 3,GBA,2004,Misc,,0.15,0.05,0,0,0.21 +Pro Yaky? Spirits 2010,PS3,2010,Sports,Konami Digital Entertainment,0,0,0.21,0,0.21 +The Naked Brothers Band: The Video Game,Wii,2008,Misc,THQ,0.19,0,0,0.01,0.21 +Final Fight One,GBA,2001,Fighting,Ubisoft,0.09,0.03,0.08,0,0.21 +Rune Factory: Tides of Destiny,Wii,2011,Role-Playing,Marvelous Interactive,0.14,0,0.06,0.01,0.21 +The Amazing Spider-Man (Console Version),DS,2012,Action,Activision,0.15,0.04,0,0.01,0.21 +NCAA Football 10,PSP,2009,Sports,Electronic Arts,0.19,0,0,0.02,0.21 +Gallop Racer 2003: A New Breed,PS2,2002,Sports,Zoo Digital Publishing,0.04,0.03,0.12,0.01,0.21 +Dawn of Discovery,Wii,2009,Simulation,Ubisoft,0.13,0.06,0,0.02,0.21 +BeyBlade VForce: Super Tournament Battle,GC,2002,Action,Atari,0.16,0.04,0,0.01,0.21 +Outlaw Golf 2,XB,2004,Sports,Global Star,0.15,0.04,0,0.01,0.21 +Little Battlers eXperience: Baku Boost,3DS,2012,Action,Nintendo,0,0,0.21,0,0.21 +Anarchy Reigns,PS3,2012,Action,Sega,0.1,0.03,0.06,0.02,0.21 +CSI: Deadly Intent,X360,2009,Adventure,Ubisoft,0.1,0.08,0,0.02,0.21 +Defiance,PC,2013,Shooter,Trion Worlds,0.14,0.04,0,0.02,0.21 +J-League Pro Soccer Club o Tsukurou! 7 Euro Plus,PSP,2011,Sports,Sega,0,0,0.21,0,0.21 +LEGO Ninjago: Shadow of Ronin,3DS,2015,Action,Warner Bros. Interactive Entertainment,0.05,0.1,0.04,0.01,0.21 +Bugs Bunny & Taz: Time Busters,PS,2000,Adventure,Infogrames,0.11,0.08,0,0.01,0.21 +Need for Speed Carbon: Own the City,DS,2006,Racing,Electronic Arts,0.17,0.02,0,0.02,0.21 +Dragon Ball Z: Sagas,GC,2005,Fighting,Atari,0.16,0.04,0,0.01,0.21 +Kung Fu Rider,PS3,2010,Action,Sony Computer Entertainment,0.06,0.1,0.01,0.04,0.21 +Jikkyou Powerful Pro Yakyuu 2012,PS3,2012,Action,Konami Digital Entertainment,0,0,0.21,0,0.21 +X2: Wolverine's Revenge,XB,2003,Platform,Activision,0.15,0.04,0,0.01,0.21 +Power Rangers: Wild Force,GBA,2002,Action,THQ,0.15,0.05,0,0,0.21 +The Wolf Among Us,PS4,2014,Adventure,Telltale Games,0.1,0.07,0,0.03,0.21 +Thrillville,PSP,2006,Strategy,Atari,0.18,0,0,0.02,0.2 +Battle of Giants: Dinosaurs Strike,Wii,2010,Strategy,Ubisoft,0.15,0.04,0,0.02,0.2 +Attack on Titan (KOEI),PS4,2016,Action,Tecmo Koei,0.02,0.06,0.11,0.02,0.2 +The King of Fighters '95,NG,1995,Fighting,SNK,0,0,0.2,0,0.2 +Discovery Kids: Pony Paradise,DS,2009,Simulation,505 Games,0.19,0,0,0.01,0.2 +Mary-Kate and Ashley: Girls Night Out,GBA,2002,Misc,Acclaim Entertainment,0.15,0.05,0,0,0.2 +Cabela's North American Adventures,Wii,2010,Sports,Activision,0.19,0,0,0.01,0.2 +Enchanted Arms,PS3,2007,Role-Playing,Ubisoft,0.17,0.01,0,0.02,0.2 +Beyblade G-Revolution,GBA,2004,Action,Atari,0.15,0.05,0,0,0.2 +WWE All Stars,Wii,2011,Fighting,THQ,0.11,0.07,0,0.02,0.2 +Trade & Battle: Card Hero,GB,2000,Strategy,Nintendo,0,0,0.2,0,0.2 +World Championship Cards,PSP,2008,Misc,Crave Entertainment,0.19,0,0,0.02,0.2 +You Don't Know Jack,X360,2011,Misc,THQ,0.19,0,0,0.01,0.2 +Chronicles of Mystery: Curse of the Ancient Temple,DS,2009,Adventure,City Interactive,0.07,0.11,0,0.02,0.2 +NBA Live 15,XOne,2014,Sports,Electronic Arts,0.17,0.02,0,0.02,0.2 +Capcom Fighting Evolution,PS2,2004,Fighting,Capcom,0.1,0.08,0,0.03,0.2 +Frogger 3D,3DS,2011,Action,Konami Digital Entertainment,0.16,0.03,0,0.01,0.2 +SD Gundam GNext,SNES,1995,Strategy,Namco Bandai Games,0,0,0.2,0,0.2 +Backyard NFL Football 2006,PS2,2005,Sports,Atari,0.1,0.08,0,0.03,0.2 +NASCAR Heat 2002,XB,2001,Racing,Infogrames,0.15,0.04,0,0.01,0.2 +Planet 51,Wii,2009,Action,Sega,0.17,0.02,0,0.02,0.2 +Sloane to MacHale no Nazo no Monogatari,DS,2009,Puzzle,Level 5,0,0,0.2,0,0.2 +DarkStar One: Broken Alliance,X360,2010,Simulation,Kalypso Media,0.11,0.08,0,0.02,0.2 +My Fitness Coach 2: Exercise and Nutrition,Wii,2009,Sports,Black Bean Games,0.14,0.04,0,0.02,0.2 +Sengoku Basara 2 Heroes,PS2,2007,Action,Capcom,0,0,0.2,0,0.2 +Buzz! The Schools Quiz,PS2,2008,Misc,Sony Computer Entertainment,0,0.02,0,0.19,0.2 +Two Worlds II,PC,2011,Role-Playing,Unknown,0.09,0.09,0,0.03,0.2 +Suikoden Tactics,PS2,2005,Strategy,Konami Digital Entertainment,0.06,0.05,0.07,0.02,0.2 +NCAA March Madness 06,XB,2005,Sports,Electronic Arts,0.15,0.04,0,0.01,0.2 +Major League Baseball 2K11,PS3,2011,Sports,Take-Two Interactive,0.15,0.03,0,0.02,0.2 +Mobile Suit Gundam: Crossfire,PS3,2006,Simulation,Namco Bandai Games,0.06,0,0.14,0.01,0.2 +Phantasy Star Online,DC,2000,Role-Playing,Sega,0,0,0.2,0,0.2 +Crazy Taxi 3: High Roller,XB,2002,Racing,Sega,0.14,0.04,0.02,0.01,0.2 +Dark Messiah of Might and Magic Elements,X360,2008,Role-Playing,Ubisoft,0.16,0.02,0.01,0.02,0.2 +Just Dance 2: Extra Songs,Wii,2011,Misc,Ubisoft,0,0.17,0,0.03,0.2 +Midnight Club 3: DUB Edition Remix,XB,2006,Racing,Take-Two Interactive,0.15,0.04,0,0.01,0.2 +International Superstar Soccer 2000,PS2,2000,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +"Warhammer 40,000: Space Marine",PC,2011,Shooter,THQ,0.09,0.09,0,0.03,0.2 +CandyLand / Chutes & Ladders / Memory,GBA,2005,Misc,Zoo Digital Publishing,0.15,0.05,0,0,0.2 +The Bible Game,PS2,2005,Misc,Crave Entertainment,0.1,0.08,0,0.03,0.2 +Drift King Shutokou Battle '94,SNES,1994,Racing,BPS,0,0,0.2,0,0.2 +Shining Blade,PSP,2012,Role-Playing,Sega,0,0,0.2,0,0.2 +Fairy Fencer F,PS3,2013,Role-Playing,Nippon Ichi Software,0.05,0.05,0.09,0.02,0.2 +Atelier Shallie: Alchemists of the Dusk Sea,PS3,2014,Role-Playing,Tecmo Koei,0.06,0.05,0.08,0.02,0.2 +The Ultimate Red Ball Challenge,Wii,2009,Misc,Mindscape,0,0.19,0,0.01,0.2 +PBR: Out of the Chute,PS2,2008,Sports,Crave Entertainment,0.1,0.08,0,0.03,0.2 +The King of Fighters Collection: The Orochi Saga,PS2,2006,Fighting,Ignition Entertainment,0.1,0.08,0,0.03,0.2 +Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban: 2003 Memorial,PS2,2003,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +Arcana Heart 3,PS3,2011,Fighting,PQube,0.04,0.05,0.1,0.02,0.2 +Tekken 3D: Prime Edition,3DS,2012,Fighting,Nintendo,0.06,0.08,0.05,0.01,0.2 +Deal or No Deal: The Banker is Back!,DS,2008,Misc,Mindscape,0,0.2,0,0,0.2 +Jillian Michaels' Fitness Adventure,X360,2011,Misc,505 Games,0.17,0.02,0,0.01,0.2 +MLB 10: The Show,PSP,2010,Sports,Sony Computer Entertainment,0.19,0,0,0.02,0.2 +State of Decay,XOne,2015,Strategy,Microsoft Game Studios,0.14,0.05,0,0.02,0.2 +Ashes Cricket 2009,X360,2009,Sports,Codemasters,0,0.19,0,0.01,0.2 +Saturday Night Speedway,PS2,2004,Racing,Play It,0.1,0.08,0,0.03,0.2 +Bratz: Rock Angelz,GC,2005,Misc,THQ,0.16,0.04,0,0.01,0.2 +Langrisser III,SAT,1996,Strategy,NCS,0,0,0.2,0,0.2 +Samurai Spirits (CD),NG,1994,Fighting,SNK,0,0,0.2,0,0.2 +MLB SlugFest 20-03,XB,2002,Sports,Midway Games,0.15,0.04,0,0.01,0.2 +Dragon Ball: Revenge of King Piccolo,Wii,2009,Action,Namco Bandai Games,0.13,0.03,0.03,0.02,0.2 +Spectrobes: Origins,Wii,2009,Role-Playing,Disney Interactive Studios,0.16,0.02,0,0.02,0.2 +Earth Defense Force: Insect Armageddon,PS3,2011,Shooter,D3Publisher,0.06,0.04,0.08,0.02,0.2 +Pitfall: The Lost Expedition,PS2,2004,Platform,Activision,0.1,0.08,0,0.03,0.2 +Marvel: Ultimate Alliance 2,DS,2009,Role-Playing,Activision,0.16,0.03,0,0.02,0.2 +From TV Animation One Piece: Grand Battle! 3,GC,2003,Fighting,Namco Bandai Games,0,0,0.2,0.01,0.2 +Assassin's Creed Syndicate,PC,2015,Action,Ubisoft,0.1,0.08,0,0.02,0.2 +Rocket Power: Zero Gravity Zone,GBA,2003,Sports,THQ,0.14,0.05,0,0,0.2 +Le Mans 24 Hours,PS2,2001,Racing,Infogrames,0.09,0.07,0.02,0.02,0.2 +XCOM 2,PC,2016,Strategy,Take-Two Interactive,0.09,0.1,0,0.02,0.2 +International Cricket 2010,PS3,2010,Sports,Codemasters,0,0.15,0,0.05,0.2 +ESPN MLB Baseball,PS2,2004,Sports,Sega,0.1,0.08,0,0.03,0.2 +Neighborhood Games,Wii,2009,Misc,THQ,0.17,0.02,0,0.01,0.2 +All Star Pro-Wrestling,PS2,2000,Fighting,SquareSoft,0,0,0.2,0,0.2 +Way of the Samurai 4,PS3,2011,Action,Nippon Ichi Software,0,0.03,0.16,0.01,0.2 +Clive Barker's Jericho,PS3,2007,Shooter,Codemasters,0.17,0.01,0,0.02,0.2 +Harvest Moon: More Friends of Mineral Town,GBA,2003,Simulation,Ubisoft,0.14,0.05,0,0,0.2 +Captain America: Super Soldier,PS3,2011,Action,Sega,0.1,0.07,0,0.03,0.2 +MLB 12: The Show,PSV,2012,Sports,Sony Computer Entertainment,0.18,0,0,0.02,0.2 +The Fairly Odd Parents: Shadow Showdown,GC,2004,Platform,THQ,0.16,0.04,0,0.01,0.2 +NHL 17,PS4,2016,Sports,Electronic Arts,0.13,0.04,0,0.04,0.2 +Mobile Suit Gundam Side Story II: Aoi o Uketsugu Mono,SAT,1996,Shooter,Namco Bandai Games,0,0,0.2,0,0.2 +Camping Mama: Outdoor Adventures,DS,2011,Simulation,505 Games,0.13,0.06,0,0.02,0.2 +Kurohyou 2: Ryu ga Gotoku Ashura Hen,PSP,2012,Action,Sega,0,0,0.2,0,0.2 +NBA 2K2,XB,2002,Sports,Sega,0.15,0.04,0,0.01,0.2 +X2: Wolverine's Revenge,GBA,2003,Platform,Activision,0.14,0.05,0,0,0.2 +7th Dragon 2020,PSP,2011,Role-Playing,Sega,0,0,0.2,0,0.2 +Cars,XB,2006,Racing,THQ,0.15,0.04,0,0.01,0.2 +Taiko no Tatsujin: Waku Waku Anime Matsuri,PS2,2003,Misc,Namco Bandai Games,0,0,0.2,0,0.2 +Imagine: Babyz Fashion,DS,2009,Simulation,Ubisoft,0.19,0,0,0.01,0.2 +Spy Hunter,GC,2002,Racing,Midway Games,0.16,0.04,0,0.01,0.2 +Warriors Orochi,PSP,2008,Action,Tecmo Koei,0.02,0,0.18,0,0.2 +Dead to Rights II,PS2,2005,Shooter,Electronic Arts,0.1,0.08,0,0.03,0.2 +Super Dodge Ball Advance,GBA,2001,Sports,Ubisoft,0.14,0.05,0,0,0.2 +Ogre Battle Saga Episode Five: The March of the Black Queen,PS,1996,Role-Playing,ArtDink,0.06,0.04,0.09,0.01,0.2 +Ridge Racer 6,X360,2005,Racing,Namco Bandai Games,0.1,0.02,0.07,0.01,0.2 +Angry Birds Star Wars,PS4,2013,Strategy,Activision,0.1,0.08,0,0.03,0.2 +"Ni Hao, Kai-lan: New Year's Celebration",DS,2009,Misc,Take-Two Interactive,0.19,0,0,0.01,0.2 +Press Your Luck 2010 Edition,DS,2009,Misc,Ubisoft,0.19,0,0,0.01,0.2 +Treasure World,DS,2009,Simulation,Aspyr,0.19,0,0,0.01,0.2 +Front Mission Evolved,X360,2010,Shooter,Square Enix,0.1,0.07,0.02,0.02,0.2 +Body and Brain Connection,X360,2010,Misc,Namco Bandai Games,0.1,0.08,0,0.02,0.2 +MDK,PS,1997,Shooter,Interplay,0.11,0.08,0,0.01,0.2 +Monster Jam,X360,2007,Racing,Activision,0.18,0,0,0.02,0.2 +Afro Samurai,PS3,2009,Action,Atari,0.12,0.05,0,0.03,0.2 +Rock Band Track Pack: Classic Rock,PS2,2009,Misc,MTV Games,0.1,0.08,0,0.03,0.2 +Zone of the Enders HD Collection,X360,2012,Simulation,Konami Digital Entertainment,0.14,0.04,0.01,0.02,0.2 +Ty the Tasmanian Tiger 2: Bush Rescue,GC,2004,Platform,Electronic Arts,0.15,0.04,0,0.01,0.2 +Speed Punks,PS,1998,Racing,Sony Computer Entertainment,0.11,0.08,0,0.01,0.2 +The Legend of Heroes VII: The Trail of Blue,PSP,2011,Role-Playing,Falcom Corporation,0,0,0.2,0,0.2 +No More Heroes: Heroes' Paradise,PS3,2010,Action,Konami Digital Entertainment,0.1,0.04,0.04,0.02,0.2 +Mahjongg Mysteries: Ancient Egypt,DS,2010,Puzzle,Avanquest,0.07,0.11,0,0.02,0.2 +Saints Row IV,XOne,2015,Action,Deep Silver,0.1,0.09,0,0.02,0.2 +Injustice: Gods Among Us,WiiU,2013,Fighting,Warner Bros. Interactive Entertainment,0.1,0.08,0,0.02,0.2 +MVP Baseball 2003,XB,2003,Sports,Electronic Arts,0.15,0.04,0,0.01,0.2 +CSI: Unsolved!,DS,2010,Adventure,Ubisoft,0.13,0.06,0,0.02,0.2 +Star Wars: Battlefront,PC,2004,Shooter,LucasArts,0.06,0.12,0,0.02,0.2 +NCAA Final Four 2004,PS2,2003,Sports,Sony Computer Entertainment,0.1,0.08,0,0.03,0.2 +"The Chronicles of Narnia: The Lion, The Witch and The Wardrobe",XB,2005,Action,Disney Interactive Studios,0.15,0.04,0,0.01,0.2 +Tigger's Honey Hunt,N64,2000,Platform,Ubisoft,0.16,0.04,0,0,0.2 +Famista 64,N64,,Sports,Namco Bandai Games,0,0,0.17,0.03,0.2 +Roadsters 99,N64,1999,Racing,Titus,0.06,0.13,0,0.01,0.2 +Magical Tetris Challenge,N64,1997,Puzzle,Activision,0.13,0.02,0.05,0,0.2 +Twisted Edge Extreme Snowboarding,N64,1998,Sports,Kemco,0.16,0.04,0,0,0.2 +Disney's Tarzan,N64,2000,Platform,Activision,0.16,0.04,0,0,0.2 +South Park Rally,N64,2000,Racing,Acclaim Entertainment,0.16,0.04,0,0,0.2 +Body Harvest,N64,1998,Shooter,Gremlin Interactive Ltd,0.16,0.04,0,0,0.2 +San Francisco Rush 2049,N64,2000,Racing,Midway Games,0.16,0.04,0,0,0.2 +Super Robot Taisen 64,N64,1999,Strategy,Banpresto,0,0,0.2,0,0.2 +Snowboard Kids,N64,1996,Sports,Atlus,0.16,0.04,0,0,0.2 +NBA 07,PSP,2006,Sports,Sony Computer Entertainment,0.18,0,0,0.02,0.2 +IHRA Drag Racing 2004,XB,2003,Racing,Bethesda Softworks,0.15,0.04,0,0.01,0.2 +Shining Hearts,PSP,2010,Role-Playing,Sega,0,0,0.2,0,0.2 +Magical ZhuZhu Princess: Carriages & Castles,DS,2011,Simulation,Activision,0.14,0.04,0,0.02,0.2 +Code of Princess,3DS,2012,Action,Agatsuma Entertainment,0.16,0,0.03,0.01,0.2 +Tomb Raider: Underworld,DS,2008,Action,Eidos Interactive,0.16,0.03,0,0.02,0.2 +The Con,PSP,2005,Fighting,Sony Computer Entertainment,0.18,0,0,0.02,0.2 +Tony Hawk's Pro Skater 5,PS4,2015,Sports,Activision,0.09,0.08,0,0.03,0.2 +Jissen Pachi-Slot Hisshouhou! Aladdin A,PS2,2002,Misc,Sammy Corporation,0,0,0.2,0,0.2 +Namco Museum: 50th Anniversary,GBA,2005,Misc,Namco Bandai Games,0.14,0.05,0,0,0.2 +Ford Racing Off Road,PS2,2008,Racing,Xplosiv,0.1,0.08,0,0.03,0.2 +The Witch and the Hundred Knight,PS3,2013,Role-Playing,Nippon Ichi Software,0.06,0.02,0.1,0.01,0.2 +Nobunaga no Yabou: Reppuuden,PS,1999,Strategy,Tecmo Koei,0,0,0.19,0.01,0.2 +Hot Wheels: Track Attack,Wii,2010,Racing,THQ,0.15,0.04,0,0.01,0.2 +Schlag den Raab,Wii,2010,Misc,Namco Bandai Games,0,0.17,0,0.03,0.2 +UFC Personal Trainer: The Ultimate Fitness System,PS3,2011,Sports,THQ,0.08,0.09,0,0.04,0.2 +Total War: Shogun 2 - Fall of the Samurai,PC,2012,Strategy,Sega,0.07,0.1,0,0.03,0.2 +The BIGS 2,PS2,2009,Sports,Take-Two Interactive,0.1,0.08,0,0.03,0.2 +Mat Hoffman's Pro BMX 2,XB,2002,Sports,Activision,0.15,0.04,0,0.01,0.2 +Treasure Hunter G,SNES,1996,Role-Playing,SquareSoft,0,0,0.2,0,0.2 +Untold Legends: Dark Kingdom,PS3,2006,Role-Playing,Electronic Arts,0.14,0.02,0.02,0.02,0.2 +From Russia With Love,XB,2005,Action,Electronic Arts,0.15,0.04,0,0.01,0.2 +Wing Arms,SAT,1994,Shooter,Sega,0,0,0.2,0,0.2 +Dead Space 3,PC,,Action,Electronic Arts,0.02,0.15,0,0.02,0.2 +Pro Yaky? Spirits 2013,PS3,2013,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +We Wish You A Merry Christmas,Wii,2009,Action,Destineer,0.14,0.04,0,0.02,0.2 +BioShock The Collection,PS4,2016,Shooter,Take-Two Interactive,0.05,0.11,0.01,0.03,0.2 +DanceDanceRevolution,PS3,2010,Simulation,Konami Digital Entertainment,0.12,0.05,0,0.02,0.2 +Cabela's Big Game Hunter (2008),PS2,2007,Sports,Activision Value,0.1,0.08,0,0.03,0.2 +Grandia II,DC,2000,Role-Playing,Ubisoft,0,0,0.2,0,0.2 +Namco Museum Vol.4,PS,1996,Misc,Sony Computer Entertainment,0.02,0.01,0.16,0.01,0.2 +The Cheetah Girls: Passport to Stardom,DS,2008,Misc,Disney Interactive Studios,0.18,0,0,0.01,0.2 +UFC Personal Trainer: The Ultimate Fitness System,Wii,2011,Sports,THQ,0.12,0.06,0,0.02,0.2 +How to Train Your Dragon 2,X360,2014,Adventure,Little Orbit,0.05,0.13,0,0.02,0.2 +Shark Tale,XB,2004,Action,Activision,0.15,0.04,0,0.01,0.2 +NFL Street 2,GC,2004,Sports,Electronic Arts,0.15,0.04,0,0.01,0.2 +Pro Yaky? Spirits 2013,PSP,2013,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +Teenage Mutant Ninja Turtles 3: Mutant Nightmare,PS2,2005,Action,Konami Digital Entertainment,0.1,0.08,0,0.03,0.2 +My Secret World by Imagine,DS,2008,Misc,Ubisoft,0,0.2,0,0,0.2 +Soldier of Fortune: Payback,X360,2007,Shooter,Activision,0.18,0.01,0,0.01,0.2 +Ridge Racer,PSV,2011,Racing,Namco Bandai Games,0.04,0.08,0.05,0.03,0.2 +Bleach: The 3rd Phantom,DS,2008,Role-Playing,Sega,0.1,0.02,0.07,0.01,0.2 +Gladius,PS2,2003,Strategy,Activision,0.1,0.08,0,0.03,0.2 +Family Feud: 2012 Edition,Wii,2011,Misc,Ubisoft,0.19,0,0,0.01,0.2 +Dave Mirra Freestyle BMX 2,XB,2001,Sports,Acclaim Entertainment,0.15,0.04,0,0.01,0.2 +Spore Hero Arena,DS,2009,Simulation,Electronic Arts,0.18,0,0,0.01,0.2 +Pro Yaky? Spirits 2012,PSP,2012,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +Puzzle & Dragons X: God Chapter / Dragon Chapter,3DS,2016,Action,GungHo,0,0,0.2,0,0.2 +SpongeBob SquarePants: Revenge of the Flying Dutchman,GC,2002,Platform,THQ,0.15,0.04,0,0.01,0.2 +Record of Agarest War,X360,2008,Role-Playing,Compile Heart,0.18,0,0.01,0.01,0.2 +Baja: Edge of Control,X360,2008,Racing,THQ,0.12,0.06,0,0.02,0.2 +Sid Meier's Pirates!,PSP,2007,Strategy,Take-Two Interactive,0.16,0.01,0,0.02,0.2 +Taiko no Tatsujin: Go! Go! Godaime,PS2,2004,Misc,Namco Bandai Games,0,0,0.2,0,0.2 +Taiko Drum Master,PS2,2004,Misc,Namco Bandai Games,0.1,0.08,0,0.03,0.2 +High School Musical 3: Senior Year DANCE!,X360,2008,Misc,Disney Interactive Studios,0.18,0,0,0.01,0.2 +Harry Potter and the Goblet of Fire,PSP,2005,Action,Electronic Arts,0.17,0.01,0,0.02,0.2 +Bust-A-Move 2 Arcade Edition,PS,1995,Puzzle,Acclaim Entertainment,0.11,0.07,0,0.01,0.2 +South Park: The Stick of Truth,PC,2014,Role-Playing,Ubisoft,0.07,0.1,0,0.02,0.2 +Tom Clancy's Splinter Cell: Essentials,PSP,2006,Shooter,Ubisoft,0.17,0.01,0,0.02,0.2 +Tetris Worlds (Online Edition),XB,2003,Puzzle,THQ,0.15,0.04,0,0.01,0.2 +Armored Core 4,PS3,2006,Simulation,505 Games,0.09,0,0.09,0.01,0.2 +Sleeping Dogs,XOne,2014,Action,Square Enix,0.1,0.09,0,0.02,0.2 +Forgotten Realms: Demon Stone,PS2,2004,Action,Atari,0.1,0.08,0,0.03,0.2 +Super Baseball Simulator 1.000,SNES,1991,Sports,Culture Brain,0,0,0.2,0,0.2 +Barbie Horse Adventures: Riding Camp,Wii,2008,Sports,Activision,0.18,0,0,0.01,0.2 +Resident Evil: Revelations,WiiU,2013,Action,Capcom,0.07,0.08,0.03,0.01,0.2 +Go Play: Lumberjacks,Wii,2009,Simulation,Majesco Entertainment,0.18,0,0,0.01,0.2 +Looney Tunes: Space Race,PS2,2002,Racing,Infogrames,0.1,0.08,0,0.03,0.2 +Puzzle Challenge: Crosswords and More!,PSP,2006,Puzzle,Crave Entertainment,0.18,0,0,0.01,0.2 +NASCAR Unleashed,Wii,2011,Racing,Activision,0.18,0,0,0.01,0.2 +Backyard Hockey,GBA,2003,Sports,Atari,0.14,0.05,0,0,0.2 +Playboy: The Mansion,PS2,2005,Simulation,Ubisoft,0.1,0.08,0,0.03,0.2 +Jikkyou Powerful Pro Yakyuu 2010,PSP,2010,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +Shiren the Wanderer,Wii,2008,Role-Playing,Sega,0.08,0,0.11,0.01,0.2 +Ore no Shikabane o Koete Yuke,PSP,2011,Role-Playing,Sony Computer Entertainment,0,0,0.2,0,0.2 +Shaman King: Spirit of Shamans,PS,2002,Action,Namco Bandai Games,0,0,0.18,0.01,0.2 +Tiger Woods PGA Tour 06,PSP,2005,Sports,Electronic Arts,0.18,0,0,0.01,0.2 +Conan,X360,2007,Action,THQ,0.16,0.02,0,0.02,0.2 +Ratatouille,GBA,2007,Action,THQ,0.14,0.05,0,0,0.2 +The Fairly Odd Parents: Enter the Cleft,GBA,2002,Platform,THQ,0.14,0.05,0,0,0.2 +Warriors Orochi,X360,2007,Action,Tecmo Koei,0.17,0.01,0,0.02,0.2 +MC Groovz Dance Craze,GC,2004,Misc,Mad Catz,0.15,0.04,0,0.01,0.2 +The Thing,XB,2002,Adventure,Vivendi Games,0.15,0.04,0,0.01,0.2 +Tom and Jerry in House Trap,PS,2000,Action,Ubisoft,0.11,0.07,0,0.01,0.2 +Power Rangers: Time Force,GBA,2001,Action,THQ,0.14,0.05,0,0,0.2 +101-in-1 Explosive Megamix,DS,2008,Puzzle,Nordcurrent,0.05,0.13,0,0.02,0.2 +X-Men Origins: Wolverine,DS,2009,Action,Activision,0.15,0.03,0,0.02,0.2 +Jikkyou Powerful Pro Yakyuu 2011,PSP,2011,Sports,Konami Digital Entertainment,0,0,0.2,0,0.2 +DS Kageyama Method: Dennou Hanpuku - Masu x Masu Hyaku Masu Keisan,DS,2006,Misc,Shogakukan,0,0,0.2,0,0.2 +Baldur's Gate: Dark Alliance,XB,2002,Role-Playing,Virgin Interactive,0.15,0.04,0,0.01,0.2 +Family Guy,PSP,2006,Action,Take-Two Interactive,0.18,0,0,0.02,0.2 +Prince of Persia: Warrior Within,GC,2004,Action,Ubisoft,0.15,0.04,0,0.01,0.2 +UFC: Tapout,XB,2002,Fighting,Crave Entertainment,0.14,0.05,0,0.01,0.2 +Aikatsu! Cinderella Lesson,3DS,2012,Role-Playing,Namco Bandai Games,0,0,0.2,0,0.2 +Marvel Super Hero Squad: Comic Combat,Wii,2011,Action,THQ,0.15,0.03,0,0.01,0.2 +Test Drive Unlimited 2,PC,,Racing,Atari,0.05,0.11,0,0.03,0.2 +Mega Man Legacy Collection,3DS,2016,Platform,Capcom,0.13,0,0.05,0.02,0.2 +Predator: Concrete Jungle,PS2,2005,Action,Vivendi Games,0.1,0.07,0,0.03,0.2 +Beyblade: Metal Fusion - Battle Fortress,Wii,2009,Action,Konami Digital Entertainment,0.15,0,0.03,0.01,0.2 +WipeOut 3 The Game,3DS,2012,Action,Activision,0.18,0,0,0.01,0.2 +Big Mutha Truckers 2,PS2,2005,Racing,Xplosiv,0.1,0.07,0,0.03,0.2 +Shutter Island,PC,2009,Adventure,Merscom LLC,0,0.17,0,0.03,0.2 +The Naked Brothers Band: The Video Game,DS,2008,Misc,THQ,0.18,0,0,0.01,0.2 +Demon Gaze,PSV,2013,Role-Playing,Nippon Ichi Software,0.06,0.03,0.08,0.02,0.2 +Zombie Army Trilogy,PS4,2015,Shooter,Rebellion Developments,0.04,0.12,0,0.03,0.2 +NHL FaceOff 2001,PS2,2001,Sports,Sony Computer Entertainment,0.1,0.07,0,0.02,0.2 +Mana Khemia 2: Fall of Alchemy,PS2,2008,Role-Playing,Gust,0.07,0.05,0.05,0.02,0.2 +The Great Escape,PS2,2003,Action,SCi,0.1,0.07,0,0.02,0.2 +Dexter's Lab Chess Challenge,GBA,2002,Misc,BAM! Entertainment,0.14,0.05,0,0,0.2 +Nostalgia,DS,2008,Role-Playing,Tecmo Koei,0.16,0,0.02,0.01,0.19 +DiRT Showdown,PS3,2012,Racing,Codemasters,0.02,0.13,0,0.04,0.19 +Iron Chef America: Supreme Cuisine,DS,2008,Simulation,Destineer,0.18,0,0,0.01,0.19 +Arcade Shooting Gallery,Wii,2008,Shooter,Zoo Games,0.18,0,0,0.01,0.19 +The Rise of the Argonauts,PS3,2008,Role-Playing,Codemasters,0.05,0.12,0,0.03,0.19 +Big Mutha Truckers,XB,2002,Racing,Empire Interactive,0.15,0.04,0,0.01,0.19 +ESA Foundation Compilation,PS2,2005,Misc,Sony Computer Entertainment,0.1,0.07,0,0.02,0.19 +The Hobbit,GBA,2003,Platform,Vivendi Games,0.14,0.05,0,0,0.19 +The King of Fighters XI,PS2,2006,Fighting,Ignition Entertainment,0.07,0.06,0.04,0.02,0.19 +Ninja Gaiden 3,WiiU,2012,Action,Nintendo,0.15,0.03,0,0.02,0.19 +Metro: Last Light,PC,2013,Action,Deep Silver,0.06,0.11,0,0.02,0.19 +Dragon Ball Z: Idainaru Dragon Ball Densetsu,PS,1996,Fighting,Namco Bandai Games,0,0,0.18,0.01,0.19 +Silent Hill HD Collection,X360,2012,Action,Konami Digital Entertainment,0.11,0.06,0.01,0.02,0.19 +Bound By Flame,PS4,2014,Role-Playing,Focus Home Interactive,0.07,0.08,0,0.04,0.19 +Conflict: Denied Ops,X360,2008,Shooter,Eidos Interactive,0.08,0.09,0,0.02,0.19 +Saw II: Flesh & Blood,PS3,2010,Action,Konami Digital Entertainment,0.1,0.07,0,0.03,0.19 +Ice Age: Dawn of the Dinosaurs,PS3,2009,Action,Activision,0.13,0.04,0,0.02,0.19 +Sniper Elite,PS2,2005,Shooter,Ubisoft,0.1,0.07,0,0.02,0.19 +Arc Rise Fantasia,Wii,2009,Role-Playing,Marvelous Interactive,0.13,0,0.06,0.01,0.19 +"Ni Hao, Kai-lan: Super Game Day",Wii,2009,Misc,Take-Two Interactive,0.18,0,0,0.01,0.19 +Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS,DS,2005,Action,Sega,0,0,0.19,0,0.19 +Dynasty Warriors: Gundam 2,X360,2008,Action,Namco Bandai Games,0.07,0.03,0.08,0.01,0.19 +Petz Pony: Beauty Pageant,DS,2009,Simulation,Ubisoft,0.18,0,0,0.01,0.19 +Parlor! Mini 4,SNES,1996,Misc,Nippon Telenet,0,0,0.19,0,0.19 +Breath of Fire II,GBA,2001,Role-Playing,Ubisoft,0.14,0.05,0,0,0.19 +The Spiderwick Chronicles,Wii,2008,Action,Vivendi Games,0.17,0.01,0,0.01,0.19 +Danganronpa 2: Goodbye Despair,PSP,2012,Misc,Spike,0,0,0.19,0,0.19 +Aliens vs Predator,PC,2010,Shooter,Sega,0,0.17,0,0.02,0.19 +Ice Age 2: The Meltdown,GC,2006,Platform,Vivendi Games,0.15,0.04,0,0.01,0.19 +"Steins,Gate",PSP,2011,Adventure,Kadokawa Shoten,0,0,0.19,0,0.19 +Enchanted Arms,X360,2006,Role-Playing,Ubisoft,0.16,0.02,0,0.02,0.19 +Dinotopia: The Timestone Pirates,GBA,2002,Action,TDK Core,0.14,0.05,0,0,0.19 +Power Pro Kun Pocket 12,DS,2009,Sports,Konami Digital Entertainment,0,0,0.19,0,0.19 +J-League Jikkyou Winning Eleven 3,PS,1997,Sports,Konami Digital Entertainment,0,0,0.18,0.01,0.19 +The Sims 4: Get Together,PC,2015,Simulation,Electronic Arts,0.05,0.13,0,0.01,0.19 +Jissen Pachi-Slot Hisshouhou,SNES,1993,Misc,Sammy Corporation,0,0,0.19,0,0.19 +Pac-Man & Galaga Dimensions,3DS,2011,Misc,Namco Bandai Games,0.1,0.04,0.04,0.01,0.19 +Quantum Theory,PS3,2010,Shooter,Tecmo Koei,0.05,0.09,0.02,0.03,0.19 +Manhunt,XB,2004,Action,Take-Two Interactive,0.14,0.04,0,0.01,0.19 +NCAA Final Four 2003,PS2,2002,Sports,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +Air Conflicts: Secret Wars,PS3,2011,Simulation,bitComposer Games,0.1,0.06,0,0.03,0.19 +Rio,Wii,2011,Misc,THQ,0.14,0.04,0,0.01,0.19 +Dream Salon,DS,2009,Misc,Zoo Digital Publishing,0.18,0,0,0.01,0.19 +Scene It? Twilight,DS,2010,Misc,Konami Digital Entertainment,0.11,0.07,0,0.02,0.19 +Disgaea DS,DS,2008,Role-Playing,Square Enix,0.11,0.02,0.05,0.01,0.19 +Peter Jackson's King Kong: The Official Game of the Movie,PSP,2005,Action,Ubisoft,0.16,0.01,0,0.02,0.19 +Space Invaders Extreme 2,DS,2009,Shooter,Square Enix,0.17,0.01,0,0.01,0.19 +X-Men Origins: Wolverine,PSP,2009,Action,Activision,0.13,0.03,0,0.03,0.19 +Great Phoenix Wright: Ace Attorney - Naruhodou Ryuunosuke no Bouken,3DS,2015,Action,Capcom,0,0,0.19,0,0.19 +Mystery Tales of Time Travel,DS,2010,Puzzle,Foreign Media Games,0.01,0.16,0,0.02,0.19 +J-League Excite Stage '96,SNES,1996,Sports,Epoch,0,0,0.19,0,0.19 +Risen,X360,2009,Role-Playing,Deep Silver,0.07,0.11,0,0.01,0.19 +Hidden Mysteries: Vampire Secrets,DS,2010,Adventure,Astragon,0.06,0.11,0,0.02,0.19 +New Love Plus,3DS,2012,Simulation,Konami Digital Entertainment,0,0,0.19,0,0.19 +Final Fantasy XI,X360,2006,Role-Playing,Square Enix,0.17,0.01,0,0.01,0.19 +Breath of Fire: Dragon Quarter,PS2,2002,Role-Playing,Capcom,0.09,0.07,0,0.02,0.19 +Jikkyou J-League Perfect Striker,N64,1996,Sports,Konami Digital Entertainment,0,0,0.19,0,0.19 +Dante's Inferno,PSP,2010,Action,Electronic Arts,0.12,0.03,0.01,0.03,0.19 +Shrek: Forever After,PS3,2010,Platform,Activision,0.16,0.02,0,0.02,0.19 +Rock Band Country Track Pack,PS3,2009,Misc,MTV Games,0.18,0,0,0.01,0.19 +Super Robot Taisen: Scramble Commander,PS2,2003,Strategy,Banpresto,0,0,0.19,0,0.19 +Re-Volt,PS,1998,Racing,Acclaim Entertainment,0.11,0.07,0,0.01,0.19 +Conception II: Children of the Seven Stars,PSV,2013,Role-Playing,Screenlife,0.13,0,0.04,0.02,0.19 +Descent,PS,1996,Shooter,Interplay,0.11,0.07,0,0.01,0.19 +Supreme Commander 2,PC,2010,Strategy,Square Enix,0,0.15,0,0.04,0.19 +DanceMasters,X360,2010,Misc,Konami Digital Entertainment,0.15,0.02,0.02,0.01,0.19 +50 Cent: Blood on the Sand,PS3,2009,Shooter,THQ,0.1,0.06,0.01,0.03,0.19 +Disney's Magical Mirror Starring Mickey Mouse,GC,2002,Adventure,Nintendo,0.15,0.04,0,0.01,0.19 +Need for Speed: The Run,3DS,2011,Action,Electronic Arts,0.09,0.09,0,0.02,0.19 +Jeep Thrills,Wii,2008,Racing,Zoo Digital Publishing,0.18,0,0,0.01,0.19 +Conflict: Denied Ops,PS3,2008,Shooter,Eidos Interactive,0.05,0.1,0,0.03,0.19 +FaceBreaker,X360,2008,Fighting,Electronic Arts,0.15,0.02,0,0.02,0.19 +Major League Baseball 2K12,PS3,2012,Sports,Take-Two Interactive,0.18,0,0,0.01,0.19 +Might & Magic: Clash of Heroes,DS,2009,Role-Playing,Ubisoft,0.16,0.02,0,0.01,0.19 +Avatar: The Last Airbender - Into the Inferno,Wii,2008,Adventure,THQ,0.17,0.01,0,0.01,0.19 +IHRA Professional Drag Racing 2005,PS2,2004,Racing,Bethesda Softworks,0.09,0.07,0,0.02,0.19 +Mace Griffin: Bounty Hunter,PS2,2003,Shooter,Electronic Arts,0.09,0.07,0,0.02,0.19 +Legacy of Kain: Defiance,XB,2003,Action,Eidos Interactive,0.14,0.04,0,0.01,0.19 +Story of Seasons: Good Friends of the Three Villages,3DS,2016,Simulation,Marvelous Interactive,0,0,0.19,0,0.19 +Chaotic: Shadow Warriors,Wii,2009,Action,Activision,0.18,0,0,0.01,0.19 +Majin and the Forsaken Kingdom,X360,2010,Adventure,Namco Bandai Games,0.14,0.03,0,0.01,0.19 +Trivial Pursuit unhinged,PS2,2004,Misc,Atari,0.09,0.07,0,0.02,0.19 +Tales of the World: Narikiri Dungeon 2,GBA,2002,Role-Playing,Namco Bandai Games,0,0,0.19,0,0.19 +Spider-Man: Shattered Dimensions,DS,2010,Action,Activision,0.17,0.01,0,0.01,0.19 +Aliens versus Predator: Extinction,PS2,2003,Strategy,Electronic Arts,0.09,0.07,0,0.02,0.19 +Plants vs. Zombies,PS3,2011,Strategy,PopCap Games,0.18,0,0,0.01,0.19 +NBA Live 14,XOne,2013,Sports,Electronic Arts,0.16,0.02,0,0.01,0.19 +Silent Scope 2: Dark Silhouette,PS2,2001,Shooter,Konami Digital Entertainment,0.09,0.07,0,0.02,0.19 +Dave Mirra Freestyle BMX 2,GBA,2001,Sports,Acclaim Entertainment,0.14,0.05,0,0,0.19 +Jikkyou Powerful Pro Yakyuu '96 Kaimakuban,SNES,1996,Sports,Konami Digital Entertainment,0,0,0.19,0,0.19 +Tokimeki Memorial Girl's Side 3rd Story,DS,2010,Adventure,Konami Digital Entertainment,0,0,0.19,0,0.19 +NHL Hitz Pro,PS2,2003,Sports,Midway Games,0.09,0.07,0,0.02,0.19 +Tom Clancy's Splinter Cell: Blacklist,PC,2013,Action,Ubisoft,0.04,0.13,0,0.03,0.19 +Allied General,PS,1996,Strategy,SSI,0.11,0.07,0,0.01,0.19 +Fire ProWrestling G,PS,1999,Fighting,Human Entertainment,0,0,0.18,0.01,0.19 +Kamen Rider: Battride War,PS3,2013,Action,Namco Bandai Games,0,0,0.19,0,0.19 +Binary Domain,X360,2012,Action,Sega,0.09,0.07,0.02,0.02,0.19 +IL-2 Sturmovik: Birds of Prey,PSP,2009,Simulation,505 Games,0.08,0.07,0,0.04,0.19 +Farming Simulator 2015,XOne,2015,Simulation,Koch Media,0.1,0.07,0,0.02,0.19 +Armored Core: For Answer,PS3,2008,Simulation,Ubisoft,0.06,0.02,0.1,0.01,0.19 +Mahjong: Journey Quest for Tikal,DS,2008,Puzzle,Rondomedia,0.15,0.03,0,0.01,0.19 +uDraw Studio: Instant Artist,Wii,2011,Misc,THQ,0.08,0.09,0,0.02,0.19 +Naruto: Ninja Destiny,DS,2006,Fighting,Namco Bandai Games,0.02,0.01,0.16,0,0.19 +GunGriffon,SAT,1995,Simulation,Sega,0,0,0.19,0,0.19 +SingStar Pop Vol.2,PS2,2008,Misc,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +SNK Arcade Classics Vol. 1,PS2,2008,Misc,Ignition Entertainment,0.09,0.07,0,0.02,0.19 +Darkstalkers 3,PS,1998,Fighting,Capcom,0.11,0.07,0,0.01,0.19 +SpongeBob's Surf & Skate Roadtrip,X360,2011,Action,THQ,0.15,0.03,0,0.01,0.19 +Frequency,PS2,2001,Misc,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +Death Jr.,PSP,2005,Platform,Konami Digital Entertainment,0.17,0,0,0.01,0.19 +Cars: Race-O-Rama,PS3,2009,Racing,THQ,0.14,0.03,0,0.02,0.19 +Inazuma Eleven Strikers 2012 Xtreme,Wii,2011,Role-Playing,Level 5,0,0,0.19,0,0.19 +The Polar Express,GBA,2004,Adventure,THQ,0.14,0.05,0,0,0.19 +2002 FIFA World Cup,XB,2002,Sports,Electronic Arts,0.14,0.04,0,0.01,0.19 +Kan Colle Kai,PSV,2016,Action,Kadokawa Games,0,0,0.19,0,0.19 +SpongeBob SquigglePants 3D,3DS,2011,Misc,THQ,0.13,0.05,0,0.02,0.19 +Jampack: Summer 2003 (RP-T),PS2,2003,Misc,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +Need for Speed: Shift 2 Unleashed,PC,2011,Racing,Electronic Arts,0.05,0.11,0,0.03,0.19 +Monster 4x4: Stunt Racer,Wii,2009,Racing,Ubisoft,0.18,0,0,0.01,0.19 +Frogger's Adventures 2: The Lost Wand,GBA,2002,Adventure,Konami Digital Entertainment,0.14,0.05,0,0,0.19 +Sudeki,XB,2004,Role-Playing,Microsoft Game Studios,0.14,0.04,0,0.01,0.19 +Rango: The Video Game,PS3,2011,Action,Electronic Arts,0.07,0.09,0,0.04,0.19 +The Amazing Spider-Man (Console Version),3DS,2012,Action,Activision,0.15,0.03,0,0.01,0.19 +"Boku no Natsuyasumi 4: Seitouchi Shounen Tanteidan, Boku to Himitsu no Chizu",PSP,2009,Adventure,Sony Computer Entertainment,0,0,0.19,0,0.19 +Hyperdevotion Noire: Goddess Black Heart,PSV,2014,Role-Playing,Idea Factory,0.08,0.02,0.06,0.03,0.19 +Hexen,N64,1996,Shooter,GT Interactive,0.15,0.04,0,0,0.19 +Mace: The Dark Age,N64,1997,Fighting,GT Interactive,0.15,0.04,0,0,0.19 +AeroFighters Assault,N64,1997,Action,Video System,0.15,0.04,0,0,0.19 +Puyo Puyo Sun 64,N64,1997,Puzzle,Compile,0,0,0.16,0.03,0.19 +Chou-Kuukan Night Pro Yakyuu King (weekly JP sales),N64,1996,Sports,Imagineer,0,0,0.19,0,0.19 +Quake,N64,1998,Shooter,GT Interactive,0.15,0.04,0,0,0.19 +Sesame Street: Elmo's Number Journey,N64,1999,Misc,NewKidCo,0.15,0.04,0,0,0.19 +Disney Magic World 2,3DS,2015,Action,Nintendo,0,0,0.19,0,0.19 +Squeeballs Party,Wii,2009,Puzzle,Performance Designed Products,0.18,0,0,0.01,0.19 +Tottadoo! Yoiko no Mujintou Seikatsu,DS,2008,Adventure,Namco Bandai Games,0,0,0.19,0,0.19 +Where's Waldo? The Fantastic Journey,Wii,2009,Adventure,Ubisoft,0.18,0,0,0.01,0.19 +Family Game Night 4: The Game Show,Wii,2011,Misc,Electronic Arts,0.13,0.04,0,0.01,0.19 +Teenage Mutant Ninja Turtles 2: Battle Nexus,GC,2004,Action,Konami Digital Entertainment,0.15,0.04,0,0.01,0.19 +Saints Row IV,PC,2013,Action,Deep Silver,0.11,0.06,0,0.02,0.19 +Fighter Within,XOne,2013,Fighting,Ubisoft,0.11,0.07,0,0.02,0.19 +Barbie Horse Adventures: Riding Camp,PS2,2008,Sports,Activision,0.09,0.07,0,0.02,0.19 +SSX Tricky,GBA,2002,Sports,Electronic Arts,0.14,0.05,0,0,0.19 +Kenka Banchou 4: Ichinen Sensou,PSP,2010,Action,Spike,0,0,0.19,0,0.19 +Warhammer: Shadow of the Horned Rat,PS,1996,Strategy,Mindscape,0.11,0.07,0,0.01,0.19 +Shadows of the Damned,X360,2011,Action,Electronic Arts,0.1,0.06,0.01,0.02,0.19 +NBA 2K11,PC,2010,Action,Take-Two Interactive,0.18,0,0,0.01,0.19 +Pro Yakyuu Team o Tsukurou!,DS,2008,Sports,Sega,0,0,0.19,0,0.19 +Warriors: Legends of Troy,PS3,2011,Action,Tecmo Koei,0.06,0.05,0.07,0.02,0.19 +Jeopardy!,DS,2010,Misc,THQ,0.18,0,0,0.01,0.19 +ESPN International Track & Field,PS2,2000,Sports,Konami Digital Entertainment,0.09,0.07,0,0.02,0.19 +Lunar Legend,GBA,2002,Role-Playing,Media Rings,0.14,0.05,0,0,0.19 +Conflict: Global Terror,PS2,2005,Shooter,Eidos Interactive,0.09,0.07,0,0.02,0.19 +Valhalla Knights 3,PSV,2013,Role-Playing,Xseed Games,0.04,0.01,0.12,0.01,0.19 +Tamagotchi Party On!,Wii,2006,Misc,Namco Bandai Games,0.12,0,0.06,0.01,0.19 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 5: CR Shinseiki Evangelion * Pachi-Slot Shinseiki Evangelion,PS2,2006,Misc,D3Publisher,0,0,0.19,0,0.19 +Brunswick Pro Bowling,PS3,2010,Sports,505 Games,0.1,0.06,0,0.03,0.19 +Shaun White Skateboarding,PS3,2010,Sports,Ubisoft,0.11,0.05,0,0.03,0.19 +Hulk,GC,2003,Action,Universal Interactive,0.15,0.04,0,0.01,0.19 +The Heavy Rain and Beyond: Two Souls Collection,PS4,2016,Action,Sony Computer Entertainment,0,0.16,0,0.03,0.19 +Cabela's Survival: Shadows of Katmai,PS3,2011,Sports,Activision,0.11,0.05,0,0.03,0.19 +Shaun White Skateboarding,Wii,2010,Sports,Ubisoft,0.14,0.03,0,0.01,0.19 +Boogie,PS2,2007,Misc,Electronic Arts,0.09,0.07,0,0.02,0.19 +Gungrave,PS2,2002,Shooter,Activision,0.09,0.07,0,0.02,0.19 +Phantasy Star Universe,PS2,2006,Role-Playing,Sega,0,0,0.19,0,0.19 +Transworld Surf,PS2,2002,Sports,Atari,0.09,0.07,0,0.02,0.19 +God Eater Resurrection,PSV,2015,Action,Namco Bandai Games,0,0,0.19,0,0.19 +Tenchu: Fatal Shadows,PS2,2004,Action,Sega,0.09,0.07,0,0.02,0.19 +Active Health with Carol Vorderman,DS,2009,Sports,Nintendo,0,0.18,0,0.01,0.19 +Escape The Museum,DS,2010,Adventure,Astragon,0.05,0.12,0,0.02,0.19 +The Legend of Spyro: A New Beginning,GC,2006,Platform,Vivendi Games,0.15,0.04,0,0.01,0.19 +International Soccer,2600,1981,Sports,Mattel Interactive,0.18,0.01,0,0,0.19 +Sing4: The Hits Edition,Wii,2011,Misc,Crave Entertainment,0.18,0,0,0.01,0.19 +Jewel Master: Cradle of Athena,DS,2010,Puzzle,Storm City Games,0.18,0,0,0.01,0.19 +Princess Maker: Yumemiru Yosei,PS,1997,Strategy,Sony Computer Entertainment,0,0,0.18,0.01,0.19 +Pet Zombies,3DS,,Simulation,Majesco Entertainment,0.18,0,0,0.01,0.19 +Big Air,PS,1999,Sports,Accolade,0.1,0.07,0,0.01,0.19 +Shining Force II,GEN,1993,Strategy,Sega,0,0,0.19,0,0.19 +Gallop Racer,PS,1999,Sports,Tecmo Koei,0,0,0.18,0.01,0.19 +Harry Potter and the Prisoner of Azkaban,XB,2004,Action,Electronic Arts,0.14,0.04,0,0.01,0.19 +NASCAR Unleashed,3DS,2011,Racing,Activision,0.18,0,0,0.01,0.19 +3rd Super Robot Wars Z Jigoku Hen,PSV,2014,Role-Playing,Namco Bandai Games,0,0,0.19,0,0.19 +Sudoku Gridmaster (JP sales),DS,2006,Puzzle,Nintendo,0,0,0.19,0,0.19 +Dynasty Warriors Gundam,X360,2007,Action,Namco Bandai Games,0.15,0.01,0.02,0.01,0.19 +Taiko no Tatsujin: Wii U Version!,WiiU,2013,Misc,Namco Bandai Games,0,0,0.19,0,0.19 +Monsters vs. Aliens,PS2,2009,Action,Activision,0.11,0,0,0.08,0.19 +CSI: Fatal Conspiracy,PS3,2010,Adventure,Ubisoft,0.11,0.05,0,0.02,0.19 +College Slam,PS,1995,Sports,Acclaim Entertainment,0.1,0.07,0,0.01,0.19 +Arcania: Gothic 4,PC,2010,Role-Playing,JoWood Productions,0.09,0.08,0,0.02,0.19 +Mushroom Men: The Spore Wars,Wii,2008,Action,SouthPeak Games,0.17,0.01,0,0.01,0.19 +Zumba Fitness Rush,X360,2012,Sports,505 Games,0,0.16,0,0.02,0.19 +Pro Yaky? Spirits 4,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.19,0,0.19 +Pictionary,DS,2010,Puzzle,THQ,0.1,0.07,0,0.02,0.19 +SoulCalibur Legends,Wii,2007,Action,Namco Bandai Games,0.16,0.01,0,0.01,0.19 +Daigasso! Band Brothers,DS,2004,Misc,Nintendo,0,0,0.19,0,0.19 +Rise of the Kasai,PS2,2005,Action,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +Thoroughbred Breeder,SNES,1993,Simulation,Hect,0,0,0.19,0,0.19 +F1 2011,PC,2011,Racing,Codemasters,0,0.15,0,0.04,0.19 +Momotarou Dentetsu World,DS,2010,Misc,Hudson Soft,0,0,0.19,0,0.19 +Nobunaga no Yabou: Souzou,PS3,2013,Strategy,Tecmo Koei,0,0,0.19,0,0.19 +Doctor Who: Return to Earth,Wii,2010,Adventure,Asylum Entertainment,0,0.16,0,0.02,0.19 +The Munchables,Wii,2009,Action,Namco Bandai Games,0.17,0,0,0.01,0.19 +We Dance,Wii,2011,Misc,Nordic Games,0,0.17,0,0.02,0.19 +Chibi-Robo! Park Patrol,DS,2007,Adventure,Unknown,0,0,0.19,0,0.19 +Bolt,PS3,2008,Adventure,Disney Interactive Studios,0.12,0.05,0,0.02,0.19 +Singstar: Ultimate Party,PS4,2014,Misc,Sony Computer Entertainment Europe,0,0.16,0,0.03,0.19 +Mathews Bowhunting,Wii,2010,Sports,Zoo Games,0.18,0,0,0.01,0.19 +3rd Super Robot Wars Z: Tengoku-Hen,PSV,2015,Action,Namco Bandai Games,0,0,0.19,0,0.19 +One Piece: Unlimited Adventure,Wii,2007,Adventure,Namco Bandai Games,0.07,0,0.11,0.01,0.19 +Remington Super Slam Hunting: North America,Wii,2010,Sports,Mastiff,0.18,0,0,0.01,0.19 +Crash & Spyro Superpack,GBA,2005,Platform,Vivendi Games,0.13,0.05,0,0,0.19 +Earth Defense Force: Insect Armageddon,X360,2011,Shooter,D3Publisher,0.1,0.05,0.03,0.01,0.19 +Face Training,DS,2007,Misc,Nintendo,0,0,0.19,0,0.19 +Star Trek: Legacy,X360,,Simulation,Ubisoft,0.14,0.03,0,0.02,0.19 +ThunderStrike 2,PS,1994,Simulation,Core Design Ltd.,0.1,0.07,0,0.01,0.19 +Disney's Meet the Robinsons,Wii,2007,Action,Disney Interactive Studios,0.17,0,0,0.01,0.19 +Call of Duty: World at War,PC,2008,Shooter,Activision,0.02,0.13,0,0.03,0.19 +Pro Yaky? Spirits 2012,PS3,2012,Sports,Konami Digital Entertainment,0,0,0.19,0,0.19 +Kuma-Tomo,3DS,2013,Misc,Namco Bandai Games,0,0,0.19,0,0.19 +Super Real Mahjong P V,SAT,1995,Misc,Seta Corporation,0,0,0.19,0,0.19 +Thomas the Tank Engine & Friends,GBA,2004,Adventure,,0.13,0.05,0,0,0.19 +Grand Slam Tennis 2,X360,2012,Sports,Electronic Arts,0.1,0.07,0,0.02,0.19 +Penguin no Mondai X: Tenkuu no 7 Senshi,DS,2009,Action,Konami Digital Entertainment,0,0,0.19,0,0.19 +The Scorpion King: Sword of Osiris,GBA,2002,Action,Vivendi Games,0.13,0.05,0,0,0.19 +Bubsy 3D,PS,1996,Platform,Accolade,0.1,0.07,0,0.01,0.19 +Reel Fishing Paradise 3D,3DS,2011,Sports,Marvelous Interactive,0.12,0,0.06,0.01,0.19 +NCAA Final Four 2001,PS2,2000,Sports,Sony Computer Entertainment,0.09,0.07,0,0.02,0.19 +Farmtopia,DS,2010,Simulation,505 Games,0.18,0,0,0.01,0.19 +Robin Hood: Defender of the Crown,PS2,2003,Strategy,Capcom,0.09,0.07,0,0.02,0.19 +SD Gundam GX,SNES,1994,Strategy,Namco Bandai Games,0,0,0.19,0,0.19 +R-Type Final,PS2,2003,Shooter,Metro 3D,0.09,0.07,0,0.02,0.19 +Jackie Chan Adventures: Legend of the Dark Hand,GBA,2001,Action,Activision,0.13,0.05,0,0,0.19 +MotoGP,Wii,2009,Racing,Capcom,0.05,0.11,0,0.02,0.19 +Sega GT 2002,XB,2002,Racing,Sega,0.12,0.03,0.03,0.01,0.19 +Ty the Tasmanian Tiger 3: Night of the Quinkan,PS2,2005,Action,Activision,0.09,0.07,0,0.02,0.19 +WWE SmackDown vs. Raw 2009,DS,2008,Fighting,THQ,0.15,0.02,0,0.01,0.19 +Pro Evolution Soccer 2014,3DS,2013,Action,Konami Digital Entertainment,0,0,0.19,0,0.19 +Samurai Warriors 2: Empires,PS2,2006,Action,Tecmo Koei,0,0,0.19,0,0.19 +Blood Omen 2,XB,2002,Action,Eidos Interactive,0.14,0.04,0,0.01,0.19 +Jurassic: The Hunted,PS3,2009,Shooter,Activision,0.17,0,0,0.02,0.19 +J-League Pro Soccer Club o Tsukurou! 5,PS2,2007,Sports,Sega,0,0,0.19,0,0.19 +Harry Potter: Quidditch World Cup,XB,2003,Sports,Electronic Arts,0.14,0.04,0,0.01,0.19 +Dance Central: Spotlight,XOne,2014,Misc,Microsoft Game Studios,0.15,0.03,0,0,0.19 +Little Battlers eXperience W,PSP,2012,Role-Playing,Level 5,0,0,0.19,0,0.19 +Magical Starsign (US sales),DS,2006,Role-Playing,Nintendo,0.16,0.03,0,0,0.19 +Tekken Tag Tournament 2,WiiU,2012,Fighting,Namco Bandai Games,0.09,0.07,0.01,0.01,0.19 +Hot Wheels: Battle Force 5,Wii,2009,Racing,Activision,0.17,0,0,0.01,0.19 +Dragon Blade: Wrath of Fire,Wii,2007,Action,D3Publisher,0.17,0,0,0.01,0.19 +La Pucelle: Tactics,PS2,2002,Role-Playing,Tecmo Koei,0.09,0.07,0,0.02,0.19 +Phantasy Star Nova,PSV,2014,Role-Playing,Sega,0,0,0.19,0,0.19 +SBK X: Superbike World Championship,X360,2010,Racing,Black Bean Games,0.1,0.07,0,0.02,0.19 +Samurai Warriors: State of War,PSP,2005,Action,Tecmo Koei,0.07,0,0.11,0.01,0.19 +Tiger Woods PGA Tour 07,XB,2006,Sports,Electronic Arts,0.13,0.05,0,0.01,0.19 +Call of Juarez,X360,2007,Shooter,Ubisoft,0.14,0.02,0,0.01,0.19 +Star Wars: The Clone Wars & Tetris Worlds,XB,2002,Misc,Microsoft Game Studios,0.14,0.04,0,0.01,0.19 +The Bee Game,DS,2007,Adventure,Midway Games,0.17,0,0,0.01,0.19 +EverQuest Online Adventures: Frontiers,PS2,2003,Role-Playing,Sony Online Entertainment,0.09,0.07,0,0.02,0.19 +Cabela's Survival: Shadows of Katmai,X360,2011,Sports,Activision,0.14,0.03,0,0.01,0.19 +NBA Ballers: Chosen One,X360,2008,Sports,Midway Games,0.17,0,0,0.01,0.19 +WWE All Stars,PSP,2011,Fighting,THQ,0.12,0.04,0,0.03,0.19 +Treasures of the Deep,PS,1997,Action,Namco Bandai Games,0.1,0.07,0,0.01,0.19 +Phantasy Star Online Ver. 2,DC,2001,Role-Playing,Sega,0,0,0.19,0,0.19 +EyePet & Friends,PS3,2011,Simulation,Sony Computer Entertainment,0.06,0.09,0,0.03,0.19 +The Lord of the Rings: War in the North,PC,2011,Action,Warner Bros. Interactive Entertainment,0.04,0.11,0,0.03,0.18 +Major League Baseball 2K10,PS3,2010,Sports,Take-Two Interactive,0.17,0,0,0.01,0.18 +Fight Club,PS2,2004,Fighting,Vivendi Games,0.09,0.07,0,0.02,0.18 +Hello Kitty: Birthday Adventures,DS,2010,Adventure,Namco Bandai Games,0.06,0.11,0,0.02,0.18 +Syndicate,X360,2012,Shooter,Electronic Arts,0.1,0.06,0,0.02,0.18 +Dance Dance Revolution: Disney Grooves,Wii,2009,Simulation,Konami Digital Entertainment,0.17,0,0,0.01,0.18 +Pure Futbol,X360,2010,Sports,Ubisoft,0.08,0.09,0,0.02,0.18 +Harvest Moon: A Wonderful Life Special Edition,PS2,2004,Simulation,505 Games,0.09,0.07,0,0.02,0.18 +Sports Illustrated for Kids: Football,GBA,2003,Sports,BAM! Entertainment,0.13,0.05,0,0,0.18 +The Last Airbender,DS,2010,Action,THQ,0.13,0.04,0,0.01,0.18 +Happy Cooking,DS,2006,Simulation,Ubisoft,0.17,0,0,0.01,0.18 +.hack//Quarantine Part 4: The Final Chapter,PS2,2003,Role-Playing,Atari,0.09,0.07,0,0.02,0.18 +Close Combat: First to Fight,XB,2005,Shooter,Take-Two Interactive,0.14,0.04,0,0.01,0.18 +MotoGP 14,PS4,2014,Racing,Milestone S.r.l.,0.04,0.11,0,0.04,0.18 +Indiana Jones and the Emperor's Tomb,XB,2003,Action,LucasArts,0.14,0.04,0,0.01,0.18 +NBA Live 08,Wii,2007,Sports,Electronic Arts,0.17,0,0,0.02,0.18 +Buffy the Vampire Slayer: Chaos Bleeds,PS2,2003,Action,Vivendi Games,0.09,0.07,0,0.02,0.18 +Half-Minute Hero,PSP,2009,Role-Playing,Rising Star Games,0.08,0.02,0.07,0.02,0.18 +Rock Band Track Pack Volume 2,X360,2008,Misc,MTV Games,0.16,0.01,0,0.01,0.18 +Reel Fishing II,PS,2000,Sports,Victor Interactive,0.1,0.07,0,0.01,0.18 +Ringling Bros. and Barnum & Bailey Circus,Wii,2009,Action,Take-Two Interactive,0.17,0,0,0.01,0.18 +The Walking Dead: Season One,PSV,2013,Adventure,Square Enix,0.14,0,0.01,0.03,0.18 +Ty the Tasmanian Tiger,XB,2002,Platform,Electronic Arts,0.14,0.04,0,0.01,0.18 +Dead or Alive,SAT,1997,Fighting,Tecmo Koei,0,0,0.18,0,0.18 +Driving Emotion Type-S,PS2,2000,Racing,Electronic Arts,0.04,0.03,0.11,0.01,0.18 +Siren,PS2,2003,Adventure,Sony Computer Entertainment,0.09,0.07,0,0.02,0.18 +"The Chronicles of Narnia: The Lion, The Witch and The Wardrobe",DS,2005,Action,Disney Interactive Studios,0.15,0.02,0,0.01,0.18 +NARC,XB,2005,Shooter,Midway Games,0.14,0.04,0,0.01,0.18 +Naruto Shippuden: Dragon Blade Chronicles,Wii,2009,Action,505 Games,0.11,0.02,0.05,0.01,0.18 +Dynasty Warriors 8: Empires,PS4,2014,Action,Tecmo Koei,0.06,0.07,0.03,0.02,0.18 +Super Robot Taisen J,GBA,2005,Strategy,Banpresto,0,0,0.18,0,0.18 +Evolve,PC,2015,Shooter,Take-Two Interactive,0.07,0.1,0,0.01,0.18 +Nep League DS,DS,2007,Sports,Jaleco,0,0,0.18,0,0.18 +Ar tonelico 2: Melody of Metafalica,PS2,2007,Role-Playing,Nippon Ichi Software,0.04,0.03,0.11,0.01,0.18 +de Blob 2,Wii,2011,Platform,THQ,0.11,0.06,0,0.02,0.18 +Lips: Party Classics,X360,2010,Misc,Microsoft Game Studios,0.05,0.11,0,0.02,0.18 +Casper: Friends Around the World,PS,2000,Action,TDK Core,0.1,0.07,0,0.01,0.18 +Borderlands,PC,2009,Shooter,Take-Two Interactive,0.01,0.14,0,0.04,0.18 +Jurassic Park III: Island Attack,GBA,2001,Adventure,Konami Digital Entertainment,0.13,0.05,0,0,0.18 +Chaotic: Shadow Warriors,DS,2009,Action,Activision,0.17,0,0,0.01,0.18 +Ghostbusters: The Video Game,PSP,2009,Action,Atari,0.16,0.01,0,0.02,0.18 +GameBoy Wars,GB,1991,Strategy,Nintendo,0,0,0.18,0,0.18 +Amplitude,PS2,2003,Misc,Sony Computer Entertainment,0.09,0.07,0,0.02,0.18 +Alone in the Dark,Wii,2008,Adventure,Atari,0.09,0.08,0,0.02,0.18 +Company of Heroes: Anthology,PC,2009,Strategy,THQ,0,0.15,0,0.04,0.18 +Shape Up,XOne,2014,Misc,Ubisoft,0.08,0.09,0,0.01,0.18 +Gauntlet: Seven Sorrows,XB,2005,Role-Playing,Midway Games,0.14,0.04,0,0.01,0.18 +AirForce Delta Storm,XB,2001,Shooter,Konami Digital Entertainment,0.14,0.04,0,0.01,0.18 +Trauma Team,Wii,,Simulation,Unknown,0.15,0,0.02,0.01,0.18 +Monopoly Party,XB,2002,Misc,Infogrames,0.14,0.04,0,0.01,0.18 +Fear Effect 2: Retro Helix,PS,2001,Action,Eidos Interactive,0.1,0.07,0,0.01,0.18 +How to Train Your Dragon,PS3,2010,Action,Activision,0.12,0.04,0,0.02,0.18 +Remember Me,X360,2013,Action,Capcom,0.1,0.07,0,0.02,0.18 +International Superstar Soccer 2000 (JP weekly sales),N64,1999,Sports,Konami Digital Entertainment,0,0,0.18,0,0.18 +Chocobo no Fushigi Dungeon for WonderSwan,WS,1999,Role-Playing,Namco Bandai Games,0,0,0.18,0,0.18 +Klonoa: Door to Phantomile,PS,1997,Platform,Sony Computer Entertainment,0,0,0.17,0.01,0.18 +Vietcong: Purple Haze,PS2,2004,Shooter,Gathering of Developers,0.09,0.07,0,0.02,0.18 +Hitman: HD Trilogy,X360,2013,Action,Square Enix,0.07,0.09,0,0.02,0.18 +Atari Anniversary Advance,GBA,2002,Misc,Atari,0.13,0.05,0,0,0.18 +Summer Athletics: The Ultimate Challenge,PS2,2008,Sports,DTP Entertainment,0,0,0,0.18,0.18 +Driver: San Francisco,PC,2011,Racing,Ubisoft,0.05,0.1,0,0.03,0.18 +Metal Gear Ac!d 2,PSP,2005,Strategy,Konami Digital Entertainment,0.11,0.01,0.05,0.01,0.18 +Hatsune Miku and Future Stars: Project Mirai,3DS,2012,Misc,Sega,0,0,0.18,0,0.18 +Let's TAP,Wii,2008,Misc,Sega,0.09,0.06,0.01,0.02,0.18 +X-Men Origins: Wolverine,PS2,2009,Action,Activision,0.13,0,0,0.05,0.18 +TalkMan (Japan),PSP,2005,Misc,Sony Computer Entertainment,0,0,0.18,0,0.18 +Cabela's Adventure Camp,Wii,2011,Misc,Activision,0.15,0.02,0,0.01,0.18 +LEGO Marvel's Avengers,3DS,2016,Action,Warner Bros. Interactive Entertainment,0.07,0.08,0.01,0.01,0.18 +Bloody Roar: Primal Fury,GC,2002,Fighting,Activision,0.14,0.04,0,0,0.18 +Shrek SuperSlam,DS,2005,Action,Activision,0.17,0,0,0.01,0.18 +We Sing UK Hits,Wii,2011,Misc,Nordic Games,0,0.16,0,0.02,0.18 +Mega Man Soccer,SNES,1993,Sports,Capcom,0.04,0.01,0.13,0,0.18 +The Chronicles of Narnia: Prince Caspian,X360,2008,Action,Disney Interactive Studios,0.16,0.01,0,0.01,0.18 +ZhuZhu Puppies,DS,2011,Simulation,Activision,0.13,0.04,0,0.01,0.18 +Rabbids Party Collection,Wii,2010,Misc,Ubisoft,0,0.16,0,0.02,0.18 +Trinity Universe,PS3,2009,Role-Playing,Nippon Ichi Software,0.07,0.06,0.03,0.02,0.18 +Jewel Match,DS,2010,Puzzle,PlayV,0.05,0.12,0,0.02,0.18 +FIFA Soccer 07,GC,2006,Sports,Electronic Arts,0.14,0.04,0,0,0.18 +Dungeon Travelers 2: The Royal Library & The Monster Seal,PSV,2014,Role-Playing,Atlus,0.07,0.03,0.05,0.03,0.18 +Dying Light,PC,2015,Action,Warner Bros. Interactive Entertainment,0.11,0.06,0,0.02,0.18 +Vampire Savior: The Lord of Vampire,SAT,1998,Fighting,Capcom,0,0,0.18,0,0.18 +Pok?mon I Choose You / Squirtle Squad Game Boy Advance Video,GBA,2004,Misc,Nintendo,0.13,0.05,0,0,0.18 +Super Robot Taisen UX,3DS,2013,Role-Playing,Namco Bandai Games,0,0,0.18,0,0.18 +Six Flags Fun Park,DS,2008,Misc,Brash Entertainment,0.17,0,0,0.01,0.18 +Test Drive Off-Road Wide Open,XB,2001,Racing,Infogrames,0.15,0.03,0,0.01,0.18 +Guilty Gear Xrd: Sign,PS3,2014,Fighting,Arc System Works,0.09,0,0.07,0.02,0.18 +Pro Yaky? Spirits 2011,PS3,2011,Sports,Konami Digital Entertainment,0,0,0.18,0,0.18 +Ben 10 Ultimate Alien: Cosmic Destruction,X360,2010,Platform,D3Publisher,0.1,0.06,0,0.02,0.18 +Dengeki Bunko Fighting Climax,PSV,2014,Fighting,Sega,0.08,0,0.07,0.03,0.18 +Battle Commander: Hachibushu Shura no Heihou,SNES,1991,Strategy,Banpresto,0,0,0.18,0,0.18 +Backbreaker,X360,,Sports,Unknown,0.17,0,0,0.01,0.18 +Odin Sphere: Leifthrasir,PS4,2016,Role-Playing,Nippon Ichi Software,0.06,0.03,0.07,0.02,0.18 +Bad Boys: Miami Takedown,XB,2004,Shooter,Empire Interactive,0.14,0.04,0,0.01,0.18 +Jampack Vol. 1,PS,1996,Misc,Sony Computer Entertainment,0.1,0.07,0,0.01,0.18 +Spider-Man: Friend or Foe,PSP,2007,Action,Activision,0.16,0,0,0.01,0.18 +Mega Man X: Command Mission,PS2,2004,Role-Playing,Capcom,0.09,0.07,0,0.02,0.18 +Tokyo Xtreme Racer DRIFT,PS2,2003,Racing,Genki,0.09,0.07,0,0.02,0.18 +Moon,PS,1997,Adventure,ASCII Entertainment,0,0,0.17,0.01,0.18 +FIFA Soccer 11,PC,2010,Sports,Electronic Arts,0,0.14,0,0.04,0.18 +LEGO Marvel Super Heroes,PC,2013,Action,Warner Bros. Interactive Entertainment,0.04,0.12,0,0.02,0.18 +Cabela's Big Game Hunter 2005 Adventures,XB,2004,Sports,Activision,0.13,0.04,0,0.01,0.18 +Disney Friends,DS,2007,Simulation,Disney Interactive Studios,0.13,0.04,0,0.01,0.18 +Sesame Street: Elmo's Letter Adventure,N64,1999,Misc,NewKidCo,0.14,0.04,0,0,0.18 +Re-Volt,N64,1999,Racing,Acclaim Entertainment,0.14,0.04,0,0,0.18 +Gokujou Parodius,SNES,1994,Shooter,Konami Digital Entertainment,0,0,0.18,0,0.18 +Hyperdimension Neptunia,PSV,2013,Role-Playing,Compile Heart,0.09,0,0.07,0.02,0.18 +Gauntlet: Dark Legacy,GC,2002,Action,Midway Games,0.14,0.04,0,0,0.18 +A.C.E.: Another Century's Episode 2,PS2,2006,Simulation,Banpresto,0,0,0.18,0,0.18 +Guitar Hero Live,WiiU,2015,Misc,Activision,0.12,0.04,0,0.02,0.18 +Shadow The Hedgehog,XB,2005,Platform,Sega,0.13,0.04,0,0.01,0.18 +Ridge Racer Unbounded,PS3,2012,Racing,Namco Bandai Games,0.05,0.1,0,0.03,0.18 +Burnout Legends,DS,2005,Racing,Electronic Arts,0.15,0.02,0,0.01,0.18 +Horrid Henry: Missions of Mischief,DS,2010,Adventure,SouthPeak Games,0.01,0.15,0,0.02,0.18 +Batman: Vengeance,GBA,2001,Adventure,Ubisoft,0.13,0.05,0,0,0.18 +Full Auto 2: Battlelines,PS3,2006,Racing,Sega,0.14,0.02,0,0.02,0.18 +Soccer Tsuku Tokudai Gou: J-League Pro Soccer Club o Tsukurou,DC,2000,Sports,Sega,0,0,0.18,0,0.18 +The Adventures of Cookie & Cream,PS2,2000,Puzzle,Empire Interactive,0.09,0.07,0,0.02,0.18 +Van Helsing,XB,2007,Action,Activision,0.13,0.04,0,0.01,0.18 +Aliens: Colonial Marines,PC,2013,Shooter,Sega,0.1,0.06,0,0.02,0.18 +Splatterhouse,X360,2010,Action,Namco Bandai Games,0.14,0.03,0,0.01,0.18 +MindJack,PS3,2011,Shooter,Square Enix,0.07,0.08,0,0.03,0.18 +Dark Souls II,PC,2014,Role-Playing,Namco Bandai Games,0.08,0.08,0,0.02,0.18 +Daigasso! Band Brothers P,3DS,2013,Misc,Nintendo,0,0,0.18,0,0.18 +Gun,GC,2005,Shooter,Activision,0.14,0.04,0,0,0.18 +World of Outlaws: Sprint Cars,X360,2010,Racing,THQ,0.17,0,0,0.01,0.18 +Marvel Super Hero Squad: Comic Combat,X360,2011,Action,THQ,0.13,0.04,0,0.01,0.18 +SingStar Motown,PS3,2009,Misc,Sony Computer Entertainment,0,0.16,0,0.02,0.18 +Cabela's Legendary Adventures,Wii,2008,Sports,Activision,0.17,0,0,0.01,0.18 +F1 Challenge,SAT,1994,Racing,Sega,0,0,0.18,0,0.18 +Transformers: Dark of the Moon,Wii,2011,Action,Activision,0.1,0.07,0,0.02,0.18 +Shadow Madness,PS,1999,Action,Crave Entertainment,0.1,0.07,0,0.01,0.18 +Tom Clancy's Ghost Recon: Future Soldier,PC,2012,Shooter,Ubisoft,0.05,0.1,0,0.03,0.18 +Tiger Woods PGA Tour 2004,GBA,2003,Sports,Electronic Arts,0.13,0.05,0,0,0.18 +Aliens: Infestation,DS,2011,Action,Sega,0.1,0.06,0,0.02,0.18 +Brink,PC,2011,Shooter,Bethesda Softworks,0.06,0.09,0,0.03,0.18 +The Game of Life / Yahtzee / Payday,GBA,2005,Misc,Zoo Digital Publishing,0.13,0.05,0,0,0.18 +American Chopper 2: Full Throttle,PS2,2005,Racing,Zoo Digital Publishing,0.09,0.07,0,0.02,0.18 +Dynasty Warriors: Gundam 3,X360,2010,Action,Tecmo Koei,0.11,0.04,0.02,0.01,0.18 +FIFA 16,PC,2015,Sports,Electronic Arts,0.04,0.13,0,0.01,0.18 +Silent Hill 4: The Room,XB,2004,Action,Konami Digital Entertainment,0.14,0.04,0,0.01,0.18 +Heavy Fire: Afghanistan,PS3,2011,Shooter,Unknown,0.17,0,0,0.01,0.18 +Commandos 2: Men of Courage,PS2,2002,Strategy,Eidos Interactive,0.09,0.07,0,0.02,0.18 +Doom (2016),PC,2016,Shooter,Bethesda Softworks,0.06,0.1,0,0.01,0.18 +Chuck E. Cheese's Party Games,DS,2010,Misc,UFO Interactive,0.17,0,0,0.01,0.18 +Pro Evolution Soccer 2013,3DS,2012,Sports,Konami Digital Entertainment,0.05,0.02,0.1,0.01,0.18 +Pirates: Hunt For Blackbeard's Booty,Wii,2008,Adventure,Activision,0.08,0.08,0,0.02,0.18 +FIFA Soccer 2002,GC,2001,Sports,Electronic Arts,0.14,0.04,0,0,0.18 +Godzilla (2015),PS4,2014,Action,Namco Bandai Games,0.1,0.03,0.02,0.03,0.18 +Race Pro,X360,2009,Racing,Atari,0.06,0.09,0,0.02,0.18 +Atari Anniversary Edition Redux,PS,2000,Misc,Infogrames,0.1,0.07,0,0.01,0.18 +Toukiden: The Age of Demons,PSP,2013,Action,Tecmo Koei,0,0,0.18,0,0.18 +Fireblade,PS2,2002,Action,Midway Games,0.09,0.07,0,0.02,0.18 +Mercury Meltdown Revolution,Wii,2007,Action,Ignition Entertainment,0.16,0,0,0.01,0.18 +Disney's Tarzan Untamed,GC,2001,Platform,Ubisoft,0.14,0.04,0,0,0.18 +WordJong Party,Wii,2008,Puzzle,Destineer,0.17,0,0,0.01,0.18 +Brunswick Circuit Pro Bowling,PS,1998,Sports,THQ,0.1,0.07,0,0.01,0.18 +Cabela's Dangerous Hunts 2009,PS2,2008,Sports,Activision Value,0.09,0.07,0,0.02,0.18 +Velvet Assassin,X360,2009,Shooter,DTP Entertainment,0.14,0.02,0.01,0.01,0.18 +Ball Breakers,PS,2000,Action,Take-Two Interactive,0.1,0.07,0,0.01,0.18 +Mobile Suit Gundam Seed Destiny: Generation of C.E.,PS2,2005,Action,Namco Bandai Games,0,0,0.18,0,0.18 +EyeToy: Groove,PS2,2003,Misc,Sony Computer Entertainment,0.09,0.07,0,0.02,0.18 +Twisted Metal: Small Brawl,PS,,Action,Unknown,0.1,0.07,0,0.01,0.18 +Disgaea 4: A Promise Unforgotten,PSV,2014,Role-Playing,Nippon Ichi Software,0.04,0.04,0.08,0.02,0.18 +Charlie and the Chocolate Factory,GC,2005,Adventure,Global Star,0.14,0.04,0,0,0.18 +Armored Core: Last Raven,PS2,2005,Simulation,505 Games,0.05,0.04,0.08,0.01,0.18 +Tomb Raider: Underworld,PS2,2009,Action,Eidos Interactive,0.09,0.04,0,0.05,0.18 +All Grown Up! Express Yourself,GBA,2004,Misc,THQ,0.13,0.05,0,0,0.18 +College Hoops 2K7,PS3,2007,Sports,Take-Two Interactive,0.16,0,0,0.01,0.18 +K-1 World Grand Prix,PS2,2002,Sports,Konami Digital Entertainment,0.04,0.03,0.1,0.01,0.18 +Skate it,DS,2008,Sports,Electronic Arts,0.14,0.02,0,0.01,0.18 +Kidou Senshi Gundam: Senjou no Kizuna Portable,PSP,2009,Strategy,Namco Bandai Games,0,0,0.18,0,0.18 +Otomedius Excellent,X360,,Shooter,Unknown,0.13,0,0.04,0.01,0.18 +Super Robot Taisen A Portable,PSP,2008,Strategy,Namco Bandai Games,0,0,0.18,0,0.18 +Juiced,XB,2005,Racing,THQ,0.13,0.04,0,0.01,0.18 +Looney Tunes: Back in Action,GBA,2003,Platform,Electronic Arts,0.13,0.05,0,0,0.18 +Virtua Tennis,GBA,2002,Sports,Atari,0.13,0.05,0,0,0.18 +Tales of the Tempest,DS,2006,Role-Playing,Namco Bandai Games,0,0,0.18,0,0.18 +SimCity Creator (JP sales),DS,2008,Simulation,Electronic Arts,0,0,0.18,0,0.18 +Biohazard: Revival Selection,PS3,2011,Action,Capcom,0,0,0.18,0,0.18 +Sonic Riders: Zero Gravity,PS2,2008,Racing,Sega,0.09,0.07,0,0.02,0.18 +Driver: San Francisco,Wii,2011,Racing,Ubisoft,0.06,0.09,0,0.02,0.18 +UFC: Sudden Impact,PS2,2004,Fighting,Global Star,0.09,0.07,0,0.02,0.18 +Shawn Johnson Gymnastics,Wii,2010,Sports,Zoo Games,0.17,0,0,0.01,0.18 +NBA Hoopz,PS2,2001,Sports,Midway Games,0.09,0.07,0,0.02,0.18 +Captain America: Super Soldier,X360,2011,Action,Sega,0.11,0.05,0,0.01,0.18 +TRON: Evolution,DS,2010,Action,Disney Interactive Studios,0.12,0.04,0,0.01,0.18 +Pac-Man World 3,DS,2005,Platform,Namco Bandai Games,0.16,0,0,0.01,0.18 +ESPN X Games Skateboarding,GBA,2001,Sports,Konami Digital Entertainment,0.13,0.05,0,0,0.18 +Nancy Drew: The Hidden Staircase,DS,2008,Adventure,THQ,0.16,0,0,0.01,0.18 +Brunswick Cosmic Bowling,Wii,2010,Sports,GameMill Entertainment,0.17,0,0,0.01,0.18 +Star Wars: Battlefront II,PC,2005,Shooter,LucasArts,0.02,0.13,0,0.03,0.18 +Speedball 2100,PS,2000,Sports,Empire Interactive,0.1,0.07,0,0.01,0.18 +LEGO Island 2: The Brickster's Revenge,PS,2001,Adventure,LEGO Media,0.1,0.07,0,0.01,0.18 +College Hoops 2K8,X360,2007,Sports,Take-Two Interactive,0.16,0,0,0.01,0.18 +FIFA 17,X360,2016,Sports,Electronic Arts,0.03,0.13,0,0.01,0.18 +Fancy Nancy: Tea Party Time!,DS,2010,Adventure,THQ,0.17,0,0,0.01,0.18 +Backyard Basketball,GBA,2004,Sports,Atari,0.13,0.05,0,0,0.18 +Madden NFL 09,XB,2008,Sports,Electronic Arts,0.13,0.04,0,0.01,0.18 +Scooby-Doo! Unmasked,GBA,2005,Platform,THQ,0.13,0.05,0,0,0.18 +Summon Night 4,PS2,2006,Role-Playing,Banpresto,0,0,0.18,0,0.18 +Pro Yaky? Spirits 5,PS2,2008,Sports,Konami Digital Entertainment,0,0,0.18,0,0.18 +NHL 2004,XB,2003,Sports,Electronic Arts,0.13,0.04,0,0.01,0.18 +Namco Museum: 50th Anniversary,XB,2005,Misc,Namco Bandai Games,0.13,0.04,0,0.01,0.18 +You Don't Know Jack,PS3,2011,Misc,THQ,0.16,0,0,0.01,0.18 +Marvel Super Hero Squad: The Infinity Gauntlet,PS3,2010,Action,THQ,0.12,0.03,0,0.02,0.18 +NFL 2K2,XB,2002,Sports,Sega,0.13,0.04,0,0.01,0.18 +My French Coach,DS,2007,Misc,Ubisoft,0.15,0.02,0,0.01,0.18 +Camp Rock: The Final Jam,DS,2010,Misc,Disney Interactive Studios,0.14,0.02,0,0.01,0.18 +NBA Starting Five,PS2,,Sports,Unknown,0.09,0.07,0,0.02,0.18 +Castlevania Judgment,Wii,2008,Fighting,Konami Digital Entertainment,0.13,0.02,0.01,0.01,0.18 +Dead or Alive Paradise,PSP,2010,Misc,Ubisoft Annecy,0.07,0.02,0.07,0.02,0.17 +The Suffering: Ties That Bind,PS2,2005,Action,Midway Games,0.09,0.07,0,0.02,0.17 +Disney Sing It: Family Hits,PS3,2010,Misc,Disney Interactive Studios,0.11,0.04,0,0.02,0.17 +Ashes Cricket 2009,PS3,2009,Sports,Codemasters,0,0.16,0,0.02,0.17 +EyeToy: Kinetic,PS2,2005,Sports,Sony Computer Entertainment,0.09,0.07,0,0.02,0.17 +Petz: Horseshoe Ranch,DS,2009,Adventure,Ubisoft,0.16,0,0,0.01,0.17 +Army Men: Sarge's Heroes 2,PS2,2001,Shooter,Midas Interactive Entertainment,0.09,0.07,0,0.02,0.17 +Stormrise,PS3,2009,Strategy,Sega,0.13,0.02,0,0.02,0.17 +Yu-Gi-Oh! Zexal World Duel Carnival,3DS,2013,Misc,Konami Digital Entertainment,0,0.08,0.08,0.01,0.17 +Winning Eleven: Pro Evolution Soccer 2007,DS,2006,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +Green Lantern: Rise of the Manhunters,PS3,2011,Action,Warner Bros. Interactive Entertainment,0.09,0.05,0,0.03,0.17 +Monkey Island: Special Edition Collection,PC,2011,Adventure,LucasArts,0,0.14,0,0.04,0.17 +Broken Sword: Shadows of the Templars - The Director's Cut,DS,2009,Adventure,Ubisoft,0.07,0.09,0,0.02,0.17 +The Wild Thornberrys: Animal Adventures,PS,2000,Adventure,Mattel Interactive,0.1,0.07,0,0.01,0.17 +MotoGP 10/11,PS3,2011,Racing,Capcom,0.04,0.1,0,0.04,0.17 +Jikkyou Powerful Pro Baseball 2016,PSV,2016,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +SEGA Bass Fishing Duel,PS2,2002,Sports,Sega,0.09,0.07,0,0.02,0.17 +Teen Titans,GBA,,Action,Unknown,0.13,0.05,0,0,0.17 +Hyperdimension Neptunia U: Action Unleashed,PSV,2014,Action,Idea Factory International,0.07,0.02,0.06,0.03,0.17 +Sports Illustrated for Kids: Baseball,GBA,2001,Sports,BAM! Entertainment,0.12,0.05,0,0,0.17 +Fairytale Fights,PS3,2009,Action,Playlogic Game Factory,0.11,0.04,0,0.02,0.17 +Mark Davis Pro Bass Challenge,PS2,2002,Sports,Natsume,0.09,0.07,0,0.02,0.17 +Rugrats: Royal Ransom,GC,2002,Platform,THQ,0.13,0.03,0,0,0.17 +Warriors of Might and Magic,PS2,2001,Adventure,3DO,0.09,0.07,0,0.02,0.17 +Open Season,GC,2006,Platform,Ubisoft,0.13,0.03,0,0,0.17 +The Chronicles of Narnia: Prince Caspian,PS3,2008,Action,Disney Interactive Studios,0.14,0.02,0,0.02,0.17 +Back to the Future: The Game,PS4,2015,Adventure,Telltale Games,0.1,0.04,0,0.03,0.17 +Project Spark,XOne,2014,Misc,Microsoft Game Studios,0.11,0.05,0,0.02,0.17 +Backyard Sports Football: Rookie Rush,DS,2010,Sports,Atari,0.16,0,0,0.01,0.17 +Street Fighter: The Movie,PS,1995,Fighting,Acclaim Entertainment,0.1,0.07,0,0.01,0.17 +Lost in Blue 3,DS,2007,Adventure,Konami Digital Entertainment,0.09,0.02,0.06,0.01,0.17 +World Championship Poker,GBA,2004,Misc,Crave Entertainment,0.12,0.05,0,0,0.17 +Global Defence Force,PS2,2005,Shooter,Essential Games,0,0,0.17,0,0.17 +Rapala Fishing Frenzy 2009,PS3,2008,Sports,Activision,0.16,0,0,0.01,0.17 +Major League Baseball 2K6,GC,2006,Sports,Take-Two Interactive,0.13,0.03,0,0,0.17 +Major League Baseball 2K9,PS3,2009,Sports,Spike,0.16,0,0,0.01,0.17 +SaGa 2: Hihou Densetsu - Goddess of Destiny,DS,2009,Role-Playing,Square Enix,0,0,0.17,0,0.17 +Smash Court Tennis Pro Tournament,PS2,2002,Sports,Sony Computer Entertainment,0.08,0.07,0,0.02,0.17 +The Cursed Crusade,PS3,2011,Action,DTP Entertainment,0.07,0.07,0.01,0.03,0.17 +Super Robot Taisen L,DS,2010,Strategy,Namco Bandai Games,0,0,0.17,0,0.17 +The Grim Adventures of Billy & Mandy,GC,2006,Action,Midway Games,0.13,0.03,0,0,0.17 +NBA Inside Drive 2004,XB,2003,Sports,Microsoft Game Studios,0.13,0.04,0,0.01,0.17 +The King of Fighters '97,PS,1998,Fighting,SNK,0,0,0.16,0.01,0.17 +Dungeon Siege III,PC,2011,Role-Playing,Square Enix,0.08,0.08,0,0.02,0.17 +Cabela's Big Game Hunter: Hunting Party,X360,2011,Sports,Activision,0.16,0,0,0.01,0.17 +Time Commando,PS,1996,Action,Adeline Software,0.1,0.07,0,0.01,0.17 +Professional Fisherman's Tour: Northern Hemisphere,DS,2007,Sports,505 Games,0.16,0,0,0.01,0.17 +Iron Chef America: Supreme Cuisine,Wii,2008,Simulation,Destineer,0.16,0,0,0.01,0.17 +Kekkaishi: Karasumori Ayakashi Kidan,DS,2007,Action,Namco Bandai Games,0,0,0.17,0,0.17 +Gretzky NHL 2005,PS2,2004,Sports,Sony Computer Entertainment,0.08,0.07,0,0.02,0.17 +FaceBreaker,PS3,2008,Fighting,Electronic Arts,0.13,0.03,0,0.02,0.17 +Squeeballs Party,DS,2009,Puzzle,Performance Designed Products,0.16,0,0,0.01,0.17 +NCAA Football 09 All-Play,Wii,2008,Sports,Electronic Arts,0.16,0,0,0.01,0.17 +Yakuza Zero: The Place of Oath,PS4,2015,Action,Sega,0,0,0.17,0,0.17 +The Hobbit,GC,2003,Platform,Vivendi Games,0.13,0.03,0,0,0.17 +The Secret World,PC,2012,Role-Playing,Funcom,0.07,0.08,0,0.02,0.17 +NHL 2K9,X360,2008,Sports,Take-Two Interactive,0.15,0.01,0,0.01,0.17 +X-Men: The Official Game,X360,2006,Action,Activision,0.16,0.01,0,0.01,0.17 +True Crime: New York City,GC,2005,Action,Activision,0.13,0.03,0,0,0.17 +Metal Arms: Glitch in the System,XB,2003,Shooter,Vivendi Games,0.13,0.04,0,0.01,0.17 +PlayStation Move Heroes,PS3,2011,Platform,Sony Computer Entertainment,0.08,0.06,0,0.03,0.17 +The Idolm@ster: Shiny Festa - Honey Sound / Funky Note / Groovy Tune,PSP,2012,Action,Namco Bandai Games,0,0,0.17,0,0.17 +Ice Age: Dawn of the Dinosaurs,PS2,2009,Action,Activision,0.08,0.07,0,0.02,0.17 +ESPN Final Round Golf 2002,GBA,2001,Sports,Konami Digital Entertainment,0.12,0.05,0,0,0.17 +MDK2 Armageddon,PS2,2001,Shooter,Virgin Interactive,0.08,0.07,0,0.02,0.17 +Exhibition Volume 02,XB,2003,Misc,Microsoft Game Studios,0.13,0.04,0,0.01,0.17 +Watchmen: The End is Nigh - The Complete Experience,PS3,2009,Action,Warner Bros. Interactive Entertainment,0.08,0.07,0,0.02,0.17 +Fight Night Round 2,GC,2005,Fighting,Electronic Arts,0.13,0.03,0,0,0.17 +Sudoku Gridmaster,DS,2006,Puzzle,Nintendo,0.13,0.03,0,0.01,0.17 +Disney's Atlantis: The Lost Empire,PS,2001,Platform,Sony Computer Entertainment,0.1,0.07,0,0.01,0.17 +Power Pro Kun Pocket,GB,1999,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +The King of Fighters '97,SAT,1998,Fighting,SNK,0,0,0.17,0,0.17 +Tamagotchi no Narikiri Challenge,DS,2010,Action,Namco Bandai Games,0,0,0.17,0,0.17 +Goosebumps HorrorLand,Wii,2008,Adventure,Scholastic Inc.,0.16,0,0,0.01,0.17 +One Piece: Unlimited World Red,PSV,2014,Action,Namco Bandai Games,0.06,0.04,0.04,0.03,0.17 +Space Battleship Yamato: Harukanaru Hoshi Iscandar,PS,1999,Strategy,Namco Bandai Games,0,0,0.16,0.01,0.17 +Sound Novel Evolution 1: Otogirisou Sosei-Hen,PS,1999,Adventure,ChunSoft,0,0,0.16,0.01,0.17 +Dementium: The Ward,DS,2007,Shooter,SouthPeak Games,0.15,0.01,0,0.01,0.17 +Psi-Ops: The Mindgate Conspiracy,XB,2004,Shooter,Midway Games,0.13,0.04,0,0.01,0.17 +SWAT: Global Strike Team,XB,2003,Shooter,Vivendi Games,0.13,0.04,0,0.01,0.17 +Despicable Me: The Game,PSP,2010,Platform,D3Publisher,0.05,0.08,0,0.04,0.17 +MX World Tour Featuring Jamie Little,PS2,2005,Racing,Play It,0.08,0.07,0,0.02,0.17 +Goblin Commander: Unleash the Horde,PS2,2003,Strategy,Jaleco,0.08,0.07,0,0.02,0.17 +Hello Kitty: Happy Party Pals,GBA,2005,Misc,THQ,0.12,0.05,0,0,0.17 +Ringling Bros. and Barnum & Bailey: Circus Friends,DS,2009,Action,Take-Two Interactive,0.16,0,0,0.01,0.17 +Backyard NFL Football '09,PS2,2008,Sports,Atari,0.08,0.07,0,0.02,0.17 +World Destruction League: Thunder Tanks,PS2,2000,Action,3DO,0.08,0.07,0,0.02,0.17 +Shin Megami Tensei IV: Final,3DS,2016,Role-Playing,Deep Silver,0.03,0,0.14,0,0.17 +Age of Empires III: Complete Collection,PC,2009,Strategy,Microsoft Game Studios,0.01,0.12,0,0.03,0.17 +Finding Nemo: Escape to the Big Blue,DS,2006,Action,THQ,0.12,0.04,0,0.01,0.17 +Backyard Baseball '10,PS2,2009,Sports,Atari,0.08,0.07,0,0.02,0.17 +Resident Evil Director's Cut: Dual Shock Edition,PS,1997,Action,Capcom,0,0,0.16,0.01,0.17 +The Lord of the Rings: Aragorn's Quest,PS3,2010,Action,Warner Bros. Interactive Entertainment,0.1,0.04,0,0.02,0.17 +Top Spin 2,X360,2006,Sports,Take-Two Interactive,0.15,0.01,0,0.01,0.17 +N3 II: Ninety-Nine Nights,X360,2010,Action,Microsoft Game Studios,0.06,0.07,0.04,0.01,0.17 +The King of Fighters '95,PS,1996,Fighting,Sony Computer Entertainment,0,0,0.16,0.01,0.17 +RoadKill,PS2,2003,Action,Midway Games,0.08,0.07,0,0.02,0.17 +Hanjuku Eiyuu Tai 3D,PS2,2003,Role-Playing,Square Enix,0,0,0.17,0,0.17 +.hack//G.U. Vol.3//Redemption,PS2,2007,Role-Playing,Namco Bandai Games,0,0,0.17,0,0.17 +Chuck E. Cheese's Party Games,Wii,2010,Misc,UFO Interactive,0.16,0,0,0.01,0.17 +Super Robot Taisen Compact 2 Dai-1-Bu,WS,2000,Strategy,Namco Bandai Games,0,0,0.17,0,0.17 +Looney Tunes: Back in Action,GC,2003,Platform,Warner Bros. Interactive Entertainment,0.13,0.03,0,0,0.17 +Tak: The Great Juju Challenge,GBA,2005,Platform,THQ,0.12,0.05,0,0,0.17 +Macross Ultimate Frontier,PSP,2009,Action,Namco Bandai Games,0,0,0.17,0,0.17 +Cabela's Legendary Adventures,PSP,2008,Sports,Activision,0.16,0,0,0.01,0.17 +Jillian Michaels Fitness Ultimatum 2011,Wii,2010,Sports,D3Publisher,0.16,0,0,0.01,0.17 +Pursuit Force: Extreme Justice,PSP,2007,Action,Sony Computer Entertainment,0.07,0.07,0,0.03,0.17 +Backbreaker,PS3,,Sports,Unknown,0.16,0,0,0.01,0.17 +Hunter: The Reckoning Redeemer,XB,2003,Action,Interplay,0.13,0.04,0,0.01,0.17 +The Rise of the Argonauts,X360,2008,Role-Playing,Codemasters,0.03,0.12,0,0.01,0.17 +NHL 07,PSP,2006,Sports,Electronic Arts,0.13,0.02,0,0.02,0.17 +Pro Evolution Soccer 2014,PSP,2013,Action,Konami Digital Entertainment,0,0.03,0.14,0,0.17 +Tokyo Xtreme Racer,DC,1999,Racing,Genki,0,0,0.17,0,0.17 +Fighter Maker,PS,1998,Fighting,Agetec,0.05,0.04,0.07,0.01,0.17 +Bee Movie Game,X360,2007,Action,Activision,0.16,0,0,0.01,0.17 +Backyard NFL Football '10,Wii,2009,Sports,Atari,0.16,0,0,0.01,0.17 +Professor Heinz Wolff's Gravity,Wii,2008,Puzzle,Deep Silver,0.04,0.12,0,0.02,0.17 +Thief: Deadly Shadows,XB,2004,Action,Eidos Interactive,0.13,0.04,0,0.01,0.17 +Buzz! Brain of the UK,PS3,2009,Misc,Sony Computer Entertainment,0,0.15,0,0.02,0.17 +NBA 09: The Inside,PSP,2008,Sports,Sony Computer Entertainment,0.16,0,0,0.01,0.17 +Transformers: Prime,3DS,2012,Action,Activision,0.13,0.03,0,0.01,0.17 +Batman Begins,GBA,2005,Action,Electronic Arts,0.12,0.05,0,0,0.17 +Transformer: Rise of the Dark Spark,X360,2014,Action,Activision,0.09,0.07,0,0.02,0.17 +Glover,PS,1999,Platform,Atari,0.09,0.06,0,0.01,0.17 +Dragon Ball GT: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.12,0.05,0,0,0.17 +Luxor 3,Wii,2008,Puzzle,Mumbo Jumbo,0.16,0,0,0.01,0.17 +Bratz Kidz,Wii,2008,Misc,Game Factory,0.16,0,0,0.01,0.17 +Fairytale Fights,X360,2009,Action,Playlogic Game Factory,0.14,0.02,0,0.01,0.17 +James Cameron's Dark Angel,PS2,,Action,Universal Interactive,0.08,0.07,0,0.02,0.17 +MotoGP 09/10,X360,2010,Racing,Capcom,0.07,0.09,0,0.02,0.17 +Mahjong Fight Club,PSP,2004,Misc,Konami Digital Entertainment,0,0,0.17,0,0.17 +World Driver Championship,N64,1999,Racing,Midway Games,0.14,0.03,0,0,0.17 +Bomberman 64: The Second Attack!,N64,1999,Adventure,Hudson Soft,0.05,0.01,0.11,0,0.17 +Turok 3: Shadow of Oblivion,N64,2000,Shooter,Acclaim Entertainment,0.12,0.05,0,0,0.17 +Spawn: Armageddon,XB,2003,Action,Electronic Arts,0.13,0.04,0,0.01,0.17 +Codename: Kids Next Door: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.12,0.05,0,0,0.17 +Zoo Hospital,Wii,2008,Simulation,Majesco Entertainment,0.14,0.01,0,0.01,0.17 +Pok?mon Beach Blank-out Blastoise / Go West Young Meowth Game Boy Advance Video,GBA,2004,Misc,Nintendo,0.12,0.05,0,0,0.17 +Time and Eternity,PS3,2012,Role-Playing,Nippon Ichi Software,0.06,0.03,0.06,0.02,0.17 +Major League Baseball 2K9,PS2,2009,Sports,Spike,0.08,0.06,0,0.02,0.17 +Gundam Assault Survive,PSP,2010,Action,Namco Bandai Games,0,0,0.17,0,0.17 +Disney TH!NK Fast: The Ultimate Trivia Showdown,PS2,2008,Misc,Disney Interactive Studios,0.08,0.06,0,0.02,0.17 +Fate/Stay Night [R?alta Nua],PS2,2007,Adventure,Kadokawa Shoten,0,0,0.17,0,0.17 +Disney's Home on the Range,GBA,2004,Action,Disney Interactive Studios,0.12,0.04,0,0,0.17 +Sid Meier's Civilization IV,PC,2005,Strategy,Take-Two Interactive,0.02,0.12,0,0.03,0.17 +Jikkyou Powerful Pro Yakyuu 2013,PSP,2013,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +Space Griffon VF-9,PS,1995,Role-Playing,Panther Software,0.02,0.02,0.12,0.01,0.17 +Family Feud Decades,Wii,2010,Misc,Ubisoft,0.16,0,0,0.01,0.17 +NBA Live 16,PS4,2015,Sports,Electronic Arts,0.1,0.04,0,0.03,0.17 +CSI: Fatal Conspiracy,X360,2010,Adventure,Ubisoft,0.11,0.04,0,0.01,0.17 +Solitaire Overload Plus,DS,2010,Misc,Telegames,0.16,0,0,0.01,0.17 +.hack//G.U. Vol.1//Rebirth,PS2,2006,Role-Playing,Namco Bandai Games,0,0,0.17,0,0.17 +Gyakuten Saiban 3,GBA,2004,Adventure,Capcom,0,0,0.16,0,0.17 +Tak: Mojo Mistake,DS,2008,Action,THQ,0.16,0,0,0.01,0.17 +Gallop Racer 2001,PS2,2001,Sports,Tecmo Koei,0.05,0.04,0.06,0.01,0.17 +Nightmare Creatures II,PS,2000,Action,Konami Digital Entertainment,0.09,0.06,0,0.01,0.17 +Marble Saga: Kororinpa,Wii,2009,Puzzle,Konami Digital Entertainment,0.1,0.06,0,0.02,0.17 +Fuzion Frenzy 2,X360,2007,Misc,Microsoft Game Studios,0.14,0.01,0,0.01,0.17 +Catwoman,PS2,2004,Action,Electronic Arts,0.08,0.06,0,0.02,0.17 +Monsters vs. Aliens,X360,2009,Action,Activision,0.12,0.03,0,0.01,0.17 +Country Dance: All Stars,X360,2012,Action,GameMill Entertainment,0.16,0,0,0.01,0.17 +Garfield: Lasagna World Tour,PS2,2007,Action,Blast! Entertainment Ltd,0.08,0.06,0,0.02,0.17 +Teenage Mutant Ninja Turtles: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.12,0.04,0,0,0.17 +Disney's Planes,Wii,2013,Simulation,Disney Interactive Studios,0.08,0.07,0,0.02,0.17 +Bomberman Land,Wii,2007,Misc,Rising Star Games,0.11,0.02,0.03,0.01,0.17 +Bomberman B-Daman,SNES,1996,Shooter,Hudson Soft,0,0,0.17,0,0.17 +Terminator 3: The Redemption,PS2,2004,Shooter,Atari,0.08,0.06,0,0.02,0.17 +World Destruction League: Thunder Tanks,PS,2000,Action,3DO,0.09,0.06,0,0.01,0.17 +Beat Down: Fists of Vengeance,PS2,2005,Action,Capcom,0.04,0.03,0.09,0.01,0.17 +Reloaded,PS,1996,Action,Gremlin Interactive Ltd,0.09,0.06,0,0.01,0.17 +Sword of the Samurai,PS2,,Fighting,Ubisoft,0,0,0.17,0,0.17 +MotoGP 15,PS4,2015,Racing,Milestone S.r.l.,0,0.12,0.03,0.02,0.17 +SSX On Tour,GC,2005,Sports,Electronic Arts,0.13,0.03,0,0,0.17 +Hot Wheels: Beat That!,X360,2007,Racing,Activision,0.15,0,0,0.01,0.17 +G-Force,X360,2009,Action,Disney Interactive Studios,0.11,0.05,0,0.01,0.17 +James Bond 007: Everything or Nothing,GBA,2003,Shooter,Electronic Arts,0.12,0.04,0,0,0.17 +Naruto Shippuden: Ultimate Ninja 5,PS2,2007,Fighting,Namco Bandai Games,0,0,0.17,0,0.17 +Shrek Extra Large,GC,2002,Platform,TDK Mediactive,0.13,0.03,0,0,0.17 +Final Fantasy V,PS,1998,Role-Playing,SquareSoft,0,0,0.16,0.01,0.17 +World Tour Soccer 2006,PS2,2004,Sports,Sony Computer Entertainment,0.08,0.06,0,0.02,0.17 +Gunvalkyrie,XB,2002,Shooter,Infogrames,0.13,0.04,0,0.01,0.17 +NickToons: Racing,PS,2001,Racing,Hasbro Interactive,0.09,0.06,0,0.01,0.17 +VR Golf '97,PS,1996,Sports,Gremlin Interactive Ltd,0.09,0.06,0,0.01,0.17 +Michael Jackson: The Experience 3D,3DS,2011,Misc,Ubisoft,0.13,0.03,0,0.01,0.17 +State of Emergency,XB,2003,Action,Take-Two Interactive,0.13,0.04,0,0.01,0.17 +Digimon Story: Cyber Sleuth,PSV,2015,Role-Playing,Namco Bandai Games,0,0,0.17,0,0.17 +Off-World Interceptor Extreme,PS,1995,Racing,Crystal Dynamics,0.09,0.06,0,0.01,0.17 +Bakugan Battle Brawlers: Defenders of the Core,Wii,2010,Action,Activision,0.15,0.01,0,0.01,0.17 +Disney Golf,PS2,2002,Sports,Electronic Arts,0.07,0.06,0.02,0.02,0.17 +The Naked Brothers Band: The Video Game,PS2,2008,Misc,THQ,0.08,0.06,0,0.02,0.17 +Custom Robo Arena,DS,2006,Fighting,Nintendo,0.02,0.02,0.12,0,0.17 +Clock Tower II: The Struggle Within,PS,1998,Adventure,Human Entertainment,0.02,0.01,0.12,0.01,0.17 +Batman Beyond: Return of the Joker,PS,2000,Action,Ubisoft,0.09,0.06,0,0.01,0.17 +Surf's Up,Wii,2007,Sports,Ubisoft,0.15,0,0,0.01,0.17 +Jikkyou Powerful Pro Baseball 2016,PS4,2016,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +Mega Man Network Transmission,GC,2003,Platform,Capcom,0.13,0.03,0,0,0.17 +I'm A Celebrity: Get Me Out of Here!,Wii,2009,Misc,Mindscape,0,0.16,0,0.01,0.17 +Pursuit Force,PSP,2005,Racing,Sony Computer Entertainment,0.14,0.01,0,0.02,0.17 +Densetsu no Stafi 4,DS,2006,Platform,Nintendo,0,0,0.17,0,0.17 +Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon (JP sales),PS2,2008,Role-Playing,Atlus,0,0,0.17,0,0.17 +Naval Assault: The Killing Tide,X360,2010,Simulation,505 Games,0.08,0.07,0,0.02,0.17 +Tokimeki Memorial: Private Collection,PS,1996,Misc,Konami Digital Entertainment,0,0,0.16,0.01,0.17 +RC Revenge Pro,PS2,2000,Racing,Acclaim Entertainment,0.08,0.06,0,0.02,0.17 +Valkyria Chronicles,PS4,2016,Role-Playing,Sega,0.06,0.04,0.05,0.02,0.17 +Hellboy: The Science of Evil,PS3,2008,Action,Konami Digital Entertainment,0.13,0.02,0,0.02,0.17 +Backyard Wrestling: Don't Try This at Home,XB,2003,Fighting,Eidos Interactive,0.13,0.04,0,0.01,0.17 +Zoo Keeper,DS,2004,Puzzle,Ignition Entertainment,0.1,0.01,0.05,0.01,0.17 +Gauntlet: Dark Legacy,XB,2002,Action,Midway Games,0.13,0.04,0,0.01,0.17 +Toukiden Kiwami,PS4,2015,Action,Tecmo Koei,0.05,0.07,0.02,0.02,0.17 +Far East of Eden II: Manji Maru,PS2,2003,Role-Playing,Hudson Soft,0,0,0.17,0,0.17 +Lost Kingdoms,GC,2002,Role-Playing,Activision,0.1,0.02,0.04,0,0.17 +WRC 2: FIA World Rally Championship,PS3,2011,Racing,Ubisoft,0,0.13,0,0.04,0.17 +Blood Bowl,X360,2009,Sports,Focus Home Interactive,0.13,0.03,0,0.01,0.17 +Matchbox Cross Town Heroes,GBA,2002,Racing,THQ,0.12,0.04,0,0,0.17 +Wolfenstein 3D,GBA,2002,Shooter,BAM! Entertainment,0.12,0.04,0,0,0.17 +Nobunaga no Yabou: Tenshoki,SNES,1996,Strategy,Tecmo Koei,0,0,0.17,0,0.17 +Learning to Spell,DS,2010,Misc,505 Games,0.16,0,0,0.01,0.17 +"Go, Diego, Go! Safari Rescue",DS,2007,Adventure,Take-Two Interactive,0.15,0.01,0,0.01,0.17 +Super Power League,SNES,1993,Sports,Hudson Soft,0,0,0.17,0,0.17 +Easy Piano,DS,2009,Misc,Game Life,0.04,0.11,0,0.02,0.17 +Street Fighter Alpha 2,SNES,1996,Fighting,Nintendo,0,0,0.17,0,0.17 +Dragon Quest X,3DS,2014,Role-Playing,Square Enix,0,0,0.17,0,0.17 +Payday 2,XOne,2015,Shooter,505 Games,0.08,0.07,0,0.01,0.17 +25 to Life,XB,2006,Shooter,Eidos Interactive,0.12,0.04,0,0.01,0.17 +Sumikko Gurashi: Koko ga Ochitsukundesu,3DS,2014,Action,Nippon Columbia,0,0,0.17,0,0.17 +NASCAR '15,X360,2015,Sports,Deep Silver,0.15,0,0,0.02,0.17 +TransFormers Animated: The Game,DS,2008,Action,Activision,0.15,0.01,0,0.01,0.17 +Fracture,PS3,2008,Shooter,LucasArts,0.11,0.04,0,0.02,0.17 +Sega Superstars,PS2,2004,Misc,Sega,0.08,0.06,0,0.02,0.17 +Midway Arcade Treasures,GC,2003,Misc,Midway Games,0.13,0.03,0,0,0.17 +Leisure Suit Larry: Magna Cum Laude,XB,2004,Adventure,Vivendi Games,0.12,0.04,0,0.01,0.17 +Mousetrap / Operation / Simon,GBA,2005,Misc,DSI Games,0.12,0.04,0,0,0.17 +Klonoa,Wii,2008,Platform,Namco Bandai Games,0.11,0.02,0.03,0.01,0.17 +Splatterhouse,PS3,,Action,Namco Bandai Games,0.13,0.02,0,0.02,0.17 +NBA 09: The Inside,PS2,2008,Sports,Sony Computer Entertainment,0.08,0.06,0,0.02,0.17 +Spyro: Shadow Legacy,DS,2005,Action,Vivendi Games,0.14,0.01,0,0.01,0.17 +Resident Evil,SAT,1997,Action,Capcom,0,0,0.17,0,0.17 +Wildstar,PC,2014,Role-Playing,NCSoft,0.08,0.07,0,0.02,0.17 +Dragon Ball: Fusions,3DS,2016,Role-Playing,Namco Bandai Games,0,0,0.17,0,0.17 +Apache: Air Assault,X360,2010,Simulation,Activision,0.12,0.04,0,0.01,0.17 +TOEIC Test Training DS,DS,2007,Misc,IE Institute,0,0,0.17,0,0.17 +Jikkyou Powerful Pro Yakyuu 2014,PS3,2014,Sports,Konami Digital Entertainment,0,0,0.17,0,0.17 +Senran Kagura: Estival Versus,PS4,2015,Action,Marvelous Interactive,0.07,0,0.08,0.02,0.17 +Itoi Shigesato no Bass Tsuri No. 1,SNES,1997,Sports,Nintendo,0,0,0.17,0,0.17 +Cubivore: Survival of the Fittest,GC,2002,Adventure,Nintendo,0.01,0,0.15,0,0.17 +The Sims 3: Seasons,PC,2012,Simulation,Electronic Arts,0,0.13,0,0.03,0.17 +Anarchy Reigns,X360,2012,Action,Sega,0.11,0.02,0.02,0.01,0.17 +FlatOut,XB,2004,Racing,Empire Interactive,0.12,0.04,0,0.01,0.17 +Project X Zone 2: Brave New World,3DS,2015,Role-Playing,Namco Bandai Games,0.04,0.04,0.08,0.01,0.17 +NCAA Basketball 09,PS3,2008,Sports,Electronic Arts,0.15,0,0,0.01,0.17 +Bakugan Battle Brawlers: Defenders of the Core,PS3,2010,Action,Activision,0.14,0.01,0,0.02,0.17 +Mr. Do!'s Castle,2600,1983,Action,Parker Bros.,0.15,0.01,0,0,0.17 +Death Trap,2600,1982,Action,Avalon Interactive,0.15,0.01,0,0,0.17 +Armor Ambush,2600,1981,Action,Mattel Interactive,0.15,0.01,0,0,0.17 +Parodius,SAT,1995,Shooter,Konami Digital Entertainment,0,0,0.16,0,0.17 +Thrillville: Off the Rails,X360,2007,Strategy,LucasArts,0.13,0.02,0,0.01,0.16 +Hyperdimension Neptunia Victory,PS3,2012,Role-Playing,Compile Heart,0.05,0.03,0.06,0.02,0.16 +Taz Wanted,PS2,2002,Platform,Atari,0.08,0.06,0,0.02,0.16 +Mobile Suit Gundam: Extreme VS Force,PSV,2015,Action,Namco Bandai Games,0,0,0.16,0,0.16 +Sid Meier's Pirates!,Wii,2010,Strategy,Take-Two Interactive,0.13,0.02,0,0.01,0.16 +MLB 16: The Show,PS3,2016,Action,Sony Computer Entertainment,0.13,0,0,0.03,0.16 +Phantasy Star Online 2,PSV,2013,Role-Playing,Sega,0,0,0.16,0,0.16 +Vehicular Combat League presents Motor Mayhem,PS2,2001,Racing,Atari,0.08,0.06,0,0.02,0.16 +PoPoLoCrois: Hajimari no Bouken,PS2,2002,Role-Playing,Sony Computer Entertainment,0,0,0.16,0,0.16 +Star Wars: Super Bombad Racing,PS2,2001,Racing,LucasArts,0.08,0.06,0,0.02,0.16 +Hamster Heroes,Wii,2008,Puzzle,Popcorn Arcade,0.16,0,0,0,0.16 +Hot Wheels Velocity X,GBA,2002,Racing,THQ,0.12,0.04,0,0,0.16 +Ar Nosurge: Ode to an Unborn Star,PS3,2014,Role-Playing,Tecmo Koei,0.05,0.04,0.06,0.02,0.16 +Chaotic: Shadow Warriors,PS3,2009,Action,Activision,0.15,0,0,0.01,0.16 +Leisure Suit Larry: Box Office Bust,X360,2009,Adventure,Codemasters,0.14,0.01,0,0.01,0.16 +Alien Resurrection,PS,2000,Shooter,Fox Interactive,0.09,0.06,0,0.01,0.16 +World Tour Soccer 2005,PS2,2004,Sports,Sony Computer Entertainment,0.08,0.06,0,0.02,0.16 +Dungeon Siege: Throne of Agony,PSP,2006,Role-Playing,Take-Two Interactive,0.13,0.02,0,0.02,0.16 +Spider-Man: Web of Shadows - Amazing Allies Edition,PSP,2008,Action,Activision,0.12,0.02,0,0.02,0.16 +F1 2011,3DS,2011,Racing,Codemasters,0.07,0.08,0,0.02,0.16 +Rio,DS,2011,Misc,THQ,0.12,0.03,0,0.01,0.16 +Gunslingers,Wii,2010,Shooter,Neko Entertainment,0.08,0.06,0,0.02,0.16 +Create,PS3,2010,Action,Electronic Arts,0.11,0.03,0,0.02,0.16 +Lufia: Curse of the Sinistrals,DS,2010,Role-Playing,Square Enix,0.12,0,0.03,0.01,0.16 +El Shaddai: Ascension of the Metatron,X360,2011,Action,Ignition Entertainment,0.07,0.05,0.03,0.01,0.16 +ESPN College Hoops,PS2,2003,Sports,Sega,0.08,0.06,0,0.02,0.16 +Thor: God of Thunder,Wii,2011,Action,Sega,0.11,0.04,0,0.01,0.16 +F1 Championship Season 2000,PS2,2000,Racing,Electronic Arts,0.06,0.05,0.03,0.02,0.16 +Guilty Gear Judgment,PSP,2006,Fighting,Majesco Entertainment,0.13,0,0.02,0.01,0.16 +Pen 1 Grand Prix: Penguin no Mondai Special,DS,2009,Fighting,Konami Digital Entertainment,0,0,0.16,0,0.16 +Clash of the Titans,X360,2010,Action,Namco Bandai Games,0.08,0.06,0,0.02,0.16 +Around the World in 80 Days,DS,2010,Action,PlayV,0,0.14,0,0.02,0.16 +Robotech: Battlecry,GC,2002,Shooter,TDK Mediactive,0.13,0.03,0,0,0.16 +True Swing Golf,DS,2005,Sports,Nintendo,0.11,0,0.04,0.01,0.16 +Zapper: One Wicked Cricket!,PS2,2002,Platform,Infogrames,0.08,0.06,0,0.02,0.16 +Bomberman Land,PS,2000,Misc,Hudson Soft,0,0,0.15,0.01,0.16 +Paws & Claws: Pet Resort,GBA,2006,Simulation,THQ,0.12,0.04,0,0,0.16 +Kya: Dark Lineage,PS2,2003,Adventure,Atari,0.08,0.06,0,0.02,0.16 +Dynasty Warriors 8: Xtreme Legends,PS3,2013,Action,Tecmo Koei,0.02,0.03,0.11,0.01,0.16 +Curious George,GBA,2006,Action,Namco Bandai Games,0.12,0.04,0,0,0.16 +Monster Jam,Wii,2007,Racing,Activision,0.15,0,0,0.01,0.16 +Medieval Games,Wii,2009,Action,Vir2L Studios,0.14,0.01,0,0.01,0.16 +Stronghold 3,PC,2011,Strategy,,0.06,0.1,0,0,0.16 +The Amazing Spider-Man (Console Version),Wii,2012,Action,Activision,0.11,0.04,0,0.01,0.16 +Kid Adventures: Sky Captain,Wii,2010,Action,Unknown,0.11,0.04,0,0.01,0.16 +Lethal Skies II,PS2,2003,Simulation,Sammy Corporation,0.08,0.06,0,0.02,0.16 +Doctor Lautrec and the Forgotten Knights,3DS,2011,Adventure,Konami Digital Entertainment,0.07,0.05,0.03,0.01,0.16 +Disney's American Dragon Jake Long: Attack of the Dark Dragon,DS,2006,Action,Disney Interactive Studios,0.15,0,0,0.01,0.16 +Godzilla Unleashed,Wii,2007,Fighting,Atari,0.15,0,0,0.01,0.16 +Kamaitachi no Yoru ? 3,PS2,2006,Adventure,Sega,0,0,0.16,0,0.16 +Tom and Jerry: Infurnal Escape,GBA,2003,Action,Ubisoft,0.12,0.04,0,0,0.16 +The Legend of Heroes VII: The Trail of Zero,PSP,2010,Role-Playing,Falcom Corporation,0,0,0.16,0,0.16 +Warriors Orochi 3,X360,2011,Action,Ubisoft Annecy,0.09,0.03,0.03,0.01,0.16 +King's Field,PS,1995,Role-Playing,Sony Computer Entertainment,0.09,0.06,0,0.01,0.16 +Hannah Montana: Rock Out the Show,PSP,2009,Misc,Disney Interactive Studios,0.13,0.01,0,0.02,0.16 +Let's Ride: Sunshine Stables,GBA,2005,Sports,DTP Entertainment,0.12,0.04,0,0,0.16 +World Stadium 4,PS,2000,Sports,Namco Bandai Games,0,0,0.15,0.01,0.16 +Midway Arcade Treasures 2,GC,2004,Misc,Midway Games,0.13,0.03,0,0,0.16 +Hot Wheels World Race,GC,2003,Racing,THQ,0.13,0.03,0,0,0.16 +San Goku Shi Taisen DS,DS,2007,Strategy,Sega,0,0,0.16,0,0.16 +Kawa no Nushi Tsuri,PS,1998,Sports,Victor Interactive,0,0,0.15,0.01,0.16 +N2O: Nitrous Oxide,PS,1998,Racing,Gremlin Interactive Ltd,0.09,0.06,0,0.01,0.16 +Magic: The Gathering - Battlegrounds,XB,2003,Strategy,Atari,0.12,0.03,0,0.01,0.16 +Heroes over Europe,PS3,2009,Simulation,Ubisoft,0.12,0.02,0,0.02,0.16 +Dancing With The Stars,PS2,2007,Misc,Activision,0.08,0.06,0,0.02,0.16 +Major League Baseball 2K12,Wii,2012,Sports,Take-Two Interactive,0.15,0,0,0.01,0.16 +Pro Evolution Soccer 2015,X360,2014,Sports,Konami Digital Entertainment,0.05,0.1,0,0.01,0.16 +Bladestorm: Nightmare,PS4,2015,Action,Tecmo Koei,0.07,0.04,0.03,0.02,0.16 +Otogirisou,SNES,1992,Adventure,ChunSoft,0,0,0.16,0,0.16 +SD Gundam G Generation 3D,3DS,2011,Role-Playing,Namco Bandai Games,0,0,0.16,0,0.16 +Crash Tag Team Racing,GC,2005,Racing,Vivendi Games,0.12,0.03,0,0,0.16 +Grease Dance,X360,2011,Misc,505 Games,0.11,0.03,0,0.01,0.16 +Ready 2 Rumble Revolution,Wii,2009,Sports,Atari,0.15,0,0,0.01,0.16 +My Baby 3 & Friends,DS,2010,Simulation,Majesco Entertainment,0.13,0.02,0,0.01,0.16 +NASCAR '14,X360,2014,Racing,Deep Silver,0.15,0,0,0.01,0.16 +TimeSplitters: Future Perfect,XB,2005,Shooter,Electronic Arts,0.12,0.03,0,0.01,0.16 +Midway Arcade Treasures 3,PS2,2005,Misc,Midway Games,0.08,0.06,0,0.02,0.16 +Dr. Muto,PS2,2002,Platform,Midway Games,0.08,0.06,0,0.02,0.16 +Beowulf: The Game,PS3,2007,Action,Ubisoft,0.14,0.01,0,0.01,0.16 +Puzzle Quest: Galactrix,DS,2009,Puzzle,D3Publisher,0.15,0,0,0.01,0.16 +DS Rakubiki Jiten,DS,2005,Misc,Nintendo,0,0,0.16,0,0.16 +SeaWorld Adventure Parks: Shamu's Deep Sea Adventure,PS2,2005,Adventure,Activision,0.08,0.06,0,0.02,0.16 +Fatal Frame II: Crimson Butterfly,PS2,2003,Action,Ubisoft,0.08,0.06,0,0.02,0.16 +Angry Birds Trilogy,PS3,2012,Action,Activision,0.12,0.02,0,0.02,0.16 +Dewy's Adventure,Wii,2007,Platform,Konami Digital Entertainment,0.14,0,0.01,0.01,0.16 +Shadow Man: 2econd Coming,PS2,2002,Adventure,Acclaim Entertainment,0.08,0.06,0,0.02,0.16 +Yu-Gi-Oh! 5D's Tag Force 6,PSP,2011,Strategy,Konami Digital Entertainment,0,0,0.16,0,0.16 +NPPL: Championship Paintball 2009,PS3,2008,Shooter,Activision Value,0.15,0,0,0.01,0.16 +Dynasty Warriors 4,XB,2003,Action,Tecmo Koei,0.12,0.03,0,0.01,0.16 +Wakeboarding Unleashed Featuring Shaun Murray,PS2,2003,Sports,Activision,0.08,0.06,0,0.02,0.16 +The Incredibles: Rise of the Underminer,GC,2005,Action,THQ,0.12,0.03,0,0,0.16 +Jikkyou Powerful Pro Yakyuu 3 '97 Haru,SNES,1997,Sports,Konami Digital Entertainment,0,0,0.16,0,0.16 +Alone in the Dark: The New Nightmare,PS,,Adventure,Infogrames,0.09,0.06,0,0.01,0.16 +The BIGS,PS3,2007,Sports,Take-Two Interactive,0.15,0,0,0.01,0.16 +Flushed Away,GC,2006,Platform,D3Publisher,0.12,0.03,0,0,0.16 +Eragon,DS,2006,Action,Vivendi Games,0.13,0.02,0,0.01,0.16 +Scarface: Money. Power. Respect.,PSP,2006,Strategy,Vivendi Games,0.15,0,0,0.01,0.16 +Summon Night EX-Thesis: Yoake no Tsubasa,PS2,2005,Role-Playing,Banpresto,0,0,0.16,0,0.16 +Pro Yaky? Spirits 3,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.16,0,0.16 +Silent Scope 3,PS2,2002,Shooter,Konami Digital Entertainment,0.08,0.06,0,0.02,0.16 +World Series of Poker: Tournament of Champions 2007 Edition,X360,2006,Misc,Activision,0.15,0,0,0.01,0.16 +NASCAR Heat 2002,GBA,2002,Racing,Infogrames,0.12,0.04,0,0,0.16 +Namco Classic Fighter Collection,PS2,2008,Fighting,Namco Bandai Games,0.08,0.06,0,0.02,0.16 +International Superstar Soccer Deluxe,SNES,1995,Sports,Konami Digital Entertainment,0,0,0.16,0,0.16 +TNA iMPACT!,Wii,2008,Fighting,Midway Games,0.14,0.01,0,0.01,0.16 +Intellivision Lives!,PS2,2003,Misc,Play It,0.08,0.06,0,0.02,0.16 +Field Commander,PSP,2006,Strategy,Sony Online Entertainment,0.14,0,0,0.01,0.16 +Robots,GC,2005,Action,Vivendi Games,0.12,0.03,0,0,0.16 +Little League World Series Baseball 2009,Wii,2009,Sports,Activision,0.15,0,0,0.01,0.16 +The King of Fighters XII,PS3,2009,Fighting,Ignition Entertainment,0.11,0.01,0.03,0.01,0.16 +Doctor Who: Evacuation Earth,DS,2010,Adventure,Asylum Entertainment,0,0.14,0,0.02,0.16 +Murdered: Soul Suspect,XOne,2014,Action,Square Enix,0.08,0.07,0,0.01,0.16 +Ener-G: Dance Squad,DS,2008,Sports,Ubisoft,0.15,0,0,0.01,0.16 +Our House,DS,2009,Strategy,Majesco Entertainment,0.15,0,0,0.01,0.16 +SimEarth: The Living Planet,SNES,1991,Simulation,Imagineer,0,0,0.16,0,0.16 +Major League Baseball 2K11,Wii,2011,Sports,Take-Two Interactive,0.15,0,0,0.01,0.16 +Sengoku Basara: Chronicle Heroes,PSP,2011,Action,Capcom,0,0,0.16,0,0.16 +NBA 2K12,PC,2011,Sports,Take-Two Interactive,0.09,0.05,0,0.02,0.16 +The Wild Thornberrys: Chimp Chase,GBA,2001,Action,THQ,0.11,0.04,0,0,0.16 +Power Stakes,PS,1997,Sports,Aques,0,0,0.15,0.01,0.16 +Fighters Destiny,N64,1998,Fighting,Ocean,0.13,0.03,0,0,0.16 +Asteroids Hyper 64,N64,1999,Shooter,Crave Entertainment,0.13,0.03,0,0,0.16 +The Powerpuff Girls: Chemical X-Traction,N64,2001,Action,BAM! Entertainment,0.13,0.03,0,0,0.16 +Jikkyou Powerful Pro Yakyuu Basic-han 2001,N64,2001,Sports,Konami Digital Entertainment,0,0,0.12,0.04,0.16 +Tom and Jerry in Fists of Furry,N64,2000,Fighting,Ubisoft,0.13,0.03,0,0,0.16 +Hydro Thunder,N64,2000,Racing,Midway Games,0.13,0.03,0,0,0.16 +Space Invaders,N64,1999,Shooter,Activision,0.13,0.03,0,0,0.16 +Starcraft 64,N64,2000,Strategy,Nintendo,0.13,0.03,0,0,0.16 +Destruction Derby 64,N64,1999,Racing,THQ,0.13,0.03,0,0,0.16 +Buck Bumble,N64,1998,Action,Ubisoft,0.13,0.03,0,0,0.16 +California Speed,N64,1999,Misc,Midway Games,0.13,0.03,0,0,0.16 +Wonder Project J2: Koruro no Mori no Josette,N64,1996,Simulation,Enix Corporation,0,0,0.12,0.04,0.16 +Culdcept SAGA,X360,2006,Role-Playing,Namco Bandai Games,0.12,0,0.03,0.01,0.16 +Take A Break's: Puzzle Master,DS,2009,Puzzle,Ubisoft,0,0.15,0,0.01,0.16 +Dragon Ball: Origins 2,DS,2010,Action,Namco Bandai Games,0.05,0.02,0.08,0.01,0.16 +Minna no DS Seminar: Kanpeki Kanji Ryoku,DS,2006,Misc,TDK Core,0,0,0.16,0,0.16 +Innocent Life: A Futuristic Harvest Moon,PSP,2006,Simulation,Rising Star Games,0.08,0.03,0.03,0.02,0.16 +The Crew,PC,2014,Racing,Ubisoft,0,0.15,0,0.01,0.16 +Macross Ace Frontier,PSP,2008,Simulation,Namco Bandai Games,0,0,0.16,0,0.16 +Black & Bruised,PS2,2003,Fighting,Vivendi Games,0.08,0.06,0,0.02,0.16 +Sherlock Holmes vs. Jack the Ripper,X360,2009,Adventure,Focus Home Interactive,0.11,0.04,0,0.01,0.16 +.hack//G.U. Vol.2//Reminisce (jp sales),PS2,2006,Role-Playing,Namco Bandai Games,0,0,0.16,0,0.16 +Rapala Pro Fishing,XB,2004,Sports,Zoo Digital Publishing,0.12,0.03,0,0.01,0.16 +TimeShift,PS3,2007,Shooter,Vivendi Games,0.14,0.01,0,0.01,0.16 +Blitz: The League,X360,2006,Sports,Midway Games,0.15,0,0,0.01,0.16 +Scripps Spelling Bee,DS,2010,Simulation,THQ,0.15,0,0,0.01,0.16 +MotionSports: Adrenaline,PS3,2011,Sports,Ubisoft,0.08,0.06,0,0.03,0.16 +Ener-G Horse Riders,DS,2008,Sports,Ubisoft,0.14,0.01,0,0.01,0.16 +Time Hollow,DS,2008,Adventure,Konami Digital Entertainment,0.03,0.01,0.11,0,0.16 +Farming Simulator 2013,PS3,2013,Simulation,Focus Home Interactive,0,0.1,0.02,0.04,0.16 +Rudolph the Red-Nosed Reindeer,Wii,2010,Action,Crave Entertainment,0.15,0,0,0.01,0.16 +Shinobido 2: Tales of the Ninja,PSV,2011,Action,Sony Computer Entertainment,0.06,0.05,0.02,0.03,0.16 +SpongeBob's Truth or Square,DS,2009,Action,THQ,0.08,0.07,0,0.01,0.16 +Ghost in the Shell: Stand Alone Complex,PS2,2004,Adventure,Namco Bandai Games,0.08,0.06,0,0.02,0.16 +Rondo of Swords (US sales),DS,2007,Role-Playing,Success,0.16,0,0,0,0.16 +Bulletstorm,PC,2011,Shooter,Electronic Arts,0.07,0.07,0,0.02,0.16 +Battle Soccer: Field no Hasha,SNES,1992,Sports,Banpresto,0,0,0.16,0,0.16 +Shaun White Skateboarding,X360,2010,Sports,Ubisoft,0.1,0.05,0,0.01,0.16 +MLB 11: The Show,PSP,2011,Sports,Sony Computer Entertainment,0.15,0,0,0.01,0.16 +Vegas Party,Wii,,Misc,Unknown,0.15,0,0,0.01,0.16 +Amped 3,X360,2005,Sports,Take-Two Interactive,0.13,0.02,0,0.01,0.16 +Family Party: 30 Great Games Outdoor Fun,Wii,2009,Misc,D3Publisher,0.14,0.01,0,0.01,0.16 +FlatOut 2,PS2,2006,Racing,Empire Interactive,0.08,0.06,0,0.02,0.16 +Naruto: Ultimate Ninja Heroes 2 - The Phantom Fortress,PSP,2006,Fighting,Atari,0.14,0,0,0.01,0.16 +FIFA Soccer 96,PS,1995,Sports,Electronic Arts,0.09,0.06,0,0.01,0.16 +Burger Island,DS,2008,Action,Destineer,0.15,0,0,0.01,0.16 +Dynasty Warriors 8,X360,2013,Action,Tecmo Koei,0.09,0.05,0,0.01,0.16 +NCAA Final Four 2001,PS,2000,Sports,Sony Computer Entertainment,0.09,0.06,0,0.01,0.16 +Tak and the Guardians of Gross,Wii,2008,Action,THQ,0.15,0,0,0.01,0.16 +Just Dance: Disney Party,X360,2012,Misc,Ubisoft,0.13,0.02,0,0.01,0.16 +LEGO The Lord of the Rings,DS,2012,Action,Warner Bros. Interactive Entertainment,0,0.14,0,0.02,0.16 +Dengeki Bunko Fighting Climax,PS3,2014,Fighting,Sega,0.05,0,0.09,0.01,0.16 +J-League Jikkyou Winning Eleven 2000,PS,2000,Sports,Konami Digital Entertainment,0,0,0.15,0.01,0.16 +Eve: The Lost One,SAT,1998,Adventure,Imagineer,0,0,0.16,0,0.16 +Chessmaster: The Art of Learning,DS,2007,Misc,Ubisoft,0.12,0.03,0,0.01,0.16 +Yu-Gi-Oh! 5D's: Duel Transer,Wii,2010,Strategy,Konami Digital Entertainment,0.11,0.02,0.02,0.01,0.16 +LEGO Legends of Chima: Laval's Journey,PSV,2013,Adventure,Warner Bros. Interactive Entertainment,0.02,0.09,0,0.04,0.16 +Konami Krazy Racers,GBA,2001,Racing,Konami Digital Entertainment,0.09,0.03,0.04,0,0.16 +Saturday Night Slam Masters,SNES,1994,Fighting,Capcom,0,0,0.16,0,0.16 +Blitz: The League II,PS3,2008,Sports,Midway Games,0.11,0.03,0,0.02,0.16 +F-Zero: GP Legend,GBA,2003,Racing,Nintendo,0.11,0.04,0,0,0.16 +Racing Lagoon,PS,1999,Racing,Square,0,0,0.15,0.01,0.16 +Victorious: Hollywood Arts Debut,DS,2011,Misc,D3Publisher,0.14,0.01,0,0.01,0.16 +Mr. Driller 2,GBA,2001,Puzzle,Namco Bandai Games,0,0,0.15,0,0.16 +Just Sing!,DS,2009,Misc,DTP Entertainment,0.14,0.01,0,0.01,0.16 +Darksiders II,WiiU,2012,Action,THQ,0.07,0.07,0,0.01,0.16 +Dragon's Lair Trilogy,Wii,2010,Adventure,Destineer,0.15,0,0,0.01,0.16 +Trivial Pursuit: Bet You Know It,Wii,2011,Misc,Electronic Arts,0.1,0.04,0,0.01,0.16 +Imagine: Ice Champions,DS,2007,Sports,Spike,0.15,0,0,0.01,0.16 +J-League Pro Soccer Club o Tsukurou! 6: Pride of J,PSP,2009,Sports,Sega,0,0,0.16,0,0.16 +Nicktoons: MLB,Wii,2011,Sports,Take-Two Interactive,0.15,0,0,0.01,0.16 +Sniper: Ghost Warrior,PC,2010,Shooter,City Interactive,0,0.13,0,0.03,0.16 +Left Brain Right Brain: Use Both Hands Train Both Sides,DS,2007,Misc,505 Games,0.15,0,0,0.01,0.16 +Rio,PS3,2011,Misc,THQ,0.04,0.09,0,0.03,0.16 +Power Rangers Double Pack,GBA,2005,Action,THQ,0.11,0.04,0,0,0.16 +Mugen Souls,PS3,2012,Role-Playing,Nippon Ichi Software,0.04,0.03,0.08,0.01,0.16 +Yakuza Kiwami,PS4,2016,Adventure,Sega,0,0,0.16,0,0.16 +Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3,PS,1998,Misc,Syscom,0,0,0.15,0.01,0.16 +"BCFX: The Black College Football Xperience, The Doug Williams Edition",X360,2009,Sports,Aspyr,0.15,0,0,0.01,0.16 +FIFA Soccer 97,PS,1996,Sports,Electronic Arts,0.09,0.06,0,0.01,0.16 +Saw II: Flesh & Blood,X360,2010,Action,Konami Digital Entertainment,0.1,0.04,0,0.01,0.16 +Psychic Force,PS,1996,Fighting,Acclaim Entertainment,0.01,0.01,0.13,0.01,0.16 +Trigger Man,PS2,2004,Shooter,Play It,0.08,0.06,0,0.02,0.16 +Bomberman Land Touch! 2,DS,2007,Puzzle,Rising Star Games,0.13,0,0.01,0.01,0.16 +Michael Jackson: The Experience,PSP,2010,Misc,Ubisoft,0.11,0.03,0,0.02,0.16 +The Godfather: Blackhand Edition,Wii,2007,Adventure,Electronic Arts,0.14,0,0,0.01,0.16 +StarBlade ?,PS,1995,Shooter,Sony Computer Entertainment,0,0,0.15,0.01,0.16 +Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui,PSP,2008,Strategy,Namco Bandai Games,0,0,0.16,0,0.16 +Tiger Woods PGA Tour 2004,GC,2003,Sports,Electronic Arts,0.12,0.03,0,0,0.16 +Monster House,DS,2006,Adventure,THQ,0.14,0.01,0,0.01,0.16 +Angry Birds Star Wars,XOne,2013,Strategy,Activision,0.11,0.04,0,0.01,0.16 +Backyard Sports: Sandlot Sluggers,Wii,2010,Sports,Atari,0.15,0,0,0.01,0.16 +Guilty Gear Xrd: Sign,PS4,2014,Fighting,Arc System Works,0.1,0,0.04,0.02,0.16 +Arcade Zone,Wii,2009,Misc,Activision,0.14,0,0,0.01,0.16 +SpongeBob's Boating Bash,DS,2010,Misc,THQ,0.14,0.01,0,0.01,0.16 +7th Dragon III Code: VFD,3DS,2015,Role-Playing,Sega,0.03,0,0.12,0,0.16 +DiRT 3,PC,2011,Racing,Codemasters,0,0.13,0,0.03,0.16 +Culdcept,3DS,2012,Misc,Nintendo,0,0,0.16,0,0.16 +Birds of Steel,X360,2012,Simulation,Konami Digital Entertainment,0.11,0.04,0,0.01,0.16 +Rudolph the Red-Nosed Reindeer,DS,2010,Action,Crave Entertainment,0.15,0,0,0.01,0.16 +WWE '13,Wii,2012,Action,THQ,0.12,0.02,0,0.01,0.16 +MX 2002 Featuring Ricky Carmichael,GBA,2001,Racing,THQ,0.11,0.04,0,0,0.16 +Halo Triple Pack,XB,2005,Shooter,Microsoft Game Studios,0.12,0.03,0,0.01,0.16 +Street Racer,PS,1996,Racing,Ubisoft,0.09,0.06,0,0.01,0.16 +Bomberman,DS,2005,Puzzle,Ubisoft,0.1,0.02,0.03,0.01,0.16 +NBA 2K3,GC,2002,Sports,Sega,0.12,0.03,0,0,0.16 +Arcana Heart,PS2,2007,Fighting,AQ Interactive,0.06,0.05,0.04,0.02,0.16 +NHL 2005,XB,2004,Sports,Electronic Arts,0.12,0.03,0,0.01,0.16 +World Soccer Winning Eleven 2010: Aoki Samurai no Chousen,PSP,2010,Sports,Konami Digital Entertainment,0,0,0.16,0,0.16 +Infected,PSP,2005,Shooter,THQ,0.14,0,0,0.01,0.16 +Battlestar Galactica,PS2,2003,Shooter,Vivendi Games,0.08,0.06,0,0.02,0.16 +The Walking Dead: Season One,XOne,2014,Adventure,Telltale Games,0.08,0.06,0,0.01,0.16 +Kingdom Hearts: Birth by Sleep - Final Mix,PSP,2011,Role-Playing,Square Enix,0,0,0.16,0,0.16 +Bust-A-Move Bash!,Wii,2007,Puzzle,505 Games,0.13,0.01,0,0.01,0.16 +Block Party,Wii,2008,Misc,Activision,0.14,0,0,0.01,0.16 +Toriko: Gourmet Monsters!,3DS,2012,Role-Playing,Namco Bandai Games,0,0,0.16,0,0.16 +The Incredible Hulk: The Pantheon Saga,PS,1996,Action,Eidos Interactive,0.09,0.06,0,0.01,0.16 +Darksiders II,PC,2012,Action,Nordic Games,0.03,0.1,0,0.03,0.16 +Megamind: Ultimate Showdown,PS3,2010,Action,THQ,0.07,0.06,0,0.02,0.16 +The Idolm@ster 2,PS3,2011,Misc,Namco Bandai Games,0,0,0.16,0,0.16 +Space Camp,DS,2009,Action,Activision,0.14,0,0,0.01,0.16 +Imagine: Music Fest,DS,2009,Simulation,Ubisoft,0.15,0,0,0.01,0.16 +AC/DC LIVE: Rock Band Track Pack,PS2,2008,Misc,MTV Games,0.08,0.06,0,0.02,0.16 +Senran Kagura: Sh?jo-tachi no Shinei,3DS,2011,Action,Marvelous Interactive,0,0,0.16,0,0.16 +Ultimate Spider-Man,DS,2005,Action,Activision,0.14,0,0,0.01,0.16 +Fist of the North Star: Ken's Rage,X360,2010,Action,Ubisoft Annecy,0.07,0.02,0.06,0.01,0.16 +Jurassic Park: The Game,X360,,Action,Unknown,0.15,0,0,0.01,0.16 +He-Man: Power of Grayskull,GBA,2002,Action,TDK Mediactive,0.11,0.04,0,0,0.16 +WordJong,DS,2007,Puzzle,White Park Bay Software,0.13,0.01,0,0.01,0.16 +Putty Squad,PS4,2013,Platform,System 3,0.06,0.07,0,0.02,0.16 +Polaris SnoCross,PS,2000,Racing,Vatical Entertainment,0.09,0.06,0,0.01,0.16 +Wing Commander III: Heart of the Tiger,PS,1996,Action,Electronic Arts,0.09,0.06,0,0.01,0.16 +Top Spin 4,Wii,2011,Sports,Take-Two Interactive,0.05,0.09,0,0.02,0.16 +Prince of Persia: The Forgotten Sands,DS,2010,Action,Ubisoft,0.14,0.01,0,0.01,0.16 +Mat Hoffman's Pro BMX 2,GBA,2002,Sports,Activision,0.11,0.04,0,0,0.16 +Muppet RaceMania,PS,1999,Racing,Sony Computer Entertainment,0.09,0.06,0,0.01,0.15 +Namco Museum Vol.5,PS,1996,Misc,Sony Computer Entertainment,0.02,0.01,0.12,0.01,0.15 +Courier Crisis,PS,1997,Racing,BMG Interactive Entertainment,0.09,0.06,0,0.01,0.15 +Bleach: Dark Souls,DS,2007,Fighting,Sega,0.12,0.02,0,0.01,0.15 +The Oregon Trail,Wii,2011,Simulation,Crave Entertainment,0.15,0,0,0.01,0.15 +Digimon Battle Spirit 2,GBA,2003,Fighting,Namco Bandai Games,0.11,0.04,0,0,0.15 +Winning Post 3,PS,1998,Racing,Tecmo Koei,0,0,0.14,0.01,0.15 +FIFA 06: Road to FIFA World Cup,X360,2005,Sports,Electronic Arts,0.11,0.02,0.01,0.01,0.15 +Driven,PS2,2001,Racing,BAM! Entertainment,0.08,0.06,0,0.02,0.15 +F.E.A.R. 3,PC,2011,Shooter,Warner Bros. Interactive Entertainment,0.04,0.08,0,0.03,0.15 +de Blob 2,X360,2011,Platform,THQ,0.1,0.04,0,0.01,0.15 +"Warhammer 40,000: Fire Warrior",PS2,2003,Shooter,THQ,0.08,0.06,0,0.02,0.15 +Hot Wheels: Battle Force 5,DS,2009,Racing,Activision,0.13,0.02,0,0.01,0.15 +James Noir's Hollywood Crimes,3DS,2011,Adventure,Ubisoft,0.07,0.07,0,0.02,0.15 +Deadly Premonition,PS3,2010,Action,Rising Star Games,0.08,0.05,0,0.02,0.15 +Bomberman,PSP,2006,Puzzle,Konami Digital Entertainment,0.14,0,0,0.01,0.15 +MTV Music Generator 2,PS2,2001,Misc,Codemasters,0.08,0.06,0,0.02,0.15 +The Quest Trio,DS,2008,Puzzle,Avanquest,0.14,0.01,0,0.01,0.15 +Chaotic: Shadow Warriors,X360,2009,Action,Activision,0.14,0,0,0.01,0.15 +Space Invaders Extreme,DS,2008,Shooter,Square Enix,0.12,0.01,0.01,0.01,0.15 +Burnout 2: Point of Impact,GC,2003,Racing,Acclaim Entertainment,0.12,0.03,0,0,0.15 +Paris-Dakar Rally,PS2,2001,Racing,Acclaim Entertainment,0.08,0.06,0,0.02,0.15 +All-Pro Football 2K8,PS3,2007,Sports,Take-Two Interactive,0.14,0,0,0.01,0.15 +Dragon Ball Z: Harukanaru Densetsu (JP sales),DS,2007,Role-Playing,Namco Bandai Games,0,0,0.15,0,0.15 +Atelier Iris: Eternal Mana,PS2,2004,Role-Playing,Tecmo Koei,0.08,0.06,0,0.02,0.15 +Blinx 2: Masters of Time & Space,XB,2004,Platform,Microsoft Game Studios,0.12,0.03,0,0.01,0.15 +Stormrise,X360,2009,Strategy,Sega,0.11,0.03,0,0.01,0.15 +NHL 2K10,PS3,2009,Sports,Take-Two Interactive,0.13,0.01,0,0.01,0.15 +FIFA Street 2,PSP,2006,Sports,Electronic Arts,0.07,0.06,0,0.03,0.15 +Tak: The Great Juju Challenge,GC,2005,Platform,THQ,0.12,0.03,0,0,0.15 +Deponia,PC,2012,Adventure,Daedalic,0,0.13,0,0.03,0.15 +Harvest Moon: The Lost Valley,3DS,2014,Simulation,Natsume,0.12,0.02,0,0.01,0.15 +Knockout Kings 2003,GC,2002,Sports,Electronic Arts,0.12,0.03,0,0,0.15 +NCAA Football 2004,GC,2003,Sports,Electronic Arts,0.12,0.03,0,0,0.15 +XGIII: Extreme G Racing,GC,2001,Racing,Acclaim Entertainment,0.12,0.03,0,0,0.15 +NHL 17,XOne,2016,Sports,Electronic Arts,0.13,0.01,0,0.02,0.15 +Jewel Quest Solitaire,DS,2009,Puzzle,GSP,0,0.14,0,0.02,0.15 +Metal Gear Solid V: Ground Zeroes,X360,2014,Action,Konami Digital Entertainment,0.07,0.06,0.01,0.01,0.15 +Digimon World 4,PS2,2005,Role-Playing,Atari,0.08,0.06,0,0.02,0.15 +Cars: Race-O-Rama,X360,2009,Racing,THQ,0.14,0.01,0,0.01,0.15 +Disney's Story Studio: Disney's Mulan,PS,1999,Misc,Sony Computer Entertainment,0.09,0.06,0,0.01,0.15 +Klax,2600,1989,Puzzle,Atari,0.14,0.01,0,0,0.15 +Pressure Cooker,2600,1982,Action,Activision,0.14,0.01,0,0,0.15 +Saturn Bomberman,SAT,1996,Puzzle,Sega,0,0,0.15,0,0.15 +Home Run,2600,,Sports,Atari,0.14,0.01,0,0,0.15 +Jikkyou Powerful Pro Yakyuu Portable,PSP,2006,Sports,Konami Digital Entertainment,0,0,0.15,0,0.15 +The Adventures of Tintin: The Game,3DS,2011,Action,Ubisoft,0.05,0.09,0,0.02,0.15 +American Chopper,XB,2004,Racing,Zoo Digital Publishing,0.11,0.03,0,0.01,0.15 +Sonny with a Chance,DS,2010,Action,Disney Interactive Studios,0.12,0.02,0,0.01,0.15 +Murdered: Soul Suspect,PS3,2014,Action,Square Enix,0.05,0.06,0.02,0.02,0.15 +Farm Frenzy: Animal Country,DS,2009,Simulation,City Interactive,0.13,0.01,0,0.01,0.15 +Kingdom Under Fire: Heroes,XB,2005,Strategy,Deep Silver,0.11,0.03,0,0.01,0.15 +Wolfenstein: The Old Blood,XOne,2015,Action,Bethesda Softworks,0.07,0.07,0,0.01,0.15 +The Terminator: Dawn of Fate,XB,2002,Action,Atari,0.11,0.03,0,0.01,0.15 +Cartoon Network Collection: Game Boy Advance Video Special Edition,GBA,2005,Misc,,0.11,0.04,0,0,0.15 +Naruto Shippuden: Legends: Akatsuki Rising,PSP,2009,Fighting,Namco Bandai Games,0.14,0,0,0.01,0.15 +Scooby-Doo! Unmasked,GC,2005,Platform,THQ,0.12,0.03,0,0,0.15 +Streak: Hoverboard Racing,PS,1998,Racing,GT Interactive,0.09,0.06,0,0.01,0.15 +Samurai Warriors: Katana,Wii,2007,Action,Tecmo Koei,0.11,0,0.04,0.01,0.15 +Project Sylpheed: Arc of Deception,X360,2006,Shooter,Microsoft Game Studios,0.12,0.01,0.02,0.01,0.15 +Enthusia Professional Racing,PS2,2005,Racing,Konami Digital Entertainment,0.07,0.06,0,0.02,0.15 +NCAA GameBreaker 2001,PS2,2000,Sports,Sony Computer Entertainment,0.07,0.06,0,0.02,0.15 +Get On Da Mic,PS2,2004,Misc,Eidos Interactive,0.07,0.06,0,0.02,0.15 +Heroes of Mana,DS,2007,Strategy,Square Enix,0.08,0.01,0.05,0.01,0.15 +Jurassic: The Hunted,Wii,2009,Shooter,Activision,0.14,0,0,0.01,0.15 +Army Men: Sarge's War,GC,2004,Shooter,Global Star,0.12,0.03,0,0,0.15 +Horse Life Adventures,Wii,2008,Simulation,Deep Silver,0.13,0.01,0,0.01,0.15 +Amagami,PSP,2011,Adventure,Kadokawa Shoten,0,0,0.15,0,0.15 +Ice Age 2: The Meltdown,DS,2006,Platform,Vivendi Games,0.13,0.01,0,0.01,0.15 +Jikkyou Powerful Pro Yakyuu 2009,PS2,2009,Sports,Konami Digital Entertainment,0,0,0.15,0,0.15 +Blazing Angels 2: Secret Missions of WWII,PS3,2007,Simulation,Ubisoft,0.1,0.03,0,0.02,0.15 +Bigfoot: Collision Course,DS,2009,Racing,Zoo Digital Publishing,0.14,0,0,0.01,0.15 +Marvel Super Hero Squad: The Infinity Gauntlet,X360,2010,Action,THQ,0.12,0.02,0,0.01,0.15 +Kidou Senkan Nadesico,SAT,1997,Strategy,Sega,0,0,0.15,0,0.15 +Tears to Tiara II: Heir of the Overlord,PS3,2013,Role-Playing,Nippon Ichi Software,0.07,0.02,0.06,0.01,0.15 +Frogger's Adventures: The Rescue,GC,2003,Platform,Konami Digital Entertainment,0.12,0.03,0,0,0.15 +The Incredibles: Rise of the Underminer,DS,2005,Action,THQ,0.13,0.01,0,0.01,0.15 +Darksiders,PC,2010,Action,THQ,0.07,0.06,0,0.02,0.15 +The Secret Saturdays: Beasts of the 5th Sun,PS2,2009,Action,D3Publisher,0.05,0.02,0,0.08,0.15 +Countdown: The Game,DS,2009,Puzzle,Mindscape,0,0.14,0,0.01,0.15 +Active Life Explorer,Wii,2010,Sports,Namco Bandai Games,0.14,0,0,0.01,0.15 +MLB Power Pros 2008,PS2,2008,Sports,Konami Digital Entertainment,0.05,0.04,0.05,0.01,0.15 +The Fairly Odd Parents: Clash with the Anti-World,GBA,2005,Adventure,THQ,0.11,0.04,0,0,0.15 +Theatrhythm Dragon Quest,3DS,2015,Misc,Square Enix,0,0,0.15,0,0.15 +Major League Baseball 2K10,DS,2010,Sports,Take-Two Interactive,0.14,0,0,0.01,0.15 +Naruto: Powerful Shippuden,3DS,2012,Platform,Namco Bandai Games,0.08,0.02,0.04,0.01,0.15 +Disney's The Lion King: Simba's Mighty Adventure,PS,2000,Action,Activision,0.08,0.06,0,0.01,0.15 +Family Party: Fitness Fun,Wii,2010,Sports,D3Publisher,0.14,0,0,0.01,0.15 +Thor: God of Thunder,PS3,2011,Action,Sega,0.07,0.06,0,0.02,0.15 +Fantastic Four: Rise of the Silver Surfer,PS3,2007,Action,Take-Two Interactive,0.12,0.02,0,0.02,0.15 +Metal Slug Anthology,Wii,2006,Shooter,Ignition Entertainment,0.12,0.01,0,0.01,0.15 +GoldenEye 007 (2010),DS,2010,Action,Activision,0.11,0.03,0,0.01,0.15 +Jikkyou Powerful Pro Yakyuu 2012,PSP,2012,Action,Konami Digital Entertainment,0,0,0.15,0,0.15 +All Japan Pro Wrestling featuring Virtua,SAT,1997,Fighting,Sega,0,0,0.15,0,0.15 +Rudra no Hihou,SNES,1996,Role-Playing,SquareSoft,0,0,0.15,0,0.15 +Gundam Breaker 2,PSV,2014,Action,Namco Bandai Games,0,0,0.15,0,0.15 +Prince of Persia: The Sands of Time,GBA,2003,Action,Ubisoft,0.11,0.04,0,0,0.15 +Cake Mania: In The Mix!,Wii,2008,Puzzle,Majesco Entertainment,0.14,0,0,0.01,0.15 +Zoids: Battle Legends,GC,2003,Action,Tomy Corporation,0.12,0.03,0,0,0.15 +World Series Baseball 2K3,XB,2003,Sports,Sega,0.11,0.03,0,0.01,0.15 +Serious Sam,XB,2002,Shooter,Take-Two Interactive,0.11,0.03,0,0.01,0.15 +Kowloon's Gate,PS,1997,Adventure,Sony Computer Entertainment,0,0,0.14,0.01,0.15 +Killer7,GC,2005,Action,Capcom,0.12,0.03,0,0,0.15 +Kingdom of Paradise,PSP,2005,Role-Playing,Sony Computer Entertainment,0.14,0,0,0.01,0.15 +Hidden Mysteries: Salem Secrets - Witch Trials of 1692,DS,2010,Puzzle,Astragon,0.09,0.04,0,0.01,0.15 +NBA Street Homecourt,PS3,2007,Sports,Electronic Arts,0.12,0.02,0,0.02,0.15 +The Sims Medieval: Pirates and Nobles,PC,2011,Simulation,Electronic Arts,0.05,0.08,0,0.02,0.15 +The Cursed Crusade,X360,2011,Action,DTP Entertainment,0.08,0.05,0,0.01,0.15 +Super Monkey Ball Adventure,GC,2006,Platform,Sega,0.12,0.03,0,0,0.15 +Kids Learn Math: A+ Edition,DS,2011,Misc,Unknown,0.14,0,0,0.01,0.15 +FIFA Soccer 2002,PS,2001,Sports,Electronic Arts,0.08,0.06,0,0.01,0.15 +Build-A-Bear Workshop: Welcome to Hugsville,DS,2010,Misc,Game Factory,0.14,0,0,0.01,0.15 +Street Fighter Anniversary Collection,XB,2004,Fighting,Capcom,0.11,0.03,0,0.01,0.15 +Final Fantasy XI: Vana'diel Collection 2008,X360,2007,Role-Playing,Square Enix,0.13,0,0.01,0.01,0.15 +Suzumiya Haruhi no Yakusoku,PSP,2007,Adventure,Namco Bandai Games,0,0,0.15,0,0.15 +Shadow Ops: Red Mercury,XB,2004,Shooter,Atari,0.11,0.03,0,0.01,0.15 +Indigo Prophecy,PS2,2005,Adventure,Atari,0.07,0.06,0,0.02,0.15 +Mind Zero,PSV,2013,Role-Playing,GungHo,0.08,0,0.04,0.02,0.15 +World League Soccer,SNES,1991,Sports,Imagineer,0,0,0.15,0,0.15 +NBA ShootOut 2001,PS2,2001,Sports,Sony Computer Entertainment,0.07,0.06,0,0.02,0.15 +Earth Defense Force 2025,X360,2013,Shooter,D3Publisher,0.06,0.04,0.05,0.01,0.15 +Spider-Man: Friend or Foe,Wii,2007,Action,Activision,0.13,0.01,0,0.01,0.15 +Ultimate Board Game Collection,Wii,2007,Misc,Xplosiv,0.14,0,0,0.01,0.15 +Syndicate,PS3,2012,Shooter,EA Games,0.07,0.06,0,0.02,0.15 +Samurai Shodown Anthology,PS2,2008,Fighting,Ignition Entertainment,0.07,0.06,0,0.02,0.15 +NBA 09: The Inside,PS3,2008,Sports,Sony Computer Entertainment,0.14,0,0,0.01,0.15 +Musashi: Samurai Legend,PS2,2005,Role-Playing,Atari,0.07,0.06,0,0.02,0.15 +Saint Seiya: Soldiers' Soul,PS4,2015,Fighting,Namco Bandai Games,0,0.09,0.04,0.02,0.15 +Terraria,PC,2011,Action,Unknown,0,0.13,0,0.02,0.15 +Castlevania: Lords of Shadow - Mirror of Fate,3DS,2013,Action,Konami Digital Entertainment,0.04,0.07,0.03,0.01,0.15 +3rd Super Robot Wars Z: Tengoku-Hen,PS3,2015,Action,Namco Bandai Games,0,0,0.15,0,0.15 +Fantasia: Music Evolved,XOne,2014,Misc,Disney Interactive Studios,0.11,0.03,0,0.01,0.15 +Pok?mon: Johto Photo Finish: Game Boy Advance Video,GBA,2004,Misc,,0.11,0.04,0,0,0.15 +F1 2001,PS2,2001,Racing,Electronic Arts,0.07,0.06,0,0.02,0.15 +The Legend of Heroes: Trails of Cold Steel II,PSV,2014,Role-Playing,Nippon Ichi Software,0.02,0,0.13,0.01,0.15 +Top Gun: Combat Zones,GC,2002,Simulation,Titus,0.12,0.03,0,0,0.15 +J-League Victory Goal,SAT,1995,Sports,Sega,0,0,0.15,0,0.15 +Bakugan Battle Brawlers: Defenders of the Core,PSP,2010,Action,Activision,0.09,0.04,0,0.03,0.15 +Oreshika: Tainted Bloodlines,PSV,2014,Role-Playing,Sony Computer Entertainment,0,0,0.15,0,0.15 +White Knight Chronicles: Origins,PSP,2011,Role-Playing,Sony Computer Entertainment,0,0.04,0.09,0.02,0.15 +Return to PopoloCrois: A Story of Seasons Fairytale,3DS,2015,Simulation,Marvelous Entertainment,0.04,0,0.1,0.01,0.15 +Spongebob Squarepants / Fairly Odd Parents Double Pack,GBA,2005,Action,THQ,0.11,0.04,0,0,0.15 +History Civil War: Secret Missions,PS2,2008,Shooter,Activision,0.07,0.06,0,0.02,0.15 +NHL 09,PS2,2008,Sports,Electronic Arts,0.07,0.06,0,0.02,0.15 +Mirror's Edge Catalyst,XOne,2016,Platform,Electronic Arts,0.08,0.05,0,0.02,0.15 +Derby Stallion 64,N64,2001,Sports,Media Factory,0,0,0.15,0,0.15 +Doraemon 3: Nobi Dai no Machi SOS!,N64,2000,Platform,Epoch,0,0,0.09,0.06,0.15 +Space Station Silicon Valley,N64,1997,Adventure,Take-Two Interactive,0.12,0.03,0,0,0.15 +Dark Rift,N64,1997,Fighting,Vic Tokai,0.12,0.03,0,0,0.15 +Tokyo Xanadu,PSV,2015,Role-Playing,Nihon Falcom Corporation,0,0,0.15,0,0.15 +All-Star Baseball 2003,GC,2002,Sports,Acclaim Entertainment,0.12,0.03,0,0,0.15 +Burger Island,Wii,2009,Action,Destineer,0.14,0,0,0.01,0.15 +Petz: Dogz Talent Show,DS,2009,Simulation,Ubisoft,0.14,0,0,0.01,0.15 +T'ai Fu: Wrath of the Tiger,PS,1998,Action,Activision,0.08,0.06,0,0.01,0.15 +Rocky,XB,2002,Fighting,Rage Software,0.11,0.03,0,0.01,0.15 +Ford Racing 2,XB,2003,Racing,Empire Interactive,0.11,0.03,0,0.01,0.15 +Odin Sphere: Leifthrasir,PSV,2016,Role-Playing,Nippon Ichi Software,0.02,0.03,0.08,0.02,0.15 +Sam & Max: Season One,Wii,2008,Adventure,JoWood Productions,0.13,0.01,0,0.01,0.15 +Virtua Tennis 4,Wii,2011,Sports,Sega,0.05,0.08,0,0.02,0.15 +Tetris Attack,SNES,1995,Puzzle,Nintendo,0,0,0.15,0,0.15 +Candace Kane's Candy Factory,Wii,2008,Action,Destineer,0.14,0,0,0.01,0.15 +BloodRayne 2,XB,2004,Shooter,THQ,0.11,0.03,0,0.01,0.15 +Hot Wheels: Beat That!,Wii,2007,Racing,Activision,0.13,0,0,0.01,0.15 +Soldier of Fortune: Payback,PS3,2007,Shooter,Activision,0.12,0.02,0,0.01,0.15 +Jaws Unleashed,XB,2006,Action,THQ,0.11,0.03,0,0.01,0.15 +Pro Yaky? Spirits 6,PS3,2009,Sports,Konami Digital Entertainment,0,0,0.15,0,0.15 +Star Trek: Voyager Elite Force,PS2,2001,Shooter,Codemasters,0.07,0.06,0,0.02,0.15 +X-Men: The Official Game,GC,2006,Action,Activision,0.12,0.03,0,0,0.15 +Brain Boost: Gamma Wave,DS,2005,Puzzle,505 Games,0.14,0,0,0.01,0.15 +Scarface: The World is Yours,Wii,2007,Action,Vivendi Games,0.12,0.01,0,0.01,0.15 +Rock Band: Metal Track Pack,X360,2009,Misc,MTV Games,0.14,0,0,0.01,0.15 +Chessmaster II,PS,1998,Strategy,Mindscape,0.08,0.06,0,0.01,0.15 +All-Star Baseball 2003,GBA,2002,Sports,Acclaim Entertainment,0.11,0.04,0,0,0.15 +Scooby-Doo! Mystery Mayhem,XB,2004,Action,THQ,0.11,0.03,0,0.01,0.15 +Winning Post 4,PS,1999,Sports,Tecmo Koei,0,0,0.14,0.01,0.15 +Major League Baseball 2K13,PS3,2013,Sports,Take-Two Interactive,0.14,0,0,0.01,0.15 +DreamWorks Super Star Kartz,Wii,2011,Racing,Activision,0.1,0.04,0,0.01,0.15 +Pro Baseball Spirits 2015,PS3,2015,Action,Konami Digital Entertainment,0,0,0.15,0,0.15 +187: Ride or Die,PS2,2005,Racing,Ubisoft,0.07,0.06,0,0.02,0.15 +Curious George,GC,2006,Action,Namco Bandai Games,0.11,0.03,0,0,0.15 +Strawberry Shortcake: Game Boy Advance Video Volume 1,GBA,2004,Misc,,0.11,0.04,0,0,0.15 +Armored Core: For Answer,X360,2008,Simulation,Ubisoft,0.06,0.01,0.07,0.01,0.15 +Geist,GC,2005,Adventure,Nintendo,0.11,0.03,0,0,0.15 +eJay Clubworld,PS2,,Misc,Empire Interactive,0.07,0.06,0,0.02,0.15 +Cardinal Syn,PS,1998,Fighting,Sony Computer Entertainment,0.08,0.06,0,0.01,0.15 +Charm Girls Club: Pajama Party,Wii,2009,Misc,Electronic Arts,0.14,0,0,0.01,0.15 +Street Fighter Alpha 3,GBA,2002,Fighting,Capcom,0.11,0.04,0,0,0.15 +The Wizard of Oz: Beyond The Yellow Brick Road,DS,2008,Role-Playing,D3Publisher,0.13,0,0,0.01,0.15 +Mobile Suit Gundam Side Story III: Sabakareshi Mono,SAT,1997,Shooter,Namco Bandai Games,0,0,0.15,0,0.15 +Ridge Racer DS,DS,2004,Racing,Namco Bandai Games,0.14,0,0,0.01,0.15 +Warriors Orochi 3,PS4,2014,Action,Tecmo Koei,0.04,0.05,0.04,0.02,0.15 +Nancy Drew: The White Wolf of Icicle Creek,Wii,2008,Adventure,Sega,0.14,0,0,0.01,0.15 +Super Street Fighter II,GEN,1993,Fighting,Capcom,0,0,0.15,0,0.15 +Metal Gear Solid: Peace Walker HD Edition,PS3,2011,Action,Konami Digital Entertainment,0,0,0.15,0,0.15 +Battle Stadium D.O.N,PS2,2006,Fighting,Namco Bandai Games,0,0,0.15,0,0.15 +No.1 Muscle Ranking - Kinniku Banzuke Vol. 2: Aratanarugenkai Enochousen!,PS,2000,Sports,Konami Digital Entertainment,0,0,0.14,0.01,0.15 +Brain Boost: Beta Wave,DS,2005,Puzzle,505 Games,0.14,0,0,0.01,0.15 +Power Pro Kun Pocket 9,DS,2006,Sports,Konami Digital Entertainment,0,0,0.15,0,0.15 +Rubik's World,Wii,2008,Puzzle,Game Factory,0.13,0.01,0,0.01,0.15 +Gallop & Ride!,Wii,2008,Sports,THQ,0.14,0,0,0.01,0.15 +Shenmue II,DC,2001,Adventure,Sega,0,0,0.15,0,0.15 +Major League Baseball 2K8,PS2,2008,Sports,Bethesda Softworks,0.07,0.06,0,0.02,0.15 +Capcom Classics Collection,XB,2005,Misc,Capcom,0.11,0.03,0,0.01,0.15 +Fugitive Hunter: War on Terror,PS2,2003,Shooter,Play It,0.07,0.06,0,0.02,0.15 +The Incredible Hulk: Ultimate Destruction,GC,2005,Action,Vivendi Games,0.11,0.03,0,0,0.15 +Prince of Persia: The Two Thrones,GC,2005,Action,Ubisoft,0.11,0.03,0,0,0.15 +Ore no Imouto ga Konna ni Kawaii wake ga Nai Portable,PSP,2011,Adventure,Banpresto,0,0,0.15,0,0.15 +Baseball Blast!,Wii,2009,Sports,Take-Two Interactive,0.14,0,0,0.01,0.15 +Pac-Man World 3,XB,2005,Platform,Namco Bandai Games,0.11,0.04,0,0.01,0.15 +The Walking Dead: Season Two,PSV,2014,Adventure,Telltale Games,0.1,0,0.01,0.03,0.15 +Harvest Moon: Hero of Leaf Valley,PSP,2009,Simulation,Rising Star Games,0.07,0.02,0.05,0.02,0.15 +Phantasy Star Online Episode I & II,XB,2003,Role-Playing,Sega,0.11,0.03,0,0.01,0.15 +F1 2012,PC,2012,Racing,Codemasters,0.01,0.11,0,0.03,0.15 +All-Star Baseball 2005,XB,,Sports,Unknown,0.11,0.03,0,0.01,0.15 +Rayman Raving Rabbids,DS,2007,Misc,Ubisoft,0.13,0.01,0,0.01,0.15 +Kung-Fu: High Impact,X360,2011,Action,Black Bean Games,0.08,0.06,0,0.01,0.15 +SNK Arcade Classics Vol. 1,PSP,2008,Misc,Ignition Entertainment,0.13,0,0.01,0.01,0.15 +Darkstalkers Chronicle: The Chaos Tower,PSP,2004,Fighting,Capcom,0.13,0,0,0.01,0.15 +NHL 2K10,X360,2009,Sports,Take-Two Interactive,0.11,0.02,0,0.01,0.15 +Batman Begins,GC,2005,Action,Electronic Arts,0.11,0.03,0,0,0.15 +Toy Story Racer,PS,2001,Racing,Activision,0.08,0.06,0,0.01,0.15 +Yakuza: Ishin,PS4,2014,Action,Sega,0,0,0.15,0,0.15 +F1 2011,PSV,2011,Racing,Codemasters,0.03,0.08,0.01,0.03,0.15 +Disney's Donald Duck: Goin' Quackers,PS,2000,Platform,Ubisoft,0.08,0.06,0,0.01,0.15 +Mobile Suit Gundam: Perfect One Year War,PS,1997,Strategy,Namco Bandai Games,0,0,0.14,0.01,0.15 +Galerians,PS,1999,Adventure,Crave Entertainment,0.08,0.06,0,0.01,0.15 +Crash: Twinsanity,XB,2004,Platform,Vivendi Games,0.11,0.03,0,0.01,0.15 +DrumMania,PS2,2000,Simulation,Konami Digital Entertainment,0,0,0.15,0,0.15 +Yu-Gi-Oh! Nightmare Troubadour (US sales),DS,2005,Action,Konami Digital Entertainment,0.15,0,0,0,0.15 +Code:Realize - Sousei no Himegimi,PSV,2014,Adventure,Idea Factory,0.09,0,0.03,0.03,0.15 +Hoppechan: Tsukutte! Asonde! Punipuni Town!!,3DS,2013,Action,Nippon Columbia,0,0,0.15,0,0.15 +Deus Ex: Mankind Divided,XOne,2016,Role-Playing,Square Enix,0.08,0.06,0,0.01,0.15 +Arena Football,XB,2006,Sports,Electronic Arts,0.11,0.03,0,0.01,0.15 +Tamagotchi no Narikiri Channel,DS,2009,Role-Playing,Namco Bandai Games,0,0,0.15,0,0.15 +Power Pro Kun Pocket 1+2,GBA,2004,Sports,Konami Digital Entertainment,0,0,0.14,0,0.15 +Rayman Origins,3DS,2012,Platform,Ubisoft,0.06,0.08,0,0.01,0.15 +Thor: God of Thunder,X360,2011,Action,Sega,0.09,0.04,0,0.01,0.15 +Medal of Honor: Infiltrator,GBA,2003,Shooter,Electronic Arts,0.11,0.04,0,0,0.15 +Risen 2: Dark Waters,X360,2012,Role-Playing,Deep Silver,0.05,0.08,0,0.01,0.15 +Blazing Dragons,PS,1996,Adventure,Crystal Dynamics,0.08,0.06,0,0.01,0.15 +Geometry Wars: Galaxies,DS,2007,Shooter,Vivendi Games,0.13,0,0,0.01,0.15 +Super Monkey Ball Deluxe,XB,2005,Misc,Sega,0.11,0.03,0,0.01,0.15 +Shin Megami Tensei: Devil Summoner - Soul Hackers,PS,1999,Role-Playing,Atlus,0,0,0.14,0.01,0.15 +Shin Chan: ?Aventuras de Cine!,DS,2008,Platform,505 Games,0,0,0.15,0,0.15 +Alien: Isolation,PC,2014,Shooter,Sega,0,0.13,0,0.01,0.15 +High Velocity Bowling,PS3,2010,Sports,Sony Computer Entertainment,0.13,0,0,0.01,0.15 +Tamagotchi Collection,DS,2011,Misc,Namco Bandai Games,0,0,0.15,0,0.15 +Pac-Man Party 3D,3DS,2011,Misc,Namco Bandai Games,0.09,0.04,0,0.01,0.15 +"NewU Fitness First Mind Body, Yoga & Pilates Workout",Wii,2010,Sports,Black Bean Games,0.12,0.02,0,0.01,0.15 +Backyard Sports: Sandlot Sluggers,DS,2010,Sports,Atari,0.14,0,0,0.01,0.15 +Turbo Prop Racing,PS,1997,Racing,Sony Computer Entertainment,0.08,0.06,0,0.01,0.15 +Barbie Superpack: Secret Agent / Groovy Games,GBA,2005,Misc,Vivendi Games,0.1,0.04,0,0,0.15 +Tom Clancy's Ghost Recon,GC,2003,Shooter,Ubisoft,0.11,0.03,0,0,0.15 +Dance Dance Revolution (North America),PS,2001,Simulation,Konami Digital Entertainment,0.08,0.06,0,0.01,0.15 +Bakugan Battle Brawlers: Defenders of the Core,X360,2010,Action,Activision,0.11,0.02,0,0.01,0.15 +Mad Dash Racing,XB,2001,Racing,Eidos Interactive,0.11,0.03,0,0.01,0.15 +Dreamworks 2-in-1 Party Pack,DS,2010,Misc,Activision,0.14,0,0,0.01,0.15 +Summon Night 5,PSP,2013,Role-Playing,Namco Bandai Games,0,0,0.15,0,0.15 +MotoGP 2: Ultimate Racing Technology,PS2,2001,Racing,Sony Computer Entertainment,0.07,0.06,0,0.02,0.15 +Black * Rock Shooter: The Game,PSP,2011,Role-Playing,Unknown,0,0,0.15,0,0.15 +Travel Games For Dummies,DS,2008,Misc,Electronic Arts,0.13,0,0,0.01,0.15 +BMX XXX,PS2,2002,Sports,Acclaim Entertainment,0.07,0.06,0,0.02,0.15 +SafeCracker: The Ultimate Puzzle Adventure,DS,2009,Puzzle,The Adventure Company,0.07,0.06,0,0.01,0.15 +Tiger Woods PGA Tour,DS,2004,Sports,Electronic Arts,0.13,0,0,0.01,0.15 +Dragon Ball Z: Idainaru Dragon Ball Densetsu,SAT,1995,Fighting,Namco Bandai Games,0,0,0.15,0,0.15 +Sonic Advance & Sonic Pinball Party Combo Pack,GBA,2005,Misc,Sega,0.1,0.04,0,0,0.15 +Boktai: The Sun is in Your Hand,GBA,2003,Role-Playing,Konami Digital Entertainment,0.1,0.04,0,0,0.15 +Cars: Mater-National Championship,X360,2007,Racing,THQ,0.13,0,0,0.01,0.15 +Making History: The Great War,Wii,2010,Strategy,Namco Bandai Games,0,0,0.15,0,0.15 +Drawn to Life Collection,DS,2010,Misc,THQ,0.14,0,0,0.01,0.15 +Guilty Gear X2 #Reload,XB,2004,Fighting,Zoo Digital Publishing,0.11,0.03,0,0.01,0.15 +Wizardry VII: Gadeia no Houshu,PS,1995,Role-Playing,Sony Computer Entertainment,0,0,0.14,0.01,0.15 +Dynasty Warriors 8: Xtreme Legends,PSV,2013,Action,Tecmo Koei,0.04,0.03,0.05,0.02,0.15 +Moshi Monsters: Katsuma Unleashed,DS,2013,Action,Activision,0,0.13,0,0.02,0.15 +Elf: The Movie,GBA,2004,Action,Crave Entertainment,0.1,0.04,0,0,0.15 +Metal Slug 7,DS,2008,Shooter,Ignition Entertainment,0.13,0,0.01,0.01,0.15 +MLB SlugFest 20-03,GC,2002,Sports,Midway Games,0.11,0.03,0,0,0.15 +Tamagotchi no Appare! Niji Venture,DS,2007,Role-Playing,Namco Bandai Games,0,0,0.14,0,0.14 +Grabbed by the Ghoulies,XB,2003,Action,Microsoft Game Studios,0.11,0.03,0,0.01,0.14 +Ys: The Oath in Felghana,PSP,2010,Role-Playing,Falcom Corporation,0.09,0,0.04,0.01,0.14 +Shadow Hearts: From The New World,PS2,2005,Role-Playing,Ghostlight,0.07,0.06,0,0.02,0.14 +Mega Man Powered Up,PSP,2006,Platform,Capcom,0.12,0.01,0,0.02,0.14 +CSI: 3 Dimensions of Murder,PS2,2007,Adventure,Ubisoft,0.07,0.06,0,0.02,0.14 +Barbarian,PS2,2002,Fighting,Titus,0.07,0.06,0,0.02,0.14 +QuickSpot,DS,2006,Misc,Namco Bandai Games,0.02,0,0.13,0,0.14 +Deception IV: Blood Ties,PSV,2014,Action,Tecmo Koei,0.03,0.03,0.07,0.02,0.14 +Tennis no Oji-Sama: Aim at The Victory!,GBA,2002,Sports,Konami Digital Entertainment,0,0,0.14,0,0.14 +L.A. Rush,XB,2005,Racing,Midway Games,0.11,0.03,0,0.01,0.14 +"Lunar 2: Eternal Blue(sales, but wrong system)",GEN,1994,Role-Playing,Game Arts,0,0,0.14,0,0.14 +Where the Wild Things Are,DS,2009,Platform,Warner Bros. Interactive Entertainment,0.13,0,0,0.01,0.14 +Pipe Dreams 3D,PS,2001,Puzzle,Empire Interactive,0.08,0.05,0,0.01,0.14 +Derby Stallion Gold,3DS,2014,Sports,Kadokawa Shoten,0,0,0.14,0,0.14 +Adventure Time: Explore the Dungeon Because I Don't Know!,3DS,2013,Action,D3Publisher,0.1,0.03,0,0.01,0.14 +Lost Dimension,PSV,2014,Role-Playing,Nippon Ichi Software,0.07,0.03,0.02,0.03,0.14 +Fox Sports Golf '99,PS,1997,Sports,Gremlin Interactive Ltd,0.08,0.05,0,0.01,0.14 +Jurassic: The Hunted,PS2,2009,Shooter,Activision,0.07,0.06,0,0.02,0.14 +Power Rangers: Super Legends,PS2,2007,Action,Disney Interactive Studios,0.07,0.06,0,0.02,0.14 +Sakura Wars GB,GB,2000,Adventure,Media Factory,0,0,0.14,0,0.14 +Shining Force CD,SCD,1994,Strategy,Sega,0,0,0.14,0,0.14 +Rayman 3,GBA,2003,Platform,Ubisoft,0.1,0.04,0,0,0.14 +Fatal Frame,PS2,2001,Action,Wanadoo,0.07,0.06,0,0.02,0.14 +The Fifth Element,PS,1998,Action,Sony Computer Entertainment,0.08,0.05,0,0.01,0.14 +Kung Fu Panda 2,Wii,2011,Action,THQ,0.08,0.05,0,0.01,0.14 +Fast Food Panic,DS,2010,Simulation,Nobilis,0.13,0,0,0.01,0.14 +Diner Dash: Flo on the Go,DS,2009,Puzzle,Zoo Games,0.13,0,0,0.01,0.14 +Adrenalin Misfits,X360,2010,Racing,Konami Digital Entertainment,0.12,0.02,0,0.01,0.14 +Okaeri! Chibi-Robo! Happy Richie Oosouji,DS,2009,Adventure,Nintendo,0,0,0.14,0,0.14 +Wild ARMs 4,PS2,2005,Role-Playing,505 Games,0.07,0.06,0,0.02,0.14 +Haunted House,Wii,2010,Action,Atari,0.13,0,0,0.01,0.14 +Ratatouille,GC,2007,Action,THQ,0.11,0.03,0,0,0.14 +G.I. Joe: The Rise of Cobra,PS2,2009,Action,Electronic Arts,0.11,0,0,0.03,0.14 +Casper: Spirit Dimensions,PS2,2001,Platform,TDK Mediactive,0.07,0.05,0,0.02,0.14 +Super Robot Taisen OG Saga: Endless Frontier (JP sales),DS,2008,Role-Playing,Namco Bandai Games,0,0,0.14,0,0.14 +Sengoku Musou 3 Empires,PS3,2011,Action,Tecmo Koei,0,0,0.14,0,0.14 +Dream Pinball 3D,Wii,2008,Misc,SouthPeak Games,0.1,0.03,0,0.01,0.14 +Thunder Truck Rally,PS,1997,Racing,Psygnosis,0.08,0.05,0,0.01,0.14 +Dishonored,XOne,2015,Action,Bethesda Softworks,0.08,0.05,0,0.01,0.14 +Klonoa: Empire of Dreams,GBA,2001,Platform,Infogrames,0.1,0.04,0,0,0.14 +G.I. Joe: The Rise of Cobra,PSP,2009,Action,Electronic Arts,0.11,0.02,0,0.02,0.14 +Dragon Age: Origins - Ultimate Edition,PC,2010,Role-Playing,Electronic Arts,0,0.12,0,0.02,0.14 +Balloon Pop,DS,2009,Puzzle,UFO Interactive,0.13,0,0,0.01,0.14 +Disney Infinity 2.0: Marvel Super Heroes,PSV,2015,Action,Disney Interactive Studios,0,0.11,0,0.03,0.14 +Iron & Blood,PS,1996,Fighting,Acclaim Entertainment,0.08,0.05,0,0.01,0.14 +Asphalt: Urban GT 2,DS,2006,Racing,Ubisoft,0.09,0.04,0,0.01,0.14 +Pinball Hall of Fame: The Gottlieb Collection,Wii,2006,Misc,System 3 Arcade Software,0.13,0,0,0.01,0.14 +Second Sight,PS2,2004,Adventure,Codemasters,0.07,0.05,0,0.02,0.14 +Spider-Man: Edge of Time,DS,2011,Action,Activision,0.12,0.01,0,0.01,0.14 +Monster House,PS2,2006,Adventure,THQ,0.07,0.05,0,0.02,0.14 +Phantom Brave,PS2,2004,Role-Playing,Tecmo Koei,0.07,0.05,0,0.02,0.14 +Just Cause,X360,2006,Action,Eidos Interactive,0.1,0.03,0.01,0.01,0.14 +ArmA II,PC,2009,Shooter,505 Games,0,0.12,0,0.03,0.14 +Championship Motocross 2001 featuring Ricky Carmichael,PS,2001,Racing,THQ,0.08,0.05,0,0.01,0.14 +Kenka Banchou 5: Otoko no Housoku,PSP,2011,Action,Spike,0,0,0.14,0,0.14 +Legend of the Guardians: The Owls of Ga'Hoole,DS,2010,Action,Warner Bros. Interactive Entertainment,0.11,0.02,0,0.01,0.14 +Doshin the Giant,GC,2002,Simulation,Nintendo,0,0,0.14,0,0.14 +Shrek 2 and Shark Tale 2-in-1 Pack,GBA,2005,Misc,Activision,0.1,0.04,0,0,0.14 +Star Ocean: Blue Sphere,GB,2001,Role-Playing,Enix Corporation,0,0,0.14,0,0.14 +Mojo!,PS2,2003,Puzzle,Mindscape,0.07,0.05,0,0.02,0.14 +Destroy All Humans! Big Willy Unleashed,Wii,2008,Action,THQ,0.13,0,0,0.01,0.14 +Age of Empires: Collector's Edition,PC,2000,Strategy,Ubisoft,0.02,0.1,0,0.02,0.14 +Ford Racing Off Road,PSP,2008,Racing,Xplosiv,0.05,0.08,0,0.02,0.14 +Kamen Rider Ryuki,PS,2002,Action,Namco Bandai Games,0,0,0.13,0.01,0.14 +Front Mission Alternative,PS,1997,Strategy,SquareSoft,0,0,0.13,0.01,0.14 +World Championship Poker: Howard Lederer - All In,PSP,2006,Misc,505 Games,0.13,0,0,0.01,0.14 +FIFA Soccer 2005,GC,2004,Sports,Electronic Arts,0.11,0.03,0,0,0.14 +Cave Story 3D,3DS,2011,Platform,Nippon Ichi Software,0.09,0.03,0.01,0.01,0.14 +The Orange Box,PC,2007,Shooter,Electronic Arts,0,0.11,0,0.03,0.14 +Super Dodgeball Brawlers,DS,2008,Sports,Arc System Works,0.13,0,0,0.01,0.14 +Victorious Boxers: Revolution,Wii,2007,Fighting,Ubisoft,0.07,0,0.06,0.01,0.14 +Record of Agarest War 2,PS3,2010,Role-Playing,Compile Heart,0.09,0,0.04,0.01,0.14 +SBK 2011: FIM Superbike World Championship,PS3,2011,Racing,Black Bean Games,0.01,0.1,0,0.03,0.14 +Power Stone,DC,1998,Fighting,Eidos Interactive,0,0,0.14,0,0.14 +Jonny Moseley Mad Trix,PS2,2001,Sports,3DO,0.07,0.05,0,0.02,0.14 +Monster Lab,DS,2008,Role-Playing,Eidos Interactive,0.12,0.01,0,0.01,0.14 +Uta no * Prince-Sama: Repeat,PSP,2011,Adventure,Broccoli,0,0,0.14,0,0.14 +Senran Kagura Burst: Guren no Sh?jo-tachi,3DS,2012,Action,Marvelous Entertainment,0,0,0.14,0,0.14 +MTV Music Generator 3: This Is the Remix,PS2,2004,Misc,Codemasters,0.07,0.05,0,0.02,0.14 +Cake Mania 3,DS,2009,Simulation,Majesco Entertainment,0.13,0,0,0.01,0.14 +.hack//Link,PSP,2010,Role-Playing,Namco Bandai Games,0,0,0.14,0,0.14 +Terminator 3: Rise of the Machines,XB,2003,Action,Atari,0.11,0.03,0,0.01,0.14 +Star Wars: Knights of the Old Republic,PC,2003,Role-Playing,LucasArts,0.01,0.1,0,0.02,0.14 +SSX On Tour,XB,2005,Sports,Electronic Arts,0.11,0.03,0,0.01,0.14 +NCAA College Basketball 2K3,XB,2002,Sports,Sega,0.11,0.03,0,0.01,0.14 +Class of Heroes,PSP,2008,Role-Playing,Acquire,0.06,0,0.08,0.01,0.14 +Yogi Bear: The Video Game,DS,2010,Action,D3Publisher,0.1,0.03,0,0.01,0.14 +Our House Party!,Wii,,Simulation,Unknown,0.13,0,0,0.01,0.14 +The Legend of Heroes II: Prophecy of the Moonlight Witch,PSP,2004,Role-Playing,Namco Bandai Games,0.03,0,0.11,0,0.14 +Cranium Kabookii,Wii,2007,Misc,Ubisoft,0.13,0,0,0.01,0.14 +Hero's Saga Laevatein Tactics,DS,2008,Role-Playing,GungHo,0.13,0,0,0.01,0.14 +Doom,GBA,2001,Shooter,Activision,0.1,0.04,0,0,0.14 +Gundam Breaker 2,PS3,2014,Action,Namco Bandai Games,0,0,0.14,0,0.14 +TRINITY: Souls of Zill O'll,PS3,2010,Role-Playing,Ubisoft Annecy,0.06,0.03,0.03,0.02,0.14 +Mary-Kate and Ashley: Winners Circle,PS,2001,Action,Acclaim Entertainment,0.08,0.05,0,0.01,0.14 +PaRappa The Rapper 2,PS2,2001,Misc,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Hexyz Force,PSP,2009,Role-Playing,Atlus,0.07,0,0.06,0.01,0.14 +OutRun 2,XB,2004,Racing,Sega,0.11,0.03,0,0.01,0.14 +Okami,PS3,2012,Action,Capcom,0,0,0.14,0,0.14 +Marvel vs. Capcom 2: New Age of Heroes,DC,2000,Fighting,Virgin Interactive,0,0,0.14,0,0.14 +Hitman: Blood Money,XB,2006,Action,Eidos Interactive,0.11,0.03,0,0.01,0.14 +Soukaigi,PS,1998,Role-Playing,SquareSoft,0,0,0.13,0.01,0.14 +Naruto Shippuden: Ninja Destiny 3,DS,2006,Fighting,D3Publisher,0,0.01,0.13,0,0.14 +Xevious 3D/G+,PS,1997,Shooter,Sony Computer Entertainment,0.01,0.01,0.11,0.01,0.14 +Pipe Mania,PS2,2008,Puzzle,Empire Interactive,0.07,0.05,0,0.02,0.14 +Gretzky NHL 06,PSP,2005,Sports,Sony Computer Entertainment,0.13,0,0,0.01,0.14 +Shonen Jump's Shaman King: Master of Spirits,GBA,2004,Role-Playing,Konami Digital Entertainment,0.1,0.04,0,0,0.14 +PANGYA: Fantasy Golf,PSP,2009,Sports,Takara Tomy,0.09,0,0.04,0.01,0.14 +NFL Blitz 20-03,XB,2002,Sports,Midway Games,0.11,0.03,0,0.01,0.14 +Sumikko Gurashi: Omise Hajimerundesu,3DS,2015,Action,Nippon Columbia,0,0,0.14,0,0.14 +Pirates: The Legend of Black Kat,PS2,2002,Adventure,Electronic Arts,0.07,0.05,0,0.02,0.14 +Fur Fighters: Viggo's Revenge,PS2,2001,Action,Acclaim Entertainment,0.07,0.05,0,0.02,0.14 +Krull,2600,1982,Action,Atari,0.13,0.01,0,0,0.14 +Yu-Gi-Oh! Monster Capture GB,GB,2000,Role-Playing,Konami Digital Entertainment,0,0,0.14,0,0.14 +Risen,PC,2009,Role-Playing,Deep Silver,0,0.11,0,0.03,0.14 +Top Spin 3,DS,2008,Action,D3Publisher,0.11,0.02,0,0.01,0.14 +Zapper: One Wicked Cricket!,GBA,2002,Platform,Infogrames,0.1,0.04,0,0,0.14 +The Da Vinci Code,PS2,2006,Action,Take-Two Interactive,0.07,0.05,0,0.02,0.14 +Watch Dogs,WiiU,2014,Action,Ubisoft,0.08,0.05,0,0.01,0.14 +Mr. Driller: Drill Spirits,DS,2004,Puzzle,Nintendo,0.08,0,0.05,0.01,0.14 +Arctic Tale,DS,2007,Adventure,Zoo Digital Publishing,0.13,0,0,0.01,0.14 +Scooby-Doo! Night of 100 Frights,XB,2003,Platform,THQ,0.11,0.03,0,0.01,0.14 +MX vs. ATV Reflex,DS,2009,Racing,THQ,0.13,0,0,0.01,0.14 +Anno 1701: Dawn of Discovery,DS,2007,Simulation,Touchstone,0.07,0.06,0,0.02,0.14 +Chicken Shoot,DS,2007,Action,Zoo Digital Publishing,0.13,0,0,0.01,0.14 +Dead to Rights,GC,2002,Shooter,Electronic Arts,0.11,0.03,0,0,0.14 +Sphinx and the Cursed Mummy,GC,2003,Action,THQ,0.11,0.03,0,0,0.14 +Cabela's Outdoor Adventures (2009),PS2,2009,Sports,Activision Value,0.07,0.05,0,0.02,0.14 +T.R.A.G. - Tactical Rescue Assault Group: Mission of Mercy,PS,1998,Adventure,Sunsoft,0.08,0.05,0,0.01,0.14 +Naruto RPG 2: Chidori vs Rasengan,DS,2005,Role-Playing,Tomy Corporation,0,0,0.14,0,0.14 +Destruction Derby Raw,PS,2000,Racing,Sony Computer Entertainment,0.08,0.05,0,0.01,0.14 +Project V6,PS,1998,Strategy,General Entertainment,0,0,0.13,0.01,0.14 +Farming Simulator 2012,3DS,2012,Action,Excalibur Publishing,0,0.12,0,0.02,0.14 +NFL Head Coach 09,PS3,2008,Sports,Electronic Arts,0.13,0,0,0.01,0.14 +World Tour Soccer 2003,PS2,2002,Sports,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Akiba's Trip,PSP,2011,Adventure,Acquire,0,0,0.14,0,0.14 +Bravo Air Race,PS,1997,Racing,THQ,0.08,0.05,0,0.01,0.14 +Onimusha Essentials,PS2,2008,Action,Capcom,0.07,0.05,0,0.02,0.14 +Blazing Angels 2: Secret Missions of WWII,X360,2007,Simulation,Ubisoft,0.11,0.02,0,0.01,0.14 +Gundam: The Battle Master,PS,1997,Fighting,Namco Bandai Games,0,0,0.13,0.01,0.14 +Spyro: A Hero's Tail,XB,2004,Platform,Vivendi Games,0.11,0.03,0,0.01,0.14 +?Shin Chan Flipa en colores!,DS,2007,Platform,505 Games,0,0,0.14,0,0.14 +Just Cause 3,PC,2015,Action,Square Enix,0.03,0.11,0,0.01,0.14 +Eternal Poison,PS2,2008,Role-Playing,Banpresto,0.07,0.05,0,0.02,0.14 +Lord of the Rings: Tactics,PSP,2005,Strategy,Electronic Arts,0.11,0.02,0,0.02,0.14 +X-Blades,X360,2009,Action,SouthPeak Games,0.1,0.02,0.02,0.01,0.14 +Gretzky NHL 06,PS2,2005,Sports,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Gungrave: Overdose,PS2,2004,Shooter,Play It,0.07,0.05,0,0.02,0.14 +Kidou Senshi Gundam: Shin Gihren no Yabou,PSP,2011,Strategy,Namco Bandai Games,0,0,0.14,0,0.14 +How to Train Your Dragon,X360,2010,Action,Activision,0.11,0.02,0,0.01,0.14 +Your Shape: Fitness Evolved 2013,WiiU,2012,Action,Ubisoft,0.06,0.07,0,0.01,0.14 +My Fitness Coach: Club,PS3,2011,Sports,Ubisoft,0,0.1,0,0.04,0.14 +NBA ShootOut 2002,PS,2001,Sports,Sony Computer Entertainment,0.08,0.05,0,0.01,0.14 +SingStar Vol. 3,PS3,2008,Misc,Sony Computer Entertainment,0,0.11,0,0.03,0.14 +The Granstream Saga,PS,1997,Role-Playing,Sony Computer Entertainment,0.08,0.05,0,0.01,0.14 +Scene It? Bright Lights! Big Screen!,Wii,2009,Misc,Warner Bros. Interactive Entertainment,0.13,0,0,0.01,0.14 +"Holy Invasion of Privacy, Badman! What Did I Do to Deserve This?",PSP,2007,Role-Playing,Nippon Ichi Software,0,0,0.13,0,0.14 +WCW Backstage Assault,N64,,Action,Unknown,0.11,0.03,0,0,0.14 +Micro Machines 64 Turbo,N64,1999,Racing,Codemasters,0.11,0.03,0,0,0.14 +Bassmasters 2000,N64,1999,Sports,THQ,0.11,0.03,0,0,0.14 +Baldur's Gate: Dark Alliance,GC,2002,Role-Playing,Virgin Interactive,0.11,0.03,0,0,0.14 +Bio FREAKS,N64,1998,Action,GT Interactive,0.11,0.03,0,0,0.14 +Eternal Eyes,PS,1999,Role-Playing,Sunsoft,0.08,0.05,0,0.01,0.14 +Injustice: Gods Among Us,PSV,2013,Fighting,Warner Bros. Interactive Entertainment,0.11,0.01,0,0.02,0.14 +Fate/Unlimited Codes,PS2,2008,Fighting,Capcom,0,0,0.14,0,0.14 +Atari's Greatest Hits: Volume 1,DS,2010,Misc,Atari,0.13,0,0,0.01,0.14 +The Operative: No One Lives Forever,PS2,2002,Shooter,Electronic Arts,0.07,0.05,0,0.02,0.14 +International Cricket 2010,X360,2010,Sports,Codemasters,0,0.12,0,0.02,0.14 +Epidemic,PS,1995,Shooter,Sony Computer Entertainment,0.02,0.01,0.1,0.01,0.14 +Monster House,GC,2006,Adventure,THQ,0.11,0.03,0,0,0.14 +Dead or Alive 2,DC,2000,Fighting,Acclaim Entertainment,0,0,0.14,0,0.14 +Buck Fever,Wii,2009,Sports,Destineer,0.13,0,0,0.01,0.14 +NCAA Basketball Final Four 97,PS,1997,Sports,Mindscape,0.08,0.05,0,0.01,0.14 +Ecco the Dolphin: Defender of the Future,PS2,2002,Adventure,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Heroes over Europe,X360,2009,Simulation,Ubisoft,0.1,0.03,0,0.01,0.14 +The Bombing Islands,PS,1997,Platform,Kemco,0.08,0.05,0,0.01,0.14 +Earth Defense Force 2: Invaders from Planet Space,PSP,2011,Action,D3Publisher,0,0,0.14,0,0.14 +Bejeweled 3,PS3,,Puzzle,Unknown,0.13,0,0,0.01,0.14 +Monster Jam,DS,2007,Racing,Activision,0.13,0,0,0.01,0.14 +Robots,DS,2005,Action,Vivendi Games,0.12,0.01,0,0.01,0.14 +Gyakuten Saiban 2,GBA,2002,Action,Capcom,0,0,0.14,0,0.14 +Godzilla: Save the Earth,XB,2004,Fighting,Atari,0.1,0.03,0,0,0.14 +Skylanders Giants,3DS,2012,Action,Activision,0.12,0.01,0,0.01,0.14 +Eragon,X360,2006,Action,Vivendi Games,0.12,0.01,0,0.01,0.14 +Micro Machines,PS2,2002,Racing,Atari,0.07,0.05,0,0.02,0.14 +Detective Barbie: The Mystery Cruise,PS,1999,Adventure,Mattel Interactive,0.08,0.05,0,0.01,0.14 +Jim Henson's the Muppets: On With the Show!,GBA,2003,Action,TDK Mediactive,0.1,0.04,0,0,0.14 +Desire,SAT,1997,Adventure,Imadio,0,0,0.14,0,0.14 +Valhalla Knights: Eldar Saga,Wii,2009,Role-Playing,Rising Star Games,0.1,0.01,0.01,0.01,0.14 +Lips: I Love The 80s,X360,2010,Misc,Microsoft Game Studios,0,0.12,0,0.02,0.14 +Monster Hunter Diary: Poka Poka Airou Village DX,3DS,2015,Action,Capcom,0,0,0.14,0,0.14 +Frank Thomas Big Hurt Baseball,PS,1996,Sports,Acclaim Entertainment,0.08,0.05,0,0.01,0.14 +Tim Burton's The Nightmare Before Christmas: The Pumpkin King,GBA,2005,Platform,Disney Interactive Studios,0.1,0.04,0,0,0.14 +Power Pro Kun Pocket 8,DS,2005,Sports,Konami Digital Entertainment,0,0,0.14,0,0.14 +Sid Meier's Pirates!,XB,2005,Strategy,Take-Two Interactive,0.11,0.03,0,0.01,0.14 +Enclave,XB,2002,Adventure,Swing! Entertainment,0.11,0.03,0,0.01,0.14 +Bottom of the 9th,PS,1996,Sports,Konami Digital Entertainment,0.08,0.05,0,0.01,0.14 +Pro Yaky? Spirits 2014,PS3,2014,Sports,Konami Digital Entertainment,0,0,0.14,0,0.14 +Dino Crisis 3,XB,2003,Action,Capcom,0.08,0.03,0.03,0,0.14 +Syberia,DS,2008,Action,Mindscape,0.1,0.02,0,0.01,0.14 +Zoobles! Spring to Life!,DS,2011,Misc,Activision,0.1,0.02,0,0.01,0.14 +NFL Blitz 20-03,GC,2002,Sports,Midway Games,0.11,0.03,0,0,0.14 +The King of Fighters '94 (CD),NG,1993,Fighting,SNK,0,0,0.14,0,0.14 +The Walking Dead: Season Two,XOne,2014,Adventure,Telltale Games,0.08,0.05,0,0.01,0.14 +Master Jin Jin's IQ Challenge,DS,2006,Misc,505 Games,0.13,0,0,0.01,0.14 +The Darkness II,PC,2012,Shooter,Take-Two Interactive,0.1,0.03,0,0.01,0.14 +Create,X360,2010,Action,Electronic Arts,0.1,0.03,0,0.01,0.14 +Karaoke Revolution Glee: Volume 3,X360,2011,Misc,Konami Digital Entertainment,0.13,0,0,0.01,0.14 +Barbie Explorer,PS,2001,Platform,Unknown,0.08,0.05,0,0.01,0.14 +Rango: The Video Game,Wii,2011,Action,Electronic Arts,0.08,0.04,0,0.01,0.14 +Disney's Chicken Little,XB,2005,Platform,Disney Interactive Studios,0.1,0.03,0,0,0.14 +Power Gig: Rise of the SixString,PS3,2010,Misc,Unknown,0.13,0,0,0.01,0.14 +Transformers: Prime,WiiU,2012,Action,Activision,0.09,0.03,0,0.01,0.14 +Agile Warrior F-111X,PS,1995,Simulation,Virgin Interactive,0.08,0.05,0,0.01,0.14 +NCIS,X360,2011,Adventure,Ubisoft,0.1,0.03,0,0.01,0.14 +Jikkyou Powerful Pro Yakyuu Wii,Wii,2007,Sports,Konami Digital Entertainment,0,0,0.14,0,0.14 +Reality Fighters,PSV,2012,Fighting,Sony Computer Entertainment,0.06,0.06,0,0.03,0.14 +Dynasty Warriors 7: Empires,PS3,2012,Action,Ubisoft Annecy,0,0,0.14,0,0.14 +Cabela's African Safari,X360,2006,Sports,Activision Value,0.13,0,0,0.01,0.14 +Ben 10 Galactic Racing,DS,2011,Racing,D3Publisher,0.1,0.03,0,0.01,0.14 +College Hoops 2K8,PS3,2007,Sports,Take-Two Interactive,0.13,0,0,0.01,0.14 +Super Puzzle Fighter II Turbo,PS,1996,Puzzle,Virgin Interactive,0.08,0.05,0,0.01,0.14 +Ninjatown,DS,2008,Strategy,SouthPeak Games,0.12,0,0,0.01,0.14 +Star Wars: Jedi Power Battles,GBA,2002,Action,THQ,0.1,0.04,0,0,0.14 +Ultimate Muscle - The Kinnikuman Legacy: Legends vs New Generation,GC,2002,Fighting,Namco Bandai Games,0.04,0.01,0.08,0,0.14 +Hard Rock Casino,PSP,2007,Misc,Oxygen Interactive,0.12,0,0,0.01,0.14 +Space Venus starring Morning Musume,PS2,2001,Misc,Sony Music Entertainment,0,0,0.14,0,0.14 +To Heart,PS,1999,Adventure,Aqua Plus,0,0,0.13,0.01,0.14 +Wild ARMs XF,PSP,2007,Role-Playing,505 Games,0.07,0,0.06,0.01,0.14 +Doukyuusei,TG16,1995,Adventure,NEC,0,0,0.14,0,0.14 +RockMan & Forte,SNES,1998,Platform,Capcom,0,0,0.14,0,0.14 +Persona 4: Arena Ultimax,PS3,2014,Fighting,Atlus,0,0.01,0.13,0,0.14 +NBA 2K13,WiiU,2012,Sports,Take-Two Interactive,0.08,0.04,0,0.01,0.14 +Science Papa,Wii,2009,Misc,Activision,0.12,0.01,0,0.01,0.14 +Yu-Gi-Oh! Nightmare Troubadour (JP sales),DS,2005,Action,Konami Digital Entertainment,0,0.04,0.1,0,0.14 +MySims Collection,Wii,2010,Misc,Electronic Arts,0.13,0,0,0.01,0.14 +Cities: Skylines,PC,2015,Simulation,Paradox Interactive,0,0.13,0,0.01,0.14 +Football Manager 2012,PSP,2011,Sports,Sega,0,0.1,0,0.04,0.14 +Ape Escape Academy (jp sales),PSP,2004,Misc,Sony Computer Entertainment,0,0,0.13,0,0.14 +FIFA 06 Soccer,GC,2005,Sports,Electronic Arts,0.11,0.03,0,0,0.14 +Rayman Arena,GC,2002,Racing,Ubisoft,0.11,0.03,0,0,0.14 +PaRappa The Rapper,PSP,2006,Misc,Sony Computer Entertainment,0.1,0,0.02,0.01,0.14 +4x4 EVO 2,GC,2002,Racing,Vivendi Games,0.11,0.03,0,0,0.14 +X-Blades,PS3,2009,Action,SouthPeak Games,0.07,0.03,0.02,0.02,0.14 +Pro Yakyuu Netsu Star 2006,PS2,2006,Sports,Namco Bandai Games,0,0,0.14,0,0.14 +The History Channel: Civil War - A Nation Divided,X360,2006,Shooter,Activision,0.13,0,0,0.01,0.14 +Zetta Hero Project: Unlosing Ranger vs. Darkdeath Evilman,PSP,2010,Role-Playing,Nippon Ichi Software,0.07,0,0.06,0.01,0.14 +Cyber Sled,PS,1995,Action,Sony Computer Entertainment,0,0,0.13,0.01,0.14 +Puyo Puyo!! 20th Anniversary,DS,2011,Puzzle,Sega,0,0,0.14,0,0.14 +Famista Returns,3DS,2015,Sports,Namco Bandai Games,0,0,0.14,0,0.14 +Bust-A-Move Deluxe,PSP,2006,Puzzle,505 Games,0.13,0,0,0.01,0.14 +I Spy: Universe,DS,2010,Puzzle,Scholastic Inc.,0.13,0,0,0.01,0.14 +Shining Soul,GBA,2002,Role-Playing,Atari,0.03,0.01,0.09,0,0.14 +Littlest Pet Shop: Spring,DS,2009,Simulation,Electronic Arts,0.12,0,0,0.01,0.14 +The Amazing Race,Wii,2010,Misc,Ubisoft,0.13,0,0,0.01,0.14 +Alvin and the Chipmunks,DS,2007,Misc,Brash Entertainment,0.12,0,0,0.01,0.14 +Far Cry: Primal,PC,2016,Action,Ubisoft,0.04,0.09,0,0.01,0.14 +Bejeweled 3,X360,,Puzzle,Unknown,0.13,0,0,0.01,0.14 +Need for Speed Underground 2,DS,2005,Racing,Electronic Arts,0.11,0.02,0,0.01,0.14 +Dead Rising 2,PC,2010,Action,Capcom,0.1,0.02,0,0.01,0.14 +Let's Cheer,X360,2011,Misc,Take-Two Interactive,0.12,0,0,0.01,0.14 +Happy Feet,Wii,2006,Action,Midway Games,0.12,0,0,0.01,0.14 +In the Hunt,PS,1995,Shooter,THQ,0.03,0.02,0.07,0.01,0.14 +Daytona USA Championship Circuit Edition,SAT,1995,Racing,Sega,0,0,0.14,0,0.14 +Major League Baseball 2K8,Wii,2008,Sports,Take-Two Interactive,0.13,0,0,0.01,0.14 +Marvel vs. Capcom 2: New Age of Heroes,XB,2002,Fighting,Capcom,0.09,0.03,0.01,0,0.14 +SNK vs. Capcom: The Match of the Millennium,PS2,2006,Fighting,Sega,0,0.02,0,0.12,0.14 +BlazBlue: Chrono Phantasma Extend,PS4,2015,Action,PQube,0.07,0.03,0.02,0.02,0.14 +Alone in the Dark: Inferno,PS3,2008,Adventure,Atari,0.09,0.03,0,0.02,0.14 +Rogue Warrior,PS3,2009,Shooter,Bethesda Softworks,0.11,0.02,0,0.01,0.14 +Singstar: Ultimate Party,PS3,2014,Misc,Sony Computer Entertainment Europe,0,0.12,0,0.02,0.14 +The X-Factor,PS3,2010,Misc,Deep Silver,0,0.1,0,0.03,0.14 +Fear Factor: Unleashed,GBA,2004,Action,Hip Interactive,0.1,0.04,0,0,0.14 +Avatar: The Last Airbender - The Burning Earth,X360,2007,Action,THQ,0.11,0.01,0,0.01,0.14 +Vampire Moon: The Mystery of the Hidden Sun,DS,2010,Adventure,City Interactive,0.12,0.01,0,0.01,0.14 +Paws & Claws: Pet Vet 2,DS,2007,Simulation,THQ,0.13,0,0,0.01,0.14 +G.I. Joe: The Rise of Cobra,DS,2009,Action,Electronic Arts,0.11,0.01,0,0.01,0.14 +Football Manager 2014,PSV,2013,Sports,Sega,0,0.1,0,0.04,0.14 +BIT.TRIP SAGA,3DS,2011,Misc,Rising Star Games,0.09,0.04,0,0.01,0.14 +Touch My Katamari,PSV,2011,Puzzle,Namco Bandai Games,0.08,0.04,0,0.02,0.14 +MotoGP '06,X360,2006,Racing,THQ,0.11,0.01,0,0.01,0.14 +Houshinengi,PS,1998,Strategy,Tecmo Koei,0,0,0.13,0.01,0.14 +7th Dragon,DS,2009,Role-Playing,Sega,0,0,0.14,0,0.14 +Pet Pals: Animal Doctor,Wii,2008,Simulation,JoWood Productions,0.13,0,0,0.01,0.14 +LEGO Island Xtreme Stunts,GBA,2002,Racing,LEGO Media,0.1,0.04,0,0,0.14 +Cruise Ship Vacation Games,Wii,2009,Puzzle,Avanquest,0.13,0,0,0.01,0.14 +Yu-Gi-Oh! GX: Tag Force,PSP,2006,Strategy,Konami Digital Entertainment,0.09,0.03,0,0.02,0.14 +Gourmet Chef: Cook Your Way to Fame,DS,2008,Misc,Ubisoft,0.13,0,0,0.01,0.14 +Learn Math,DS,2009,Puzzle,DreamCatcher Interactive,0.13,0,0,0.01,0.14 +Nitrobike,Wii,2008,Racing,Ubisoft,0.11,0.01,0,0.01,0.14 +Magnetica,DS,2006,Puzzle,Nintendo,0.08,0.01,0.03,0.01,0.14 +World Soccer Winning Eleven 9 Bonus Pack,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.14,0,0.14 +UEFA Euro 2004: Portugal,PS2,2004,Sports,Electronic Arts,0.07,0.05,0,0.02,0.14 +Hot Wheels: World Race,GBA,2003,Racing,THQ,0.1,0.04,0,0,0.14 +MLB 14: The Show,PSV,2014,Sports,Sony Computer Entertainment America,0.11,0,0,0.02,0.14 +Dragon Age Origins: Awakening,PC,2010,Role-Playing,Electronic Arts,0.01,0.1,0,0.02,0.14 +Scene It? Bright Lights! Big Screen!,X360,2009,Misc,Warner Bros. Interactive Entertainment,0.12,0,0,0.01,0.14 +NBA Jam,XB,2003,Sports,Acclaim Entertainment,0.1,0.03,0,0,0.14 +Shining Resonance,PS3,2014,Role-Playing,Sega,0,0,0.14,0,0.14 +World Tour Soccer 2002,PS2,2001,Sports,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Interactive Sampler Disc 6,PS,1997,Misc,Sony Computer Entertainment,0.08,0.05,0,0.01,0.14 +Let's Play Ballerina,DS,2010,Sports,Deep Silver,0.13,0,0,0.01,0.14 +Wild Earth: African Safari,Wii,2008,Simulation,Majesco Entertainment,0.11,0.02,0,0.01,0.14 +Apex,XB,2003,Racing,Atari,0.1,0.03,0,0,0.14 +Kamen Rider Battle: Ganbaride,DS,2010,Strategy,Namco Bandai Games,0,0,0.14,0,0.14 +Tomb Raider: The Prophecy,GBA,2002,Action,Ubisoft,0.1,0.04,0,0,0.14 +Vampire Night,PS2,2001,Shooter,Sony Computer Entertainment,0.07,0.05,0,0.02,0.14 +Kororinpa: Marble Mania,Wii,2006,Puzzle,Nintendo,0.08,0.02,0.03,0.01,0.14 +Open Season,DS,2006,Platform,Ubisoft,0.12,0,0,0.01,0.14 +Guilty Gear,PS,1998,Fighting,Virgin Interactive,0.03,0.02,0.07,0.01,0.14 +Battlefield: Hardline,PC,2015,Shooter,Electronic Arts,0,0.13,0,0.01,0.14 +Game Party: Champions,WiiU,2012,Action,Warner Bros. Interactive Entertainment,0.09,0.03,0,0.01,0.14 +Divinity II: The Dragon Knight Saga,X360,2010,Role-Playing,Focus Home Interactive,0.11,0.02,0,0.01,0.14 +World Championship Poker 2: Featuring Howard Lederer,PSP,2005,Misc,505 Games,0.12,0,0,0.01,0.14 +Mary-Kate and Ashley: Crush Course,PS,2001,Action,Acclaim Entertainment,0.08,0.05,0,0.01,0.14 +NHL Breakaway 98,PS,1996,Sports,Acclaim Entertainment,0.08,0.05,0,0.01,0.14 +Disney's Cinderella: Magical Dreams,GBA,,Platform,Disney Interactive Studios,0.1,0.04,0,0,0.14 +Top Shot Arcade,Wii,2011,Shooter,Activision,0.13,0,0,0.01,0.14 +Imagine: Fashion Stylist,DS,2010,Simulation,Ubisoft,0.13,0,0,0.01,0.14 +Pro Evolution Soccer 2015,XOne,2014,Sports,Konami Digital Entertainment,0.02,0.1,0,0.01,0.14 +Red Orchestra 2: Heroes of Stalingrad,PC,2011,Shooter,Tripwire Interactive,0.04,0.07,0,0.02,0.14 +Tiger Woods PGA Tour 2005,GC,2004,Sports,Electronic Arts,0.1,0.03,0,0,0.14 +Deepak Chopra's Leela,Wii,2011,Misc,THQ,0.11,0.01,0,0.01,0.14 +Tom Clancy's Ghost Recon,Wii,2010,Shooter,Ubisoft,0.11,0.01,0,0.01,0.14 +007: Quantum of Solace,DS,2008,Action,Activision,0.11,0.01,0,0.01,0.14 +Salt Lake 2002,PS2,2002,Sports,Eidos Interactive,0.07,0.05,0,0.02,0.14 +ESPN MLB Baseball,XB,2004,Sports,Sega,0.1,0.03,0,0,0.14 +NCIS,Wii,2011,Adventure,Ubisoft,0.08,0.04,0,0.01,0.14 +Little League World Series Baseball 2009,DS,2009,Sports,Activision,0.13,0,0,0.01,0.14 +Gladius,XB,2003,Strategy,Activision,0.1,0.03,0,0,0.14 +Legends of Wrestling,XB,2002,Fighting,Acclaim Entertainment,0.1,0.03,0,0,0.14 +Queen's Gate: Spiral Chaos,PSP,2011,Role-Playing,Namco Bandai Games,0,0,0.14,0,0.14 +Nayuta no Kiseki,PSP,2012,Action,Nihon Falcom Corporation,0,0,0.14,0,0.14 +Back At The Barnyard: Slop Bucket Games,DS,2008,Sports,THQ,0.12,0,0,0.01,0.14 +Quick Yoga Training,DS,2008,Misc,Ubisoft,0.13,0,0,0.01,0.14 +Fashion Studio: Paris Collection,DS,2009,Misc,Ubisoft,0.13,0,0,0.01,0.13 +Legendary,PS3,2008,Shooter,Atari,0.08,0.03,0,0.02,0.13 +Spy Hunter 2,XB,2003,Racing,Midway Games,0.1,0.03,0,0,0.13 +Peppa Pig: Fun and Games,Wii,2010,Misc,Ubisoft,0,0.12,0,0.02,0.13 +Backyard Soccer,PS,2001,Sports,Infogrames,0.07,0.05,0,0.01,0.13 +Final Fantasy XI: Rise of the Zilart,PS2,2003,Role-Playing,Square Enix,0,0,0.13,0,0.13 +James Bond 007: Nightfire,GBA,2003,Shooter,Electronic Arts,0.1,0.04,0,0,0.13 +Nobunaga no Yabou: Tendou,PS3,2010,Strategy,Tecmo Koei,0,0,0.13,0,0.13 +Medalot 7,3DS,2012,Action,Rocket Company,0,0,0.13,0,0.13 +Bio FREAKS,PS,1998,Action,GT Interactive,0.07,0.05,0,0.01,0.13 +Castlevania Chronicles,PS,2001,Platform,Konami Digital Entertainment,0.07,0.05,0,0.01,0.13 +Suzumiya Haruhi no Tomadoi,PS2,2008,Adventure,Banpresto,0,0,0.13,0,0.13 +MLB Power Pros 2008,Wii,2008,Sports,Konami Digital Entertainment,0.12,0,0.01,0.01,0.13 +NHL 2K8,X360,2007,Sports,Take-Two Interactive,0.11,0.01,0,0.01,0.13 +Dokapon Kingdom,Wii,2008,Role-Playing,Sting,0.12,0,0,0.01,0.13 +Bratz,GBA,2002,Platform,Ubisoft,0.1,0.04,0,0,0.13 +Go Play: Circus Star,Wii,2009,Action,Majesco Entertainment,0.12,0,0,0.01,0.13 +King Arthur,PS2,2004,Action,Konami Digital Entertainment,0.07,0.05,0,0.02,0.13 +Winter Stars,Wii,2011,Sports,Deep Silver,0.06,0.07,0,0.01,0.13 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 1: CR Shinseiki Evangelion,PS2,2005,Misc,D3Publisher,0,0,0.13,0,0.13 +The Guy Game,PS2,2004,Misc,Gathering of Developers,0.07,0.05,0,0.02,0.13 +Rurouni Kenshin: Enjou! Kyoto Rinne,PS2,2006,Action,Banpresto,0,0,0.13,0,0.13 +Blade II,XB,2002,Action,Activision,0.1,0.03,0,0,0.13 +Suikoden: Tsumugareshi Hyakunen no Toki,PSP,2012,Role-Playing,Konami Digital Entertainment,0,0,0.13,0,0.13 +Baseball Advance,GBA,2002,Sports,Sega,0.1,0.04,0,0,0.13 +Shonen Jump's One Piece: Grand Battle,PS2,2005,Fighting,Atari,0.07,0.05,0,0.02,0.13 +Retro Atari Classics,DS,2005,Misc,Atari,0.12,0,0,0.01,0.13 +NHL 2K9,PS3,2008,Sports,Take-Two Interactive,0.11,0.01,0,0.01,0.13 +Pro Yaky? Spirits 6,PS2,2009,Sports,Konami Digital Entertainment,0,0,0.13,0,0.13 +Freddi Fish: ABC under the sea,DS,2008,Misc,Atari,0.13,0,0,0.01,0.13 +Puzzle Kingdoms,DS,2009,Puzzle,Zoo Digital Publishing,0.12,0,0,0.01,0.13 +Shovel Knight,3DS,2015,Platform,Yacht Club Games,0.07,0.04,0.01,0.01,0.13 +Hyperdimension Idol Neptunia PP,PSV,2013,Misc,Namco Bandai Games,0.04,0.03,0.04,0.02,0.13 +Paperboy / Rampage,GBA,2005,Misc,Zoo Digital Publishing,0.1,0.04,0,0,0.13 +Shiren the Wanderer 4 - God's Eye and the Demon's Navel,DS,2010,Role-Playing,Spike,0,0,0.13,0,0.13 +Ben 10 Galactic Racing,3DS,2011,Racing,D3Publisher,0.07,0.06,0,0.01,0.13 +Sentou Kokka Air Land Battle,PS,1995,Strategy,Sony Computer Entertainment,0,0,0.13,0.01,0.13 +NTRA Breeders' Cup World Thoroughbred Championships,PS2,2005,Simulation,Bethesda Softworks,0.07,0.05,0,0.02,0.13 +Tak 2: The Staff of Dreams,XB,2004,Platform,THQ,0.1,0.03,0,0,0.13 +Hulk Hogan's Main Event,X360,2011,Fighting,505 Games,0.1,0.02,0,0.01,0.13 +Transformers: Devastation,XOne,2015,Action,Activision,0.09,0.03,0,0.01,0.13 +Euro Truck Simulator 2,PC,2012,Action,SCS Software,0,0.12,0,0.02,0.13 +DmC: Devil May Cry,XOne,2015,Action,Capcom,0.08,0.04,0,0.01,0.13 +WipeOut 3 The Game,WiiU,2012,Action,Activision,0.12,0,0,0.01,0.13 +Ys: The Ark of Napishtim,PS2,2005,Role-Playing,Konami Digital Entertainment,0.07,0.05,0,0.02,0.13 +Peter Jackson's King Kong: The Official Game of the Movie,DS,2005,Action,Ubisoft,0.12,0,0,0.01,0.13 +Brain Assist,DS,2007,Misc,Sega,0.12,0,0,0.01,0.13 +Azure Dreams,PS,1997,Role-Playing,Konami Digital Entertainment,0.07,0.05,0,0.01,0.13 +Rumble Roses XX,X360,2006,Fighting,Konami Digital Entertainment,0.07,0.01,0.04,0.01,0.13 +Space Camp,Wii,2009,Action,Activision,0.12,0,0,0.01,0.13 +SingStar Latino,PS2,2007,Misc,Sony Computer Entertainment,0.07,0.05,0,0.02,0.13 +Bakugan: Battle Trainer,DS,2010,Action,Activision,0.12,0,0,0.01,0.13 +Phantom Brave: We Meet Again,Wii,2009,Role-Playing,Nippon Ichi Software,0.12,0,0.01,0.01,0.13 +Monster Rancher DS,DS,2008,Role-Playing,Tecmo Koei,0.08,0,0.05,0.01,0.13 +Kurt Warner's Arena Football Unleashed,PS,2000,Sports,Midway Games,0.07,0.05,0,0.01,0.13 +Suite PreCure: Melody Collection,DS,2011,Misc,Namco Bandai Games,0,0,0.13,0,0.13 +Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon,PS2,2008,Role-Playing,Atlus,0.07,0.05,0,0.02,0.13 +NHL 2K9,PS2,2008,Sports,Take-Two Interactive,0.07,0.05,0,0.02,0.13 +Venetica,X360,2010,Role-Playing,DTP Entertainment,0.09,0.03,0,0.01,0.13 +Disney's Kim Possible: Kimmunicator,DS,2005,Platform,Disney Interactive Studios,0.11,0.01,0,0.01,0.13 +James Bond 007: Legends,WiiU,2012,Shooter,Activision,0.07,0.05,0,0.01,0.13 +Rogue Ops,XB,2003,Action,Kemco,0.1,0.03,0,0,0.13 +NBA Hoopz,PS,2001,Sports,Midway Games,0.07,0.05,0,0.01,0.13 +Transworld Surf,XB,,Sports,Atari,0.1,0.03,0,0,0.13 +Rugby 15,PS3,2015,Sports,Bigben Interactive,0.02,0.09,0,0.02,0.13 +MLB 11: The Show,PS2,2011,Sports,Sony Computer Entertainment,0.06,0.05,0,0.02,0.13 +Castrol Honda Superbike Racing,PS,1998,Racing,THQ,0.07,0.05,0,0.01,0.13 +History Civil War: Secret Missions,X360,2008,Shooter,Activision,0.12,0,0,0.01,0.13 +Army Men: Green Rogue,PS2,2001,Action,3DO,0.06,0.05,0,0.02,0.13 +My Spanish Coach,PSP,2008,Misc,Ubisoft,0.12,0,0,0.01,0.13 +Chessmaster,XB,2004,Misc,Ubisoft,0.1,0.03,0,0,0.13 +Over the Hedge: Hammy Goes Nuts!,DS,2006,Platform,Activision,0.12,0,0,0.01,0.13 +Fatal Inertia,X360,2007,Racing,Tecmo Koei,0.12,0,0,0.01,0.13 +Superman: The Man of Steel,XB,2002,Action,Atari,0.1,0.03,0,0,0.13 +Ken to Mahou to Gakuen Mono. 3,PSP,2010,Role-Playing,Acquire,0,0,0.13,0,0.13 +Greg Hastings Paintball 2,Wii,2010,Shooter,505 Games,0.12,0,0,0.01,0.13 +The Flintstones: Bedrock Bowling,PS,2000,Sports,Ubisoft,0.07,0.05,0,0.01,0.13 +Teenage Mutant Ninja Turtles: Danger of the Ooze,3DS,2014,Adventure,Activision,0.08,0.04,0,0.01,0.13 +NHL 2003,GC,2002,Sports,Electronic Arts,0.1,0.03,0,0,0.13 +Chicken Run,PS,2000,Adventure,Eidos Interactive,0.07,0.05,0,0.01,0.13 +Scene It? Bright Lights! Big Screen!,PS3,2009,Misc,Warner Bros. Interactive Entertainment,0.1,0.01,0,0.01,0.13 +My Baby: First Steps,Wii,2009,Simulation,SouthPeak Games,0.12,0,0,0.01,0.13 +Pro Baseball Spirits 2015,PSV,2015,Action,Konami Digital Entertainment,0,0,0.13,0,0.13 +Shining Force III,SAT,1997,Strategy,Sega,0,0,0.13,0,0.13 +Jikkyou Powerful Pro Yakyuu 2011 Ketteiban,PSP,2011,Sports,Konami Digital Entertainment,0,0,0.13,0,0.13 +Tales of the Heroes: Twin Brave,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.13,0,0.13 +WWE Survivor Series,GBA,2004,Fighting,THQ,0.09,0.04,0,0,0.13 +Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS 2,DS,2006,Action,Sega,0,0,0.13,0,0.13 +Super Robot Wars BX,3DS,2015,Action,Namco Bandai Games,0,0,0.13,0,0.13 +Persona 4: Arena,X360,2012,Fighting,Atlus,0.08,0.02,0.03,0.01,0.13 +Tomb Raider: Legend,XB,2006,Action,Eidos Interactive,0.1,0.03,0,0,0.13 +Nagano Winter Olympics '98,PS,1997,Sports,Konami Digital Entertainment,0.07,0.05,0,0.01,0.13 +Destroy All Humans! Path of the Furon,X360,2008,Action,THQ,0.08,0.04,0,0.01,0.13 +Winning Post 5,PS2,2001,Sports,Tecmo Koei,0,0,0.13,0,0.13 +Star Wars: Lethal Alliance,PSP,2006,Action,Ubisoft,0.11,0.01,0,0.01,0.13 +Midnight Mysteries: The Edgar Allan Poe Conspiracy,DS,2010,Adventure,Foreign Media Games,0.08,0.04,0,0.01,0.13 +All Star Cheer Squad 2,Wii,2009,Sports,THQ,0.12,0,0,0.01,0.13 +Frogger Beyond,GC,2002,Platform,Konami Digital Entertainment,0.1,0.03,0,0,0.13 +RPG Maker II,PS2,2002,Role-Playing,Enterbrain,0.06,0.05,0,0.02,0.13 +Resident Evil: Revelations 2,PSV,2015,Action,Capcom,0.01,0.05,0.06,0.01,0.13 +SpongeBob's Surf & Skate Roadtrip,DS,2011,Action,THQ,0.11,0.02,0,0.01,0.13 +Destruction Derby Arenas,PS2,2004,Racing,Sony Computer Entertainment,0.06,0.05,0,0.02,0.13 +Cabela's Dangerous Hunts 2009,X360,2008,Sports,Activision,0.12,0,0,0.01,0.13 +The Unholy War,PS,1998,Strategy,Eidos Interactive,0.07,0.05,0,0.01,0.13 +Chuck E. Cheese's Game Room,DS,2010,Misc,UFO Interactive,0.12,0,0,0.01,0.13 +Wantame Music Channel: Doko Demo Style,DS,2007,Misc,Capcom,0,0,0.13,0,0.13 +Disney's Winnie the Pooh's Rumbly Tumbly Adventure,GBA,2005,Platform,Ubisoft,0.09,0.03,0,0,0.13 +Shaman King: Power of Spirit,PS2,2004,Adventure,Konami Digital Entertainment,0.06,0.05,0,0.02,0.13 +Eat Lead: The Return of Matt Hazard,PS3,2009,Shooter,D3Publisher,0.09,0.02,0,0.01,0.13 +Attack on Titan (KOEI),PSV,2016,Action,Tecmo Koei,0,0,0.13,0,0.13 +Soccer Tsuku DS: World Challenge 2010,DS,2010,Sports,Sega,0,0,0.13,0,0.13 +Family Fortunes,Wii,2009,Misc,Mindscape,0,0.12,0,0.01,0.13 +Megamind: The Blue Defender,PSP,2010,Adventure,THQ,0.08,0.03,0,0.02,0.13 +Contra III: The Alien Wars,SNES,1992,Shooter,Konami Digital Entertainment,0,0,0.13,0,0.13 +Dead to Rights: Reckoning,PSP,2005,Shooter,Electronic Arts,0.12,0,0,0.01,0.13 +The BIGS 2,PS3,2009,Sports,Take-Two Interactive,0.12,0,0,0.01,0.13 +Slime MoriMori Dragon Quest 3: Taikaizoku to Shippo Dan,3DS,2011,Role-Playing,Square Enix,0,0,0.13,0,0.13 +Amagami,PS2,2009,Adventure,Enterbrain,0,0,0.13,0,0.13 +Diablo II,PC,2000,Role-Playing,Havas Interactive,0.01,0.09,0,0.02,0.13 +How to Train Your Dragon 2,PS3,2014,Adventure,Little Orbit,0.03,0.08,0,0.02,0.13 +NBA 08,PS3,2007,Sports,Sony Computer Entertainment,0.12,0,0,0.01,0.13 +The Smurfs 2,X360,2013,Platform,Ubisoft,0.03,0.09,0,0.01,0.13 +NeverDead,PS3,2012,Shooter,Konami Digital Entertainment,0.06,0.04,0.01,0.02,0.13 +No Fear Downhill Mountain Biking,PS,1998,Sports,Codemasters,0.07,0.05,0,0.01,0.13 +Fire ProWrestling,GBA,2001,Fighting,Spike,0.09,0.03,0,0,0.13 +Eternal Poison (JP sales),PS2,2008,Role-Playing,Banpresto,0,0,0.13,0,0.13 +Mission: Impossible - Operation Surma,XB,2003,Platform,Atari,0.1,0.03,0,0,0.13 +Naruto Shippuden: Kizuna Drive,PSP,2010,Action,Namco Bandai Games,0.04,0.02,0.05,0.02,0.13 +The IdolM@ster: One for All,PS3,2014,Misc,Namco Bandai Games,0,0,0.13,0,0.13 +MX 2002 Featuring Ricky Carmichael,XB,2001,Racing,THQ,0.1,0.03,0,0,0.13 +Indianapolis 500 Legends,Wii,2007,Racing,Destineer,0.12,0,0,0.01,0.13 +Romance of the Three Kingdoms IV: Wall of Fire,PS,1995,Strategy,Tecmo Koei,0.05,0.03,0.04,0.01,0.13 +Illusion of Gaia,SNES,1993,Role-Playing,Nintendo,0,0,0.13,0,0.13 +Steel Battalion: Heavy Armor,X360,2012,Misc,Capcom,0.08,0.03,0.02,0.01,0.13 +Academy of Champions: Soccer,Wii,2009,Sports,Ubisoft,0.1,0.02,0,0.01,0.13 +Mega Man Anniversary Collection,XB,2005,Platform,Capcom,0.1,0.03,0,0,0.13 +Disney Princess: Enchanting Storybooks,DS,2011,Misc,THQ,0.08,0.04,0,0.01,0.13 +Sally's Salon,DS,2008,Simulation,Capcom,0.12,0,0,0.01,0.13 +The Oregon Trail,3DS,2011,Simulation,Crave Entertainment,0.12,0,0,0.01,0.13 +Disruptor,PS,1995,Shooter,Interplay,0.07,0.05,0,0.01,0.13 +NBA Ballers: Chosen One,PS3,2008,Sports,Midway Games,0.12,0,0,0.01,0.13 +Lovely Lisa and Friends,DS,2010,Simulation,Tomy Corporation,0.12,0,0,0.01,0.13 +Hasbro Family Fun Pack,XOne,2015,Misc,Ubisoft,0.1,0.02,0,0.01,0.13 +Shrek Smash n' Crash Racing,GC,2006,Racing,Activision,0.1,0.03,0,0,0.13 +Under Night In-Birth,PS3,2014,Fighting,Nippon Ichi Software,0.06,0.02,0.04,0.02,0.13 +Drakengard 2,PS2,2005,Role-Playing,Ubisoft,0.06,0.05,0,0.02,0.13 +Street Fighter IV,PC,,Fighting,Capcom,0.07,0.04,0,0.02,0.13 +Grand Knights History,PSP,2011,Role-Playing,Marvelous Interactive,0,0,0.13,0,0.13 +Harvest Moon DS (jp sales),DS,2005,Simulation,Rising Star Games,0,0,0.13,0,0.13 +Summon Night: Twin Age,DS,2007,Role-Playing,Banpresto,0.07,0,0.05,0.01,0.13 +Sin and Punishment,N64,2000,Shooter,Nintendo,0,0,0.13,0,0.13 +NBA Jam 2000,N64,1999,Sports,Acclaim Entertainment,0.12,0.01,0,0,0.13 +Castlevania: Legacy of Darkness,N64,1999,Platform,Konami Digital Entertainment,0.06,0.02,0.05,0,0.13 +Just Dance: Disney Party,Wii,2012,Misc,Ubisoft,0.01,0.1,0,0.02,0.13 +Cabela's Alaskan Adventure,X360,2006,Sports,Activision,0.12,0,0,0.01,0.13 +Rango: The Video Game,X360,2011,Action,Electronic Arts,0.06,0.06,0,0.01,0.13 +Shrek Super Party,XB,2002,Misc,TDK Mediactive,0.1,0.03,0,0,0.13 +Sonic Riders,XB,2006,Racing,Sega,0.1,0.03,0,0,0.13 +Shimano Xtreme Fishing,Wii,2009,Sports,Mastiff,0.12,0,0,0.01,0.13 +The History Channel: Great Battles - Medieval,X360,2010,Strategy,Slitherine Software,0.08,0.04,0,0.01,0.13 +TRON: Evolution,PSP,2010,Action,Disney Interactive Studios,0.09,0.02,0,0.02,0.13 +Rally Fusion: Race of Champions,PS2,2002,Racing,Activision,0.06,0.05,0,0.02,0.13 +Barbie and the Three Musketeers,DS,2009,Adventure,Activision,0.12,0,0,0.01,0.13 +Secret Agent Clank,PSP,2008,Platform,Sony Computer Entertainment,0.04,0.03,0.04,0.02,0.13 +The House of the Dead,SAT,1997,Shooter,Sega,0,0,0.13,0,0.13 +DreamWorks Super Star Kartz,DS,2011,Racing,Activision,0.09,0.03,0,0.01,0.13 +RealSports Volleyball,2600,1981,Sports,Atari,0.12,0.01,0,0,0.13 +Heroes of the Pacific,XB,2005,Simulation,Codemasters,0.1,0.03,0,0,0.13 +Smart Boy's Gameroom,DS,2007,Misc,505 Games,0.12,0,0,0.01,0.13 +NightCaster,XB,2002,Action,Microsoft Game Studios,0.1,0.03,0,0,0.13 +RollerCoaster Tycoon,XB,2003,Strategy,Atari,0.1,0.03,0,0,0.13 +FIFA World Cup Germany 2006,GC,2006,Sports,Electronic Arts,0.1,0.03,0,0,0.13 +Hitman 2: Silent Assassin,GC,2003,Action,Eidos Interactive,0.1,0.03,0,0,0.13 +MLB 13: The Show,PSV,2013,Sports,Sony Computer Entertainment,0.11,0,0,0.02,0.13 +Nicktoons: MLB,X360,2011,Sports,Take-Two Interactive,0.12,0,0,0.01,0.13 +Digimon Racing,GBA,2004,Racing,Namco Bandai Games,0.09,0.03,0,0,0.13 +Ape Escape 3,PS2,2005,Platform,Sony Computer Entertainment,0.06,0.05,0,0.02,0.13 +Green Lantern: Rise of the Manhunters,X360,2011,Action,Warner Bros. Interactive Entertainment,0.07,0.05,0,0.01,0.13 +"Crouching Tiger, Hidden Dragon",PS2,2003,Action,Ubisoft,0.06,0.05,0,0.02,0.13 +Last Bronx,SAT,1996,Fighting,Sega,0,0,0.13,0,0.13 +Iridion II,GBA,2003,Shooter,Vivendi Games,0.09,0.03,0,0,0.13 +Momotaro Douchuuki,SAT,1997,Misc,Hudson Soft,0,0,0.13,0,0.13 +Brothers: A Tale of Two Sons,PS4,2015,Adventure,505 Games,0.03,0.08,0,0.02,0.13 +Tom Clancy's Splinter Cell: Double Agent,Wii,2006,Action,Ubisoft,0.1,0.01,0,0.01,0.13 +Whiplash,PS2,2003,Racing,Eidos Interactive,0.06,0.05,0,0.02,0.13 +BlazBlue: Continuum Shift II,PSP,2011,Fighting,PQube,0.03,0.02,0.07,0.01,0.13 +Backyard Sports Football: Rookie Rush,Wii,2010,Sports,Atari,0.12,0,0,0.01,0.13 +Warcraft III: Reign of Chaos,PC,2002,Strategy,Vivendi Games,0.03,0.08,0,0.02,0.13 +Farming Simulator 2011,PC,2010,Simulation,,0,0.13,0,0,0.13 +Margot's Word Brain,Wii,2008,Puzzle,Zoo Digital Publishing,0.12,0,0,0.01,0.13 +Spider-Man: Battle for New York,DS,2006,Platform,Activision,0.12,0,0,0.01,0.13 +Imagine: Fashion Designer,3DS,2011,Simulation,Ubisoft,0.1,0.02,0,0.01,0.13 +Pop'n Music Portable,PSP,2010,Misc,Konami Digital Entertainment,0,0,0.13,0,0.13 +Nintendo Puzzle Collection,GC,,Puzzle,Unknown,0,0,0.13,0,0.13 +Borderlands: Double Game Add-On Pack,X360,2010,Shooter,Take-Two Interactive,0.1,0.02,0,0.01,0.13 +Otogi: Myth of Demons,XB,2002,Action,Sega,0.08,0.02,0.03,0,0.13 +The Price is Right 2010 Edition,DS,2009,Misc,Ubisoft,0.12,0,0,0.01,0.13 +Army Men: Soldiers of Misfortune,Wii,2008,Shooter,Zoo Games,0.12,0,0,0.01,0.13 +Alter Echo,PS2,2003,Shooter,THQ,0.06,0.05,0,0.02,0.13 +Walt Disney Pictures Presents: The Wild,GBA,2006,Platform,Disney Interactive Studios,0.09,0.03,0,0,0.13 +Puzzle de Harvest Moon,DS,2007,Puzzle,Natsume,0.12,0,0,0.01,0.13 +Reader Rabbit Kindergarten,Wii,2010,Misc,Graffiti,0.12,0,0,0.01,0.13 +Onechanbara: Bikini Samurai Squad,X360,2006,Action,D3Publisher,0.11,0.01,0,0.01,0.13 +Metal Max 3,DS,2010,Role-Playing,Enterbrain,0,0,0.13,0,0.13 +Rock Band Track Pack Volume 1,PS2,2008,Misc,MTV Games,0.06,0.05,0,0.02,0.13 +Puyo Puyo!! 20th Anniversary,3DS,2011,Puzzle,Sega,0,0,0.13,0,0.13 +Hour of Victory,X360,2007,Shooter,Midway Games,0.1,0.01,0,0.01,0.13 +Namco Soccer Prime Goal,PS,1995,Sports,Sony Computer Entertainment,0,0,0.12,0.01,0.13 +NBA 08,PS2,2007,Sports,Sony Computer Entertainment,0.06,0.05,0,0.02,0.13 +Dragon Quest Heroes II: Twin Kings and the Prophecy's End,PS3,2016,Action,Square Enix,0,0,0.13,0,0.13 +Monster Hunter Frontier Online,X360,2010,Role-Playing,Capcom,0,0,0.13,0,0.13 +Green Lantern: Rise of the Manhunters,3DS,2011,Action,Warner Bros. Interactive Entertainment,0.09,0.03,0,0.01,0.13 +Shin Megami Tensei: Digital Devil Saga,PS2,2004,Role-Playing,Ghostlight,0.06,0.05,0,0.02,0.13 +7 Wonders of the Ancient World,DS,2007,Puzzle,Funsta,0.1,0.01,0,0.01,0.13 +Backyard Baseball '09,DS,2008,Sports,Atari,0.12,0,0,0.01,0.13 +Puppies 3D,3DS,2011,Misc,Ubisoft,0.08,0.04,0,0.01,0.13 +Jissen Pachi-Slot Hisshouhou! Aladdin II Evolution,PS2,2005,Misc,Sega,0,0,0.13,0,0.13 +Mystic Ark,SNES,1995,Role-Playing,Enix Corporation,0,0,0.13,0,0.13 +Just Cause 2,PC,2010,Action,Square Enix,0,0.1,0,0.03,0.13 +Ty the Tasmanian Tiger 2: Bush Rescue,GBA,2004,Platform,Electronic Arts,0.09,0.03,0,0,0.13 +Venetica,PS3,2010,Role-Playing,DTP Entertainment,0.07,0.04,0,0.02,0.13 +Teenage Mutant Ninja Turtles 2: Battle Nexus,XB,2004,Action,Konami Digital Entertainment,0.1,0.03,0,0,0.13 +LEGO Racers 2,PS2,2001,Racing,Electronic Arts,0.06,0.05,0,0.02,0.13 +Backyard Baseball,GC,2003,Sports,Infogrames,0.1,0.03,0,0,0.13 +Transformers: War for Cybertron -- Decepticons,DS,2010,Action,Activision,0.11,0.01,0,0.01,0.13 +Overlord: Raising Hell,PS3,2008,Action,Codemasters,0.07,0.04,0,0.02,0.13 +Sega GT,DC,2000,Racing,Sega,0,0,0.13,0,0.13 +Fuse (Insomniac),X360,2013,Shooter,Electronic Arts,0.08,0.04,0,0.01,0.13 +Cabela's Dangerous Hunts 2009,PS3,2008,Sports,Activision Value,0.12,0,0,0.01,0.13 +Legends of Wrestling,GC,2002,Fighting,Acclaim Entertainment,0.1,0.03,0,0,0.13 +Space Bust-A-Move,DS,2008,Puzzle,Square Enix,0.1,0.02,0,0.01,0.13 +Legend of the Guardians: The Owls of Ga'Hoole,Wii,2010,Action,Warner Bros. Interactive Entertainment,0.11,0.01,0,0.01,0.13 +Gunstar Heroes,GEN,1992,Shooter,Sega,0,0,0.13,0,0.13 +All-Star Baseball 2004,XB,2003,Sports,Acclaim Entertainment,0.1,0.03,0,0,0.13 +Tamagotchi no Pichi Pichi Omisecchi,DS,2010,Action,Namco Bandai Games,0,0,0.13,0,0.13 +Shining Wind,PS2,2007,Role-Playing,Sega,0,0,0.13,0,0.13 +Brothers in Arms: Double Time,Wii,2008,Shooter,Ubisoft,0.11,0,0,0.01,0.13 +Portal Runner,PS2,2001,Platform,3DO,0.06,0.05,0,0.02,0.13 +Pok?mon: For Ho-Oh the Bells Toll!: Game Boy Advance Video,GBA,2004,Misc,Nintendo,0.09,0.03,0,0,0.13 +Pro Evolution Soccer 2016,X360,2015,Sports,Konami Digital Entertainment,0.04,0.08,0,0.01,0.13 +Batman: Arkham Knight,PC,2015,Action,Warner Bros. Interactive Entertainment,0.08,0.03,0,0.01,0.13 +Warriors Orochi 2,PS2,2008,Action,Tecmo Koei,0.06,0.05,0,0.02,0.13 +Disney's Winnie the Pooh's Rumbly Tumbly Adventure,PS2,2005,Platform,Ubisoft,0.06,0.05,0,0.02,0.13 +Need for Speed: ProStreet,DS,2007,Racing,Electronic Arts,0.11,0.01,0,0.01,0.13 +Assault: Retribution,PS,1998,Action,Telstar,0.07,0.05,0,0.01,0.13 +Sengoku Basara 3 Utage,Wii,2011,Action,Capcom,0,0,0.13,0,0.13 +Spartan: Total Warrior,XB,2005,Action,Sega,0.1,0.03,0,0,0.13 +Gravity Rush Remastered,PS4,2015,Action,Sony Computer Entertainment,0.02,0.05,0.04,0.01,0.13 +Rock Band Track Pack Volume 2,PS3,2008,Misc,MTV Games,0.11,0,0,0.01,0.13 +City Crisis,PS2,2001,Simulation,Take-Two Interactive,0.06,0.05,0,0.02,0.13 +Zapper: One Wicked Cricket!,GC,2002,Platform,Infogrames,0.1,0.03,0,0,0.13 +Star Wars: Clone Wars,XB,2003,Shooter,LucasArts,0.1,0.03,0,0,0.13 +Assassination Classroom: Grand Siege on Kuro-sensei,3DS,2015,Action,Namco Bandai Games,0,0,0.13,0,0.13 +Dynasty Warriors 5 Empires,X360,2006,Action,Tecmo Koei,0.11,0.01,0,0.01,0.13 +High Rollers Casino,XB,2004,Misc,Mud Duck Productions,0.1,0.03,0,0,0.13 +Advent Rising,XB,2005,Action,THQ,0.1,0.03,0,0,0.13 +Surf Riders,PS,1999,Sports,Ubisoft,0.07,0.05,0,0.01,0.13 +Torino 2006,PS2,2006,Sports,Take-Two Interactive,0.06,0.05,0,0.02,0.13 +Nobunaga no Yabou: Ranseiki,PS2,2002,Strategy,Tecmo Koei,0,0,0.13,0,0.13 +Derby Stallion Advance,GBA,2002,Sports,Enterbrain,0,0,0.12,0,0.13 +PBR: Out of the Chute,Wii,2008,Sports,Crave Entertainment,0.12,0,0,0.01,0.13 +Monopoly Party,GC,2002,Misc,Infogrames,0.1,0.03,0,0,0.13 +LEGO Batman 2: DC Super Heroes,WiiU,2013,Action,Warner Bros. Interactive Entertainment,0.05,0.07,0,0.01,0.13 +Thor: God of Thunder,DS,2011,Action,Sega,0.09,0.03,0,0.01,0.13 +TOCA Race Driver 2: Ultimate Racing Simulator,XB,2004,Racing,Codemasters,0.09,0.03,0,0,0.13 +The Price is Right: Decades,Wii,2011,Misc,Ubisoft,0.12,0,0,0.01,0.13 +Snood,GBA,2001,Puzzle,"Destination Software, Inc",0.09,0.03,0,0,0.13 +The Sky Crawlers: Innocent Aces,Wii,2008,Simulation,Namco Bandai Games,0.09,0.02,0.01,0.01,0.13 +Avatar: The Last Airbender - Into the Inferno,DS,2008,Adventure,THQ,0.11,0.01,0,0.01,0.13 +Fit in Six,PS3,2011,Sports,Ubisoft,0.12,0,0,0.01,0.13 +Monster Jam: Urban Assault,PS2,2008,Racing,Activision,0.06,0.05,0,0.02,0.13 +Ice Age: Dawn of the Dinosaurs,X360,2009,Action,Activision,0.09,0.03,0,0.01,0.13 +DT Racer,PS2,2005,Racing,XS Games,0.06,0.05,0,0.02,0.13 +SimAnimals Africa,Wii,2009,Simulation,Electronic Arts,0.1,0.01,0,0.01,0.13 +Deepak Chopra's Leela,X360,2011,Misc,THQ,0.07,0.05,0,0.01,0.13 +Twister Mania,X360,2011,Misc,505 Games,0.1,0.01,0,0.01,0.13 +World Cup Golf: Professional Edition,PS,1995,Sports,U.S. Gold,0.07,0.05,0,0.01,0.13 +Black Dawn,PS,1996,Simulation,Virgin Interactive,0.07,0.05,0,0.01,0.13 +Soccer Tsuku: Pro Soccer Club o Tsukurou!,PS3,2013,Sports,Sega,0,0,0.13,0,0.13 +428: Fuusa Sareta Shibuya de,Wii,2008,Adventure,Sega,0,0,0.13,0,0.13 +Kelly Slater's Pro Surfer,GBA,2002,Sports,Activision,0.09,0.03,0,0,0.13 +Warriors of Might and Magic,PS,2001,Adventure,3DO,0.07,0.05,0,0.01,0.13 +Drome Racers,PS2,2002,Racing,Electronic Arts,0.06,0.05,0,0.02,0.13 +X-Men: Next Dimension,GC,2002,Fighting,Activision,0.1,0.03,0,0,0.13 +Impossible Mission,DS,2007,Platform,System 3 Arcade Software,0.12,0,0,0.01,0.13 +NCIS,PS3,2011,Adventure,Ubisoft,0.07,0.04,0,0.02,0.13 +Cabela's Dangerous Hunts 2011,DS,2010,Sports,Activision,0.12,0,0,0.01,0.13 +Garfield's Fun Fest,DS,2008,Platform,Zoo Digital Publishing,0.07,0.04,0,0.01,0.13 +7th Dragon 2020-II,PSP,2013,Role-Playing,Sega,0,0,0.13,0,0.13 +Doukyuusei 2,SAT,1997,Role-Playing,NEC Interchannel,0,0,0.13,0,0.13 +SkullMonkeys,PS,1998,Platform,DreamWorks Interactive,0.07,0.05,0,0.01,0.13 +Cloudy With a Chance of Meatballs,Wii,2009,Platform,Ubisoft,0.11,0,0,0.01,0.13 +Burnout,XB,2002,Racing,Acclaim Entertainment,0.09,0.03,0,0,0.13 +Zenses: Ocean,DS,2008,Puzzle,Game Factory,0.11,0.01,0,0.01,0.13 +Ben 10 Galactic Racing,Wii,2011,Racing,D3Publisher,0.08,0.03,0,0.01,0.13 +Teenage Mutant Ninja Turtles: Arcade Attack,DS,2009,Action,Ubisoft,0.12,0,0,0.01,0.13 +Baroque,PS2,2007,Role-Playing,Rising Star Games,0.05,0.04,0.02,0.01,0.13 +Left Brain Right Brain 2,DS,2008,Misc,Majesco Entertainment,0.12,0,0,0.01,0.13 +Dynasty Warriors: Gundam Reborn,PSV,2013,Action,Namco Bandai Games,0,0,0.13,0,0.13 +Kidz Sports: Crazy Golf,Wii,2008,Sports,Data Design Interactive,0.11,0,0,0.01,0.13 +Little Battlers eXperience: Wars,3DS,2013,Strategy,Level 5,0,0,0.13,0,0.13 +Victorious: Time to Shine,X360,2011,Action,D3Publisher,0.12,0,0,0.01,0.13 +NBA Ballers: Phenom,XB,2006,Sports,Midway Games,0.09,0.03,0,0,0.13 +Aikatsu! 365 Idol Days,3DS,2014,Adventure,Namco Bandai Games,0,0,0.13,0,0.13 +Petz Puppyz & Kittenz,DS,2011,Misc,Ubisoft,0.12,0,0,0.01,0.13 +Crash Tag Team Racing,XB,2005,Racing,Vivendi Games,0.09,0.03,0,0,0.13 +Freedom Fighters,GC,2003,Shooter,Electronic Arts,0.1,0.03,0,0,0.13 +The Stronghold Collection,PC,2009,Strategy,Take-Two Interactive,0.03,0.08,0,0.02,0.13 +Operation Abyss: New Tokyo Legacy,PSV,2014,Role-Playing,Nippon Ichi Software,0.04,0.01,0.06,0.02,0.13 +Transformer: Rise of the Dark Spark,PS3,2014,Action,Activision,0.04,0.05,0.01,0.02,0.13 +Mega Man X Collection,GC,2006,Misc,Capcom,0.1,0.03,0,0,0.13 +Detana TwinBee Yahho! Deluxe Pack,SAT,1995,Shooter,Konami Digital Entertainment,0,0,0.13,0,0.13 +Dragon Ball: Origins,DS,2008,Action,Atari,0.09,0.03,0,0.01,0.13 +Last Ranker,PSP,2010,Role-Playing,Capcom,0,0,0.13,0,0.13 +Quantum Redshift,XB,2002,Racing,Microsoft Game Studios,0.09,0.03,0,0,0.13 +Smash Court Tennis Pro Tournament 2,PS2,2004,Sports,Sony Computer Entertainment,0.06,0.05,0,0.02,0.13 +Eat Lead: The Return of Matt Hazard,X360,2009,Shooter,D3Publisher,0.1,0.01,0,0.01,0.13 +Battleborn,XOne,2016,Shooter,Take-Two Interactive,0.08,0.04,0,0.01,0.13 +Legends of Wrestling II,XB,2002,Fighting,Acclaim Entertainment,0.09,0.03,0,0,0.13 +Power Pro Kun Pocket 13,DS,2010,Sports,Konami Digital Entertainment,0,0,0.13,0,0.13 +Armed and Dangerous,XB,2003,Shooter,LucasArts,0.09,0.03,0,0,0.13 +Jurassic: The Hunted,X360,2009,Shooter,Activision,0.12,0,0,0.01,0.13 +Adventures to Go!,PSP,2008,Role-Playing,Zushi Games,0.1,0,0.01,0.01,0.13 +Conduit 2,Wii,2011,Shooter,Sega,0.07,0.04,0,0.01,0.13 +Supremacy MMA,PS3,2011,Fighting,505 Games,0.06,0.04,0,0.02,0.13 +World Soccer Winning Eleven 2002,PS,2002,Sports,Konami Digital Entertainment,0,0,0.12,0.01,0.13 +Geometry Wars: Galaxies,Wii,2007,Shooter,Vivendi Games,0.11,0,0,0.01,0.13 +Actua Tennis,PS,1997,Sports,Gremlin Interactive Ltd,0.07,0.05,0,0.01,0.13 +Horse Life,DS,2007,Simulation,Game Life,0.09,0.02,0,0.01,0.13 +Monster Truck Madness,GBA,2003,Racing,THQ,0.09,0.03,0,0,0.12 +Sonic Jam,SAT,1997,Platform,Sega,0,0,0.12,0,0.12 +Puella Magi Madoka Magica Portable,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.12,0,0.12 +Ninja Reflex,Wii,2008,Action,Electronic Arts,0.11,0.01,0,0.01,0.12 +Peter Jacobsen's Golden Tee Golf,PS,2000,Sports,Infogrames,0.07,0.05,0,0.01,0.12 +Calling,Wii,2009,Adventure,Konami Digital Entertainment,0.07,0.04,0,0.01,0.12 +Marvel Avengers: Battle for Earth,WiiU,2012,Action,Ubisoft,0.07,0.04,0,0.01,0.12 +Disney's Atlantis: The Lost Empire,GBA,2001,Platform,THQ,0.09,0.03,0,0,0.12 +Nippon Daihyou Team no Kantoku ni Narou! Sekaihatsu Soccer RPG,SAT,1998,Sports,Sega,0,0,0.12,0,0.12 +Charm Girls Club: My Fashion Mall,DS,,Simulation,Unknown,0.12,0,0,0.01,0.12 +Where the Wild Things Are,Wii,2009,Platform,Warner Bros. Interactive Entertainment,0.11,0,0,0.01,0.12 +High Velocity: Mountain Racing Challenge,SAT,1995,Racing,Atlus,0,0,0.12,0,0.12 +NHL 2K7,PS3,2006,Sports,Take-Two Interactive,0.11,0,0,0.01,0.12 +Resident Evil,PS3,2006,Action,Capcom,0,0,0.12,0,0.12 +Capcom vs. SNK 2: Millionaire Fighting 2001,DC,2001,Fighting,Capcom,0,0,0.12,0,0.12 +Criticom,PS,1996,Fighting,Vic Tokai,0.07,0.05,0,0.01,0.12 +SCORE International Baja 1000: The Official Game,X360,2008,Racing,Activision,0.11,0.01,0,0.01,0.12 +Disney Sing It: Party Hits,PS3,2010,Misc,Disney Interactive Studios,0.1,0.01,0,0.01,0.12 +Sleeping Dogs,PC,2012,Action,Square Enix,0.06,0.05,0,0.02,0.12 +Mega Man X: Command Mission,GC,2004,Role-Playing,Capcom,0.1,0.02,0,0,0.12 +Diner Dash: Sizzle & Serve,PSP,2007,Puzzle,Eidos Interactive,0.11,0,0,0.01,0.12 +After Hours Athletes,PS3,2011,Sports,Sony Computer Entertainment,0,0.1,0,0.03,0.12 +Lego Star Wars: The Force Awakens,PS3,2016,Action,Warner Bros. Interactive Entertainment,0.03,0.07,0,0.02,0.12 +Worms 3D,PS2,2003,Strategy,Sega,0.06,0.05,0,0.02,0.12 +Clock Tower: The First Fear,PS,1997,Adventure,Human Entertainment,0,0,0.12,0.01,0.12 +Kidou Senshi Gundam Seed Battle Destiny,PSV,2012,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Godzilla Unleashed: Double Smash,DS,2007,Action,Atari,0.11,0,0,0.01,0.12 +Star Trek: Conquest,Wii,2007,Strategy,Bethesda Softworks,0.11,0.01,0,0.01,0.12 +"Kilari: Na-san, Mon Meilleur Ami",DS,2006,Simulation,Konami Digital Entertainment,0,0,0.12,0,0.12 +Strikers 1945,PS,1998,Shooter,Midas Interactive Entertainment,0.07,0.05,0,0.01,0.12 +Ochaken no Heya DS,DS,2006,Simulation,MTO,0,0,0.12,0,0.12 +Obscure: The Aftermath,Wii,2008,Action,Playlogic Game Factory,0.12,0,0,0.01,0.12 +Galidor: Defenders of the Outer Dimension,GBA,2002,Action,Electronic Arts,0.09,0.03,0,0,0.12 +Tom Clancy's Splinter Cell Trilogy,PS3,2011,Action,Ubisoft,0,0.1,0,0.03,0.12 +WRC: FIA World Rally Championship,X360,,Racing,Black Bean Games,0,0.1,0,0.02,0.12 +Fire ProWrestling S: 6Men Scramble,SAT,1996,Fighting,Human Entertainment,0,0,0.12,0,0.12 +Blackwater,X360,2011,Shooter,505 Games,0.09,0.02,0,0.01,0.12 +Pryzm Chapter One: The Dark Unicorn,PS2,2002,Adventure,TDK Mediactive,0.06,0.05,0,0.02,0.12 +Gundam Battle Royale,PSP,2006,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Solitaire & Mahjong,Wii,2009,Puzzle,Crave Entertainment,0.11,0,0,0.01,0.12 +Zen-Nippon Pro Wrestling: Ouja no Kon,PS,1999,Fighting,Human Entertainment,0,0,0.12,0.01,0.12 +NASCAR 2005: Chase for the Cup,GC,2004,Racing,Electronic Arts,0.1,0.02,0,0,0.12 +Homefront: The Revolution,XOne,2016,Shooter,Deep Silver,0.05,0.07,0,0.01,0.12 +"Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 12: CR Shinseiki Evangelion - Shito, Futatabi",PS2,2008,Misc,D3Publisher,0,0,0.12,0,0.12 +Guilty Gear X,PS2,2001,Fighting,Sammy Corporation,0.06,0.05,0,0.02,0.12 +Deadliest Catch: Sea of Chaos,Wii,2010,Sports,Crave Entertainment,0.12,0,0,0.01,0.12 +One Piece: Pirate Warriors 2,PSV,2013,Action,Namco Bandai Games,0,0,0.12,0,0.12 +NHL 2002,GBA,2002,Sports,Electronic Arts,0.09,0.03,0,0,0.12 +Disney's PK: Out of the Shadows,PS2,2002,Platform,Ubisoft,0.06,0.05,0,0.02,0.12 +Mugen no Frontier: Super Robot Taisen OG Saga EXCEED,DS,2010,Role-Playing,Namco Bandai Games,0,0,0.12,0,0.12 +Karaoke Revolution,X360,2009,Misc,Konami Digital Entertainment,0.12,0,0,0.01,0.12 +Echo Night,PS,1998,Adventure,From Software,0.03,0.02,0.07,0.01,0.12 +Are You Smarter than a 5th Grader? Game Time,X360,2009,Puzzle,THQ,0.12,0,0,0.01,0.12 +Rocket League,XOne,2016,Sports,505 Games,0.03,0.09,0,0.01,0.12 +Wild ARMs 5 (jp sales),PS2,2006,Role-Playing,505 Games,0,0,0.12,0,0.12 +Tom Clancy's Splinter Cell: Blacklist,WiiU,2013,Action,Ubisoft,0.05,0.07,0,0.01,0.12 +Gladiator Begins,PSP,2010,Action,PQube,0.05,0.01,0.05,0.01,0.12 +Colony Wars III: Red Sun,PS,2000,Simulation,Psygnosis,0.07,0.05,0,0.01,0.12 +Magic: The Gathering - Battlemage,PS,1997,Strategy,Acclaim Entertainment,0.07,0.05,0,0.01,0.12 +The King of Fighters '94,NG,1994,Fighting,SNK,0,0,0.12,0,0.12 +DS Yamamura Misa Suspense: Maiko Kogiku - Kisha Katherine - Sougiya Isa Akashi - Koto ni Maru Hana Sanrin: Kyoto Satujin Jinken File,DS,2008,Adventure,Tecmo Koei,0,0,0.12,0,0.12 +Puzzle Quest 2,DS,2010,Puzzle,D3Publisher,0.11,0,0,0.01,0.12 +All Kamen Rider: Rider Generation,DS,2011,Action,Namco Bandai Games,0,0,0.12,0,0.12 +The King of Fighters '98 Ultimate Match,PS2,2008,Fighting,Ignition Entertainment,0.04,0.03,0.03,0.01,0.12 +Onechanbara: Bikini Zombie Slayers,Wii,2008,Action,D3Publisher,0.11,0,0,0.01,0.12 +Puzzle Quest: Challenge of the Warlords,PS2,2007,Puzzle,D3Publisher,0.06,0.05,0,0.02,0.12 +Angry Birds Star Wars,PSV,2013,Strategy,Activision,0.05,0.04,0,0.03,0.12 +Guardian's Crusade,PS,1998,Role-Playing,Activision,0.07,0.05,0,0.01,0.12 +Undead Knights,PSP,2009,Action,Ubisoft Annecy,0.05,0.01,0.06,0.01,0.12 +Final Fantasy XIV: Heavensward,PS4,2015,Action,Square Enix,0,0.05,0.06,0.01,0.12 +Lemony Snicket's A Series of Unfortunate Events,XB,2004,Platform,Activision,0.09,0.03,0,0,0.12 +MotoGP 3 - Official Game of MotoGP,PS2,2003,Racing,Namco Bandai Games,0.06,0.05,0,0.02,0.12 +Makai Kingdom: Chronicles of the Sacred Tome,PS2,2005,Role-Playing,Tecmo Koei,0.06,0.05,0,0.02,0.12 +The Ant Bully,GC,2006,Platform,Midway Games,0.09,0.02,0,0,0.12 +M&M's Kart Racing,DS,2008,Racing,Zoo Digital Publishing,0.11,0,0,0.01,0.12 +Bomberman Party Edition,PS,1998,Puzzle,Virgin Interactive,0.07,0.05,0,0.01,0.12 +Gotouchi Tetsudou: Gotouchi Chara to Nihon Zenkoku no Tabi,3DS,2014,Misc,Namco Bandai Games,0,0,0.12,0,0.12 +Dragon Ball Z: Battle of Z,PSV,2014,Fighting,Namco Bandai Games,0,0.04,0.06,0.02,0.12 +Eyeshield 21: Max Devil Power,DS,2006,Role-Playing,Nintendo,0,0,0.12,0,0.12 +Summon Night 3,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.12,0,0.12 +O.D.T.: Escape... Or Die Trying,PS,1997,Adventure,Psygnosis,0.07,0.05,0,0.01,0.12 +Madden NFL 06,DS,2005,Sports,Electronic Arts,0.11,0,0,0.01,0.12 +Escape The Museum,Wii,2009,Adventure,Majesco Entertainment,0.11,0.01,0,0.01,0.12 +Fuse (Insomniac),PS3,2013,Shooter,Electronic Arts,0.06,0.04,0,0.02,0.12 +Record of Agarest War Zero,PS3,,Strategy,Ghostlight,0.09,0,0.03,0.01,0.12 +Lunar: Dragon Song,DS,2005,Role-Playing,Rising Star Games,0.11,0,0,0.01,0.12 +Break 'Em All,DS,2005,Puzzle,D3Publisher,0.11,0,0,0.01,0.12 +WWE SmackDown vs Raw 2008,DS,2007,Fighting,THQ,0.11,0.01,0,0.01,0.12 +MotoGP 14,PS3,2014,Racing,Milestone S.r.l.,0.04,0.06,0,0.02,0.12 +Cars 2,PSP,2011,Racing,Disney Interactive Studios,0.1,0.01,0,0.01,0.12 +Major League Baseball 2K8 Fantasy All-Stars,DS,2008,Sports,Take-Two Interactive,0.11,0,0,0.01,0.12 +Super Robot Wars OG Saga: Masou Kishin II - Revelation of Evil God,PSP,,Strategy,,0,0,0.12,0,0.12 +Mobile Suit Gundam Seed: Rengou vs. Z.A.F.T. Portable,PSP,2007,Shooter,Namco Bandai Games,0,0,0.12,0,0.12 +San Goku Shi V,SAT,1996,Strategy,Tecmo Koei,0,0,0.12,0,0.12 +Puzzle Kingdoms,Wii,2009,Puzzle,Zoo Digital Publishing,0.11,0,0,0.01,0.12 +The Lord of the Rings: Aragorn's Quest,DS,2010,Action,Warner Bros. Interactive Entertainment,0.1,0.02,0,0.01,0.12 +WRC 5: FIA World Rally Championship,PS3,2015,Sports,Bigben Interactive,0.02,0.09,0,0.02,0.12 +Red Faction II,XB,2003,Shooter,THQ,0.09,0.03,0,0,0.12 +Daikaijyuu Monogatari II,SNES,1996,Role-Playing,Hudson Soft,0,0,0.12,0,0.12 +Rock Band Track Pack Volume 2,PS2,2008,Misc,MTV Games,0.06,0.05,0,0.02,0.12 +Voodoo Vince,XB,2003,Platform,Microsoft Game Studios,0.09,0.03,0,0,0.12 +Bodycount,PS3,2011,Shooter,Codemasters,0.05,0.06,0,0.02,0.12 +Gundam Memories: Tatakai no Kioku,PSP,2011,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Megamind: Ultimate Showdown,X360,2010,Action,THQ,0.07,0.04,0,0.01,0.12 +Kaijuu Busters,DS,2009,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Neopets Petpet Adventures: The Wand of Wishing,PSP,2006,Adventure,Sony Computer Entertainment,0.11,0,0,0.01,0.12 +Ferrari Challenge Trofeo Pirelli,PS2,2008,Racing,System 3 Arcade Software,0.06,0.05,0,0.02,0.12 +Virtua Fighter CG Portrait Series Vol.4: Pai Chan,SAT,1995,Misc,Sega,0,0,0.12,0,0.12 +Chase: Hollywood Stunt Driver,XB,2002,Racing,BAM! Entertainment,0.09,0.03,0,0,0.12 +The X Files: Resist or Serve,PS2,2004,Adventure,Vivendi Games,0.06,0.05,0,0.02,0.12 +Mobile Suit Gundam Side Story: Missing Link,PS3,2014,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Saru! Get You! Million Monkeys,PS2,,Platform,Unknown,0,0,0.12,0,0.12 +Curious George,PS2,2006,Action,Namco Bandai Games,0.06,0.05,0,0.02,0.12 +Crush3D,3DS,2012,Platform,Sega,0.07,0.04,0,0.01,0.12 +Zathura,PS2,2005,Adventure,Take-Two Interactive,0.06,0.05,0,0.02,0.12 +Lovely Lisa,DS,2007,Simulation,DHM Interactive,0.11,0,0,0.01,0.12 +Medarot DS: Kabuto / Kuwagata Ver.,DS,2010,Role-Playing,Rocket Company,0,0,0.12,0,0.12 +Mountain Sports,Wii,2009,Sports,Activision,0.11,0,0,0.01,0.12 +Tenchu: Shadow Assassins,PSP,2009,Action,Ubisoft,0.03,0.03,0.05,0.01,0.12 +NPPL: Championship Paintball 2009,X360,2008,Shooter,Activision Value,0.1,0.01,0,0.01,0.12 +Lost Planet 3,X360,2013,Shooter,Capcom,0.07,0.04,0.01,0.01,0.12 +Making History: The Great War,PSP,2010,Strategy,Namco Bandai Games,0,0,0.12,0,0.12 +Shin Megami Tensei: Devil Survivor 2,3DS,2015,Role-Playing,Atlus,0,0.03,0.09,0,0.12 +The God of War Trilogy,PS3,2010,Action,Sony Computer Entertainment,0,0.07,0.03,0.02,0.12 +Dance Paradise,X360,2010,Misc,Mindscape,0.1,0.01,0,0.01,0.12 +Backyard Baseball '10,DS,2009,Sports,Atari,0.11,0,0,0.01,0.12 +Blazblue: Continuum Shift Extend,PSV,2011,Fighting,PQube,0.03,0.05,0.02,0.02,0.12 +Cel Damage,XB,2001,Racing,Electronic Arts,0.09,0.03,0,0,0.12 +Go! Sudoku,PSP,2005,Puzzle,Sony Computer Entertainment,0.11,0,0,0.01,0.12 +Alice: Madness Returns,PC,2011,Adventure,Electronic Arts,0,0.1,0,0.02,0.12 +SSX 3,GBA,2003,Sports,Electronic Arts,0.09,0.03,0,0,0.12 +My Chinese Coach,DS,2008,Misc,Ubisoft,0.11,0.01,0,0.01,0.12 +DiRT 2,DS,2009,Racing,Codemasters,0.06,0.04,0,0.01,0.12 +Yamakawa Shuppansha Kanshuu: Shousetsu Nihonshi B,DS,2007,Misc,Namco Bandai Games,0,0,0.12,0,0.12 +The King of Fighters Collection: The Orochi Saga,Wii,2008,Fighting,Ignition Entertainment,0.11,0,0,0.01,0.12 +Atelier Annie: Alchemists of Sera Island,DS,2009,Role-Playing,Gust,0.08,0,0.03,0.01,0.12 +Breakdown,XB,2004,Adventure,Electronic Arts,0.09,0.03,0,0,0.12 +Rush,PSP,2006,Racing,Midway Games,0.11,0,0,0.01,0.12 +Ecco the Dolphin,GEN,1992,Adventure,Sega,0,0,0.12,0,0.12 +The Legend of Heroes: Trails of Cold Steel II,PS3,2014,Role-Playing,Nippon Ichi Software,0.01,0,0.11,0,0.12 +Looney Tunes: Sheep Raider,PS,2001,Platform,Infogrames,0.07,0.05,0,0.01,0.12 +Yard Sale Hidden Treasures: Sunnyville,DS,2010,Puzzle,Konami Digital Entertainment,0.11,0,0,0.01,0.12 +Harvest Moon 2 GBC,GB,1999,Simulation,Ubisoft,0,0,0.12,0,0.12 +Killer is Dead,X360,2013,Action,Deep Silver,0.08,0.02,0.01,0.01,0.12 +Lost in Shadow,Wii,2010,Platform,Konami Digital Entertainment,0.1,0,0.01,0.01,0.12 +Cory in the House,DS,2007,Action,Disney Interactive Studios,0.11,0,0,0.01,0.12 +X2: Wolverine's Revenge,GC,2003,Platform,Activision,0.09,0.02,0,0,0.12 +McDROID,Wii,2011,Strategy,Namco Bandai Games,0,0,0.12,0,0.12 +Gallop Racer 2000,PS,2000,Sports,Tecmo Koei,0,0,0.11,0.01,0.12 +Showdown: Legends of Wrestling,XB,2004,Fighting,Acclaim Entertainment,0.09,0.03,0,0,0.12 +Macross Triangle Frontier,PSP,2011,Action,Namco Bandai Games,0,0,0.12,0,0.12 +Chessmaster: The Art of Learning,PSP,2008,Misc,Ubisoft,0.11,0,0,0.01,0.12 +Petz Fantasy: Moonlight Magic,DS,2010,Simulation,Ubisoft,0.11,0,0,0.01,0.12 +Gundam Breaker 3,PSV,2016,Action,Namco Bandai Games,0,0,0.12,0,0.12 +My Farm Around the World,DS,2008,Simulation,Atari,0.11,0,0,0.01,0.12 +Fat Princess: Fistful of Cake,PSP,2010,Action,Sony Computer Entertainment,0.08,0.02,0,0.02,0.12 +Zubo,DS,2008,Misc,Electronic Arts,0.09,0.03,0,0.01,0.12 +Street Hoops,GC,,Sports,Unknown,0.09,0.02,0,0,0.12 +NFL QB Club 2001,N64,2000,Sports,Acclaim Entertainment,0.11,0.01,0,0,0.12 +Earthworm Jim 3D,N64,1999,Platform,Interplay,0.1,0.02,0,0,0.12 +Rocket: Robot on Wheels,N64,1999,Platform,Ubisoft,0.1,0.02,0,0,0.12 +Densha De Go! 64,N64,1999,Simulation,Taito,0,0,0.05,0.07,0.12 +Godzilla: Destroy All Monsters Melee,XB,,Fighting,Unknown,0.09,0.03,0,0,0.12 +The Daring Game for Girls,DS,,Adventure,Unknown,0.11,0,0,0.01,0.12 +Conception II: Children of the Seven Stars,3DS,2013,Role-Playing,Screenlife,0.09,0,0.03,0.01,0.12 +Animal Genius,DS,2007,Puzzle,Ubisoft,0.11,0,0,0.01,0.12 +Sega Soccer Slam,PS2,2002,Sports,Sega,0.06,0.05,0,0.02,0.12 +Zenses: Rainforest,DS,2008,Puzzle,Game Factory,0.1,0.01,0,0.01,0.12 +Dora the Explorer: Dora Saves the Mermaids,PS2,2008,Platform,Take-Two Interactive,0.06,0.05,0,0.02,0.12 +Grand Theft Auto: San Andreas,X360,2008,Action,Take-Two Interactive,0.08,0.03,0,0.01,0.12 +Phantasy Star Universe,X360,2006,Role-Playing,Sega,0.09,0.02,0,0.01,0.12 +Skate City Heroes,Wii,2008,Sports,Zoo Digital Publishing,0.11,0,0,0.01,0.12 +NASCAR Unleashed,X360,2011,Racing,Activision,0.11,0,0,0.01,0.12 +2 Games in 1 Double Pack: Hot Wheels Velocity X / Hot Wheels World Race,GBA,2005,Racing,THQ,0.09,0.03,0,0,0.12 +College Hoops 2K6,X360,2006,Sports,Take-Two Interactive,0.11,0,0,0.01,0.12 +Mytran Wars,PSP,2009,Strategy,Deep Silver,0.08,0.02,0,0.02,0.12 +MX vs. ATV Untamed,DS,2007,Racing,THQ,0.11,0,0,0.01,0.12 +Prince of Persia: Rival Swords,PSP,2007,Action,Ubisoft,0.08,0.02,0,0.02,0.12 +Mahou Shoujo Lyrical Nanoha A's Portable: The Gears of Destiny,PSP,2011,Fighting,Namco Bandai Games,0,0,0.12,0,0.12 +Gungnir: Mayari no Gunshin to Eiyuu Sensou,PSP,2011,Role-Playing,Atlus,0.07,0,0.04,0.01,0.12 +Dodge Racing: Charger vs Challenger,Wii,2009,Racing,Zushi Games,0.11,0,0,0.01,0.12 +Fate/Extra CCC,PSP,2013,Action,Marvelous Entertainment,0,0,0.12,0,0.12 +Rocksmith,PC,,Misc,Unknown,0.06,0.04,0,0.01,0.12 +MTV Sports: Pure Ride,PS,2000,Sports,THQ,0.07,0.05,0,0.01,0.12 +Sonic Adventure 2,DC,2001,Platform,Sega,0,0,0.12,0,0.12 +Burning Road,PS,1996,Racing,FunSoft,0.07,0.05,0,0.01,0.12 +Slayers,SNES,1994,Role-Playing,Banpresto,0,0,0.12,0,0.12 +Super Robot Wars OG Saga: Masou Kishin - The Lord of Elemental,DS,2010,Strategy,Namco Bandai Games,0,0,0.12,0,0.12 +IndyCar Series,PS2,2003,Racing,Codemasters,0.06,0.05,0,0.02,0.12 +Space Chimps,PS2,2008,Platform,Brash Entertainment,0.06,0.05,0,0.02,0.12 +Crash Superpack: Crash Bandicoot 2: N-Tranced / Crash Nitro Kart,GBA,2005,Misc,Vivendi Games,0.09,0.03,0,0,0.12 +Famicom Mini: TwinBee,GBA,2004,Shooter,Konami Digital Entertainment,0,0,0.12,0,0.12 +4 Game Fun Pack: Monopoly / Boggle / Yahtzee / Battleship,DS,2005,Misc,Atari,0.11,0,0,0.01,0.12 +Gladiator: Sword of Vengeance,PS2,2003,Action,Acclaim Entertainment,0.06,0.05,0,0.02,0.12 +nail'd,PS3,2010,Racing,Deep Silver,0.08,0.02,0,0.02,0.12 +PixelJunk Monsters Deluxe,PSP,2010,Strategy,Sony Computer Entertainment,0.11,0,0,0.01,0.12 +Tom Clancy's EndWar,PSP,2008,Strategy,Ubisoft,0.1,0.01,0,0.01,0.12 +Ultimate Card Games,GBA,2003,Misc,Telegames,0.09,0.03,0,0,0.12 +Jikkyou Powerful Pro Yakyuu 8 Ketteiban,PS2,2001,Sports,Konami Digital Entertainment,0,0,0.12,0,0.12 +Rubik's World,DS,2008,Puzzle,Game Factory,0.1,0.01,0,0.01,0.12 +Lost Magic,DS,2006,Role-Playing,Ubisoft,0.09,0,0.02,0.01,0.12 +Wallace & Gromit: Curse of the Were-Rabbit,PS2,2005,Adventure,Konami Digital Entertainment,0.06,0.05,0,0.02,0.12 +DreamWorks Super Star Kartz,3DS,2011,Racing,Activision,0.08,0.03,0,0.01,0.12 +Minute to Win It,DS,2010,Misc,Zoo Games,0.11,0,0,0.01,0.12 +The Bible Game,GBA,2005,Misc,Crave Entertainment,0.09,0.03,0,0,0.12 +NFL Head Coach,XB,2006,Sports,Electronic Arts,0.09,0.03,0,0,0.12 +Pinball Hall of Fame: The Williams Collection,X360,2009,Misc,Crave Entertainment,0.11,0,0,0.01,0.12 +Medarot 4: Kabuto / Kuwagata Version,GB,2001,Role-Playing,Imagineer,0,0,0.12,0,0.12 +Backyard Sports Football: Rookie Rush,X360,2010,Sports,Atari,0.11,0,0,0.01,0.12 +Sacred 3,PS3,2014,Role-Playing,Deep Silver,0.03,0.05,0.02,0.02,0.12 +Major League Baseball 2K6,PSP,,Sports,Unknown,0.11,0,0,0.01,0.12 +Vacation Isle: Beach Party,Wii,2010,Misc,Warner Bros. Interactive Entertainment,0.09,0.02,0,0.01,0.12 +Fit in Six,Wii,2011,Sports,Ubisoft,0.11,0,0,0.01,0.12 +Mahou Shoujo Lyrical Nanoha A's Portable: The Battle of Aces,PSP,2010,Shooter,Namco Bandai Games,0,0,0.12,0,0.12 +"Ed, Edd n Eddy: The Mis-Edventures",GBA,2005,Platform,Midway Games,0.08,0.03,0,0,0.12 +Onimusha: Blade Warriors,PS2,2003,Fighting,Capcom,0.06,0.05,0,0.02,0.12 +Tecmo Bowl: Kickoff,DS,2008,Sports,Tecmo Koei,0.11,0,0,0.01,0.12 +Disney's Extreme Skate Adventure,GC,2003,Sports,Activision,0.09,0.02,0,0,0.12 +Akuji the Heartless,PS,1998,Platform,Eidos Interactive,0.07,0.04,0,0.01,0.12 +NBA 2K2,GC,2002,Sports,Sega,0.09,0.02,0,0,0.12 +7 Days to Die,PS4,2016,Action,Telltale Games,0.03,0.07,0,0.02,0.12 +Monster Jam: Path of Destruction,X360,2010,Racing,Activision,0.11,0,0,0.01,0.12 +Everybody Dance,PS3,2011,Misc,Sony Computer Entertainment,0.11,0,0,0.01,0.12 +Psychonauts,XB,2005,Platform,THQ,0.09,0.03,0,0,0.12 +Power Gig: Rise of the SixString,X360,2010,Misc,Unknown,0.11,0,0,0.01,0.12 +Deus Ex: Human Revolution,WiiU,2013,Shooter,Square Enix,0.06,0.05,0,0.01,0.12 +Jeremy McGrath Supercross World,GC,2002,Racing,Acclaim Entertainment,0.09,0.02,0,0,0.12 +Uta no * Prince-Sama: All Star,PSP,2013,Action,Broccoli,0,0,0.12,0,0.12 +HardBall 5,PS,1996,Sports,SPS,0.07,0.04,0,0.01,0.12 +Airborne Troops: Countdown to D-Day,PS2,2005,Shooter,Playlogic Game Factory,0.06,0.05,0,0.02,0.12 +MLB Inside Pitch 2003,XB,2003,Sports,Microsoft Game Studios,0.09,0.03,0,0,0.12 +ArmA III,PC,2013,Shooter,Bohemia Interactive,0,0.1,0,0.02,0.12 +The Walking Dead: Season Two,X360,2014,Adventure,Telltale Games,0.04,0.07,0,0.01,0.12 +Marvel Trading Card Game,DS,2007,Misc,Konami Digital Entertainment,0.11,0,0,0.01,0.12 +One Piece: Super Grand Battle! X,3DS,2014,Fighting,Namco Bandai Games,0,0,0.12,0,0.12 +The Penguins of Madagascar: Dr. Blowhole Returns - Again!,DS,2011,Action,THQ,0.07,0.03,0,0.01,0.12 +Self-Defense Training Camp,X360,2011,Sports,Ubisoft,0.08,0.03,0,0.01,0.12 +Battles of Prince of Persia,DS,2005,Strategy,Ubisoft,0.1,0.01,0,0.01,0.12 +Deca Sports Extreme,3DS,2011,Sports,Hudson Soft,0.08,0,0.03,0.01,0.12 +Cruis'n,Wii,2007,Racing,Midway Games,0.1,0.01,0,0.01,0.12 +Hatsune Miku: Project Diva X,PSV,2016,Misc,Sega,0.01,0,0.1,0,0.12 +Battle Arena Toshinden Remix,SAT,1994,Fighting,Sega,0,0,0.12,0,0.12 +Assassin's Creed Chronicles,PSV,2016,Action,Ubisoft,0.02,0.06,0.01,0.02,0.12 +Legends of Wrestling II,GC,2002,Fighting,Acclaim Entertainment,0.09,0.02,0,0,0.12 +Tropico 5,PC,2014,Simulation,Kalypso Media,0.02,0.08,0,0.01,0.12 +A.C.E.: Another Century's Episode Portable,PSP,2011,Simulation,Namco Bandai Games,0,0,0.12,0,0.12 +Dragon Quest Builders: Revive Alefgard,PS3,2016,Role-Playing,Square Enix,0,0,0.12,0,0.12 +Rodea the Sky Soldier,WiiU,2015,Action,Nippon Ichi Software,0.08,0.02,0.01,0.01,0.12 +Peggle: Dual Shot,DS,2009,Puzzle,PopCap Games,0.11,0,0,0.01,0.12 +Jikkyou Powerful Pro Yakyuu 9,GC,2002,Sports,Konami Digital Entertainment,0,0,0.11,0,0.12 +Sniper Elite,Wii,2010,Shooter,Reef Entertainment,0.08,0.03,0,0.01,0.12 +Etrian Odyssey V,3DS,2016,Role-Playing,Atlus,0,0,0.12,0,0.12 +Jikkyou Powerful Pro Yakyuu 2014,PSV,2014,Sports,Konami Digital Entertainment,0,0,0.12,0,0.12 +Barbie as The Island Princess,PS2,2007,Adventure,Activision,0.06,0.04,0,0.02,0.12 +Crime Killer,PS,1998,Racing,Interplay,0.07,0.04,0,0.01,0.12 +NPPL: Championship Paintball 2009,Wii,2008,Shooter,Activision Value,0.11,0,0,0.01,0.12 +Backyard Wrestling 2: There Goes the Neighborhood,XB,2004,Fighting,Eidos Interactive,0.09,0.03,0,0,0.12 +Dementium II,DS,2010,Shooter,SouthPeak Games,0.09,0.02,0,0.01,0.12 +Don Bradman Cricket 14,PS4,2015,Sports,Tru Blu Entertainment,0.01,0.09,0,0.02,0.12 +USA Today Crossword Challenge,DS,2008,Puzzle,Destineer,0.11,0,0,0.01,0.12 +MegaTagmension Blanc + Neptune VS Zombies,PSV,2015,Action,Idea Factory International,0.02,0.03,0.05,0.01,0.12 +Bishoujo Senshi Sailormoon S: Juugai Rantou!? Shuyaku Soudatsusen,SNES,1994,Fighting,Angel Studios,0,0,0.12,0,0.12 +SD Gundam G Generation-F.I.F,PS,2001,Strategy,Namco Bandai Games,0,0,0.11,0.01,0.12 +Jaws: Ultimate Predator,3DS,2011,Action,Majesco Entertainment,0.11,0,0,0.01,0.12 +Yakuza Kiwami,PS3,2016,Adventure,Sega,0,0,0.12,0,0.12 +Raiden IV,X360,2008,Shooter,Moss,0.1,0,0.01,0.01,0.12 +Deception IV: Blood Ties,PS3,2014,Action,Tecmo Koei,0.02,0.02,0.06,0.01,0.12 +The Walking Dead: Survival Instinct,WiiU,2013,Shooter,Activision,0.08,0.03,0,0.01,0.12 +Rock Band: Metal Track Pack,PS3,2009,Misc,MTV Games,0.11,0,0,0.01,0.12 +Charm Girls Club: My Perfect Prom,DS,2009,Simulation,Electronic Arts,0.11,0,0,0.01,0.12 +DreamWorks Super Star Kartz,PS3,2011,Racing,Activision,0.06,0.03,0,0.02,0.12 +Harukanaru Augusta 2: Masters,SNES,1993,Sports,T&E Soft,0,0,0.12,0,0.12 +Castlevania: Curse of Darkness,XB,2005,Action,Konami Digital Entertainment,0.09,0.03,0,0,0.12 +Spider-Man: Edge of Time,3DS,2011,Action,Activision,0.08,0.03,0,0.01,0.12 +Mobil 1 Rally Championship,PS,2000,Racing,Electronic Arts,0.07,0.04,0,0.01,0.12 +King of Colosseum (Red): Shin Nippon x Zen Nippon x Pancrase Disc,PS2,2002,Fighting,Spike,0,0,0.12,0,0.12 +Turok: Evolution,GBA,2002,Shooter,Acclaim Entertainment,0.08,0.03,0,0,0.12 +The Clique: Diss and Make Up,DS,2009,Adventure,Warner Bros. Interactive Entertainment,0.11,0,0,0.01,0.12 +Love Live! School Idol Paradise,PSV,2014,Misc,Kadokawa Games,0,0,0.12,0,0.12 +Rugrats: Totally Angelica,PS,2001,Adventure,THQ,0.06,0.04,0,0.01,0.12 +Nightshade,PS2,2003,Action,Sega,0.06,0.04,0,0.01,0.12 +NFL Tour,PS3,2008,Sports,Electronic Arts,0.1,0.01,0,0.01,0.12 +Ridge Racer Unbounded,X360,2012,Racing,Namco Bandai Games,0.05,0.05,0,0.01,0.12 +CSI: Crime Scene Investigation,XB,2004,Adventure,Ubisoft,0.09,0.03,0,0,0.12 +The Lord of the Rings: Aragorn's Quest,PSP,2010,Action,Warner Bros. Interactive Entertainment,0.07,0.02,0,0.02,0.12 +Yogi Bear: The Video Game,Wii,2010,Action,D3Publisher,0.06,0.05,0,0.01,0.12 +Makai Shin Trillion,PSV,2014,Role-Playing,Idea Factory,0.02,0.02,0.06,0.01,0.12 +Buffy the Vampire Slayer: Chaos Bleeds,XB,2003,Action,Vivendi Games,0.09,0.03,0,0,0.12 +Lost Horizon,PC,2010,Adventure,Deep Silver,0,0.1,0,0.02,0.12 +Hanagumi Taisen Columns,SAT,1997,Puzzle,Sega,0,0,0.12,0,0.12 +Tales of Destiny 2,PSP,2007,Role-Playing,Namco Bandai Games,0,0,0.12,0,0.12 +Teenage Mutant Ninja Turtles 3: Mutant Nightmare,GC,2005,Action,Konami Digital Entertainment,0.09,0.02,0,0,0.12 +Power Pro Kun Pocket 14,DS,2011,Sports,Konami Digital Entertainment,0,0,0.12,0,0.12 +Get Up and Dance,Wii,2011,Misc,O-Games,0.06,0.04,0,0.01,0.12 +Merv Griffin's Crosswords,Wii,2008,Puzzle,THQ,0.11,0,0,0.01,0.12 +Rango: The Video Game,DS,2011,Action,Electronic Arts,0.07,0.03,0,0.01,0.12 +Planet 51,PS3,2009,Action,Sega,0.07,0.03,0,0.02,0.12 +Ultimate Puzzle Games: Sudoku Edition,DS,2007,Puzzle,Telegames,0.11,0,0,0.01,0.12 +Tokyo Twilight Ghost Hunters,PSV,2014,Role-Playing,Aksys Games,0.06,0.01,0.02,0.02,0.12 +Deadpool,XOne,2015,Action,Activision,0.08,0.03,0,0.01,0.12 +UN Squadron,SNES,1991,Shooter,Capcom,0,0,0.12,0,0.12 +Tecmo Super Bowl,PS,1996,Sports,Tecmo Koei,0.06,0.04,0,0.01,0.12 +TMNT,PSP,2007,Action,Ubisoft,0.1,0.01,0,0.01,0.12 +Dora the Explorer: Journey to the Purple Planet,GC,2005,Adventure,Global Star,0.09,0.02,0,0,0.12 +Lunar 2: Eternal Blue,SAT,1998,Role-Playing,Kadokawa Shoten,0,0,0.12,0,0.12 +NHL Powerplay '96,PS,1996,Sports,Virgin Interactive,0.06,0.04,0,0.01,0.12 +Thousand Arms,PS,1998,Role-Playing,Atlus,0.06,0.04,0,0.01,0.12 +de Blob 2,DS,2011,Platform,THQ,0.09,0.02,0,0.01,0.12 +Arctic Thunder,XB,2001,Racing,Midway Games,0.09,0.02,0,0,0.12 +"Hyperdimension Neptunia Re,Birth 3",PSV,2014,Action,Idea Factory International,0.07,0.01,0,0.03,0.12 +Barnyard,GC,2006,Action,THQ,0.09,0.02,0,0,0.12 +Stolen Song,PS,1998,Adventure,Sony Computer Entertainment,0,0,0.11,0.01,0.12 +Darkspore,PC,2011,Role-Playing,Electronic Arts,0.07,0.03,0,0.01,0.12 +2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe,X360,2013,Misc,Ubisoft,0.09,0.01,0,0.01,0.12 +Armored Core: Verdict Day,PS3,2013,Simulation,From Software,0,0,0.12,0,0.12 +Yattaman DS: BikkuriDokkiri Daisakusen da Koron,DS,2008,Action,Takara Tomy,0,0,0.12,0,0.12 +Harvey Birdman: Attorney at Law,PS2,2008,Adventure,Capcom,0.06,0.04,0,0.01,0.12 +Wipeout 2,PS3,2011,Misc,Activision,0.11,0,0,0.01,0.12 +Dawn of Discovery,DS,2009,Simulation,Ubisoft,0.07,0.03,0,0.01,0.12 +DEATH NOTE: Kira Game,DS,2007,Adventure,Konami Digital Entertainment,0,0,0.12,0,0.12 +Sengoku Cyber: Fujimaru Jigokuhen,PS,1995,Strategy,Sony Computer Entertainment,0,0,0.11,0.01,0.12 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol.10: CR Shinseiki Evangelion: Kiseki no Kachi,PS2,2007,Misc,D3Publisher,0,0,0.12,0,0.12 +ASH: Archaic Sealed Heat,DS,2007,Role-Playing,Nintendo,0,0,0.12,0,0.12 +Happy Feet Two,DS,,Action,Warner Bros. Interactive Entertainment,0.09,0.02,0,0.01,0.12 +Brunswick Pro Bowling,3DS,2011,Sports,Crave Entertainment,0.11,0,0,0.01,0.12 +Fantastic Four: Rise of the Silver Surfer,X360,2007,Action,Take-Two Interactive,0.1,0.01,0,0.01,0.12 +Dorabase 2: Nettou Ultra Stadium,DS,2009,Sports,Namco Bandai Games,0,0,0.12,0,0.12 +Center Ring Boxing,SAT,1994,Fighting,JVC,0,0,0.12,0,0.12 +NHL 2K3,XB,2002,Sports,Sega,0.09,0.02,0,0,0.12 +Puzzler World 2,DS,2010,Puzzle,Ubisoft,0.02,0.07,0,0.02,0.12 +Die Hard: Vendetta,GC,2002,Shooter,NDA Productions,0.09,0.02,0,0,0.12 +Sword Art Online: Hollow Fragment,PS4,2015,Role-Playing,Namco Bandai Games,0,0.1,0,0.02,0.12 +F1 2002,PS2,2002,Racing,Electronic Arts,0.05,0.04,0.02,0.01,0.12 +Hasbro Family Game Night Fun Pack,Wii,2011,Misc,Electronic Arts,0.11,0,0,0.01,0.12 +FIFA Soccer,PSP,2005,Sports,Electronic Arts,0.11,0,0,0.01,0.12 +Dead Island Definitive Collection,PS4,2016,Action,Deep Silver,0.02,0.07,0.01,0.02,0.12 +Sphinx and the Cursed Mummy,XB,2003,Action,THQ,0.09,0.02,0,0,0.12 +Army Men: Soldiers of Misfortune,DS,2008,Shooter,Zoo Games,0.11,0,0,0.01,0.12 +GT Advance 2: Rally Racing,GBA,2001,Racing,THQ,0.08,0.03,0,0,0.11 +Mystery P.I. - Portrait of a Thief,DS,2008,Adventure,Unknown,0.11,0,0,0.01,0.11 +Yakuza,PS3,2012,Action,Sega,0,0,0.11,0,0.11 +DOA 2: Dead or Alive 2 Hardcore,PS2,2000,Fighting,Tecmo Koei,0,0,0.11,0,0.11 +A Witch's Tale,DS,2009,Role-Playing,Nippon Ichi Software,0.08,0,0.03,0.01,0.11 +Hollywood Squares,Wii,2010,Misc,Ubisoft,0.11,0,0,0.01,0.11 +Cabela's Deer Hunt 2005 Season,XB,2004,Sports,Activision,0.09,0.02,0,0,0.11 +SplashDown,XB,2002,Racing,Atari,0.09,0.02,0,0,0.11 +Nobunaga no Yabou: Tenshoki,SAT,1995,Strategy,Tecmo Koei,0,0,0.11,0,0.11 +Stronghold,PC,2001,Strategy,Gathering of Developers,0,0.09,0,0.02,0.11 +Warhammer: Battle March,X360,2008,Strategy,Deep Silver,0.09,0.02,0,0.01,0.11 +F1 Racing Championship,PS,2000,Racing,Video System,0.06,0.04,0,0.01,0.11 +Dead Man's Hand,XB,2004,Shooter,Atari,0.09,0.02,0,0,0.11 +Smash Cars,PS2,2003,Racing,Metro 3D,0.06,0.04,0,0.01,0.11 +NASCAR 07,PS2,2006,Racing,Electronic Arts,0.06,0.04,0,0.01,0.11 +Karaoke Revolution Presents American Idol Encore 2,PS3,2008,Misc,Konami Digital Entertainment,0.11,0,0,0.01,0.11 +Nickelodeon Dance,X360,2011,Misc,Take-Two Interactive,0.08,0.02,0,0.01,0.11 +Pac 'n Roll,DS,2005,Platform,Namco Bandai Games,0.09,0,0.02,0.01,0.11 +Cabela's North American Adventures,PS3,2010,Sports,Activision,0.11,0,0,0.01,0.11 +Mechanic Master,DS,2008,Puzzle,Midway Games,0.1,0,0,0.01,0.11 +Jikkyou Powerful Pro Yakyuu 12 Ketteiban,PS2,2005,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +Melty Blood: Act Cadenza,PS2,2006,Fighting,Sega,0,0,0.11,0,0.11 +Dokapon Kingdom,PS2,2007,Role-Playing,Sting,0.05,0.04,0.02,0.01,0.11 +ToeJam & Earl III: Mission to Earth,XB,2002,Action,Sega,0.09,0.02,0,0,0.11 +Phantasy Star Collection,GBA,2002,Role-Playing,Atari,0.08,0.03,0,0,0.11 +Doukoku Shoshite...,SAT,1998,Adventure,Data East,0,0,0.11,0,0.11 +LEGO Knights' Kingdom,GBA,2004,Action,THQ,0.08,0.03,0,0,0.11 +Final Fantasy III,PSP,2012,Role-Playing,Square Enix,0,0,0.11,0,0.11 +Family Game Night 4: The Game Show,PS3,2011,Misc,Electronic Arts,0.08,0.02,0,0.01,0.11 +Retro Game Challenge,DS,2007,Action,Namco Bandai Games,0,0,0.11,0,0.11 +NBA Jam 2002,GBA,2002,Sports,Acclaim Entertainment,0.08,0.03,0,0,0.11 +Every Extend Extra,PSP,2006,Shooter,Disney Interactive Studios,0.1,0.01,0,0.01,0.11 +Shining Force NEO,PS2,2005,Role-Playing,Sega,0.06,0.04,0,0.01,0.11 +Tony Hawk's Pro Skater 5,XOne,2015,Sports,Activision,0.08,0.02,0,0.01,0.11 +Brain Quest: Grades 5 & 6,DS,2008,Misc,Electronic Arts,0.11,0,0,0.01,0.11 +SingStar Latino,PS3,2009,Misc,Sony Computer Entertainment,0.11,0,0,0.01,0.11 +Girl Time,DS,2009,Simulation,THQ,0.11,0,0,0.01,0.11 +Army Men: Sarge's War,XB,2004,Shooter,Global Star,0.09,0.02,0,0,0.11 +Ultimate Mortal Kombat,DS,2007,Fighting,Midway Games,0.09,0.01,0,0.01,0.11 +Pocket Soccer League: Calciobit,3DS,2012,Sports,Nintendo,0,0,0.11,0,0.11 +Primal Rage,PS,1994,Fighting,Time Warner Interactive,0.06,0.04,0,0.01,0.11 +FIFA Street 2,GC,2006,Sports,Electronic Arts,0.09,0.02,0,0,0.11 +DiRT Rally,XOne,2016,Racing,Codemasters,0.03,0.08,0,0.01,0.11 +Heart Catch PreCure! Oshare Collection,DS,2010,Action,Namco Bandai Games,0,0,0.11,0,0.11 +UEFA Euro 2016,PS3,2016,Sports,Konami Digital Entertainment,0,0.08,0.02,0.01,0.11 +Taito Legends,PS2,2005,Misc,Empire Interactive,0.06,0.04,0,0.01,0.11 +Tom Clancy's Rainbow Six: Rogue Spear,GBA,2002,Shooter,Ubisoft,0.08,0.03,0,0,0.11 +BoomBots,PS,1999,Fighting,SouthPeak Games,0.06,0.04,0,0.01,0.11 +Monster Madness: Battle for Suburbia,X360,2007,Shooter,SouthPeak Games,0.1,0,0,0.01,0.11 +Star Trek: Conquest,PS2,,Strategy,Bethesda Softworks,0.06,0.04,0,0.01,0.11 +FIFA Soccer 06,PSP,2005,Sports,Electronic Arts,0.1,0.01,0,0.01,0.11 +Life is Strange,XOne,2016,Adventure,Square Enix,0.08,0.02,0,0.01,0.11 +NFL Head Coach 09,X360,2008,Sports,Electronic Arts,0.11,0,0,0.01,0.11 +World Championship Rugby,PS2,2004,Sports,Acclaim Entertainment,0.06,0.04,0,0.01,0.11 +Phantom Dust,XB,2004,Action,Microsoft Game Studios,0.08,0.02,0,0,0.11 +Shinseiki Evangelion: Koutetsu no Girlfriend,PS,1998,Adventure,Gainax Network Systems,0,0,0.11,0.01,0.11 +Shin Sangoku Musou: Multi Raid 2,PSP,2010,Action,Tecmo Koei,0,0,0.11,0,0.11 +Taiko Drum Master: Tokumori!,WiiU,2014,Misc,Namco Bandai Games,0,0,0.11,0,0.11 +Growlanser Generations,PS2,2003,Role-Playing,Atlus,0.06,0.04,0,0.01,0.11 +Mega Man Battle Chip Challenge,GBA,2003,Misc,Capcom,0.08,0.03,0,0,0.11 +Desktop Tower Defense,DS,2009,Strategy,THQ,0.11,0,0,0.01,0.11 +Puyo Puyo Tetris,3DS,2014,Puzzle,Sega,0,0,0.11,0,0.11 +Pro Evolution Soccer 2014,PC,2013,Action,Konami Digital Entertainment,0,0.09,0,0.02,0.11 +"Sakura Wars: So Long, My Love",Wii,2010,Role-Playing,Ackkstudios,0.06,0.04,0,0.01,0.11 +The Settlers,DS,2007,Action,Ubisoft,0.1,0,0,0.01,0.11 +Grease,DS,2010,Misc,505 Games,0.1,0,0,0.01,0.11 +My SAT Coach with The Princeton Review,DS,2008,Misc,Ubisoft,0.1,0,0,0.01,0.11 +Family Fun Football,Wii,2009,Sports,Tecmo Koei,0.1,0,0,0.01,0.11 +Ring of Red,PS2,2000,Strategy,Konami Digital Entertainment,0.06,0.04,0,0.01,0.11 +Cold Winter,PS2,2005,Shooter,Vivendi Games,0.06,0.04,0,0.01,0.11 +International Track & Field 2000,PS,1999,Sports,Konami Digital Entertainment,0.06,0.04,0,0.01,0.11 +The Hardy Boys: Treasure on the Tracks,DS,2009,Adventure,Sega,0.11,0,0,0.01,0.11 +PDC World Championship Darts: Pro Tour,PS3,2010,Sports,O-Games,0,0.09,0,0.03,0.11 +Stubbs the Zombie in Rebel Without a Pulse,XB,2005,Action,THQ,0.08,0.02,0,0,0.11 +Batman: Dark Tomorrow,XB,2003,Action,Kemco,0.08,0.02,0,0,0.11 +Ping Pals,DS,2004,Misc,THQ,0.1,0,0,0.01,0.11 +Fatal Frame: Maiden of Black Water,WiiU,2014,Action,Nintendo,0,0.03,0.08,0,0.11 +MySims SkyHeroes,PS3,2010,Action,Electronic Arts,0.08,0.02,0,0.01,0.11 +Blood Drive,X360,2010,Racing,Activision,0.09,0.01,0,0.01,0.11 +18 Wheeler: American Pro Trucker,GC,2002,Racing,Acclaim Entertainment,0.09,0.02,0,0,0.11 +Jake Hunter Detective Story: Memories of the Past,DS,2007,Adventure,PQube,0.06,0,0.05,0,0.11 +Start the Party! Save the World,PS3,2011,Misc,Sony Computer Entertainment,0,0.09,0,0.03,0.11 +The King of Fighters XII,X360,2009,Fighting,Ignition Entertainment,0.09,0,0.01,0.01,0.11 +Digimon World DS,DS,2006,Role-Playing,Namco Bandai Games,0.1,0,0,0.01,0.11 +Naruto Ultimate Collection,PS2,2008,Misc,Namco Bandai Games,0.06,0.04,0,0.01,0.11 +The King of Fighters '99,PS,2000,Fighting,SNK,0,0,0.11,0.01,0.11 +Mass Destruction,PS,1997,Shooter,BMG Interactive Entertainment,0.06,0.04,0,0.01,0.11 +Bodycount,X360,2011,Shooter,Codemasters,0.07,0.03,0,0.01,0.11 +Batman: Rise of Sin Tzu,XB,2003,Action,Ubisoft,0.08,0.02,0,0,0.11 +Shinseiki Evangelion: Koutetsu no Girlfriend,SAT,1998,Adventure,Sega,0,0,0.11,0,0.11 +Skylanders: SuperChargers,3DS,2015,Action,Activision,0.05,0.06,0,0.01,0.11 +Super Swing Golf Season 2,Wii,2007,Sports,Rising Star Games,0.08,0,0.03,0.01,0.11 +Queen's Blade: Spiral Chaos,PSP,2009,Role-Playing,Namco Bandai Games,0,0,0.11,0,0.11 +Jikkyou Powerful Pro Yakyuu '95,PS,1994,Sports,Konami Digital Entertainment,0,0,0.11,0.01,0.11 +Spy vs Spy,XB,2005,Action,Global Star,0.08,0.02,0,0,0.11 +Coraline,PS2,2009,Action,D3Publisher,0.06,0.04,0,0.01,0.11 +The Price is Right: Decades,X360,2011,Misc,Ubisoft,0.11,0,0,0.01,0.11 +Sega Touring Car Championship,SAT,1996,Racing,Sega,0,0,0.11,0,0.11 +GoldenEye: Rogue Agent,DS,2005,Shooter,Electronic Arts,0.1,0,0,0.01,0.11 +JASF: Jane's Advanced Strike Fighters,PS3,2011,Simulation,Deep Silver,0.07,0.03,0,0.02,0.11 +Cake Mania,DS,2007,Puzzle,Majesco Entertainment,0.09,0.01,0,0.01,0.11 +Cold Fear,PS2,2005,Action,Ubisoft,0.06,0.04,0,0.01,0.11 +Akiba's Trip: Undead & Undressed,PS4,2014,Action,Acquire,0.08,0,0.01,0.02,0.11 +Zangeki no Reginleiv,Wii,2010,Action,Nintendo,0,0,0.11,0,0.11 +Stronghold Kingdoms,PC,2011,Strategy,DTP Entertainment,0,0.1,0,0.02,0.11 +Fabulous Finds,DS,2009,Puzzle,ValuSoft,0.1,0,0,0.01,0.11 +Vacation Sports,Wii,2009,Sports,Ubisoft,0.1,0.01,0,0.01,0.11 +Daito Giken Koushiki Pachi-Slot Simulator: Hihouden,PS2,2006,Misc,Daito,0,0,0.11,0,0.11 +PDC World Championship Darts: Pro Tour,Wii,2010,Sports,O-Games,0,0.1,0,0.01,0.11 +Pimp My Ride,Wii,2008,Racing,Activision,0.1,0,0,0.01,0.11 +Surf's Up,PSP,2007,Sports,Ubisoft,0.02,0.06,0,0.03,0.11 +Invizimals: The Lost Tribes,PSP,2011,Action,Sony Computer Entertainment,0,0.08,0,0.04,0.11 +Let's Play Garden,DS,2010,Simulation,Deep Silver,0.11,0,0,0.01,0.11 +NHL Hitz 20-03,XB,2002,Sports,Midway Games,0.08,0.02,0,0,0.11 +Murakumo: Renegade Mech Pursuit,XB,2002,Shooter,From Software,0.04,0.01,0.06,0,0.11 +Heavy Fire: Afghanistan,Wii,2011,Shooter,Mastiff,0.11,0,0,0.01,0.11 +Samurai Warriors 4-II,PS4,2015,Action,Tecmo Koei,0.03,0.02,0.06,0.01,0.11 +Open Season,X360,2006,Platform,Ubisoft,0.1,0,0,0.01,0.11 +WireWay,DS,2009,Adventure,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +Gun Metal,XB,2002,Shooter,Rage Software,0.08,0.02,0,0,0.11 +Just In Time Translations,DS,2009,Misc,THQ,0.1,0,0,0.01,0.11 +John Daly's ProStroke Golf,PS3,2010,Sports,O-Games,0.09,0.02,0,0.01,0.11 +Pro Yaky? Spirits 5,PS3,2008,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +Samurai Warriors 4-II,PS3,2015,Action,Tecmo Koei,0,0,0.11,0,0.11 +BloodRayne,GC,2002,Shooter,Universal Interactive,0.09,0.02,0,0,0.11 +The Hardy Boys: The Hidden Theft,Wii,2009,Adventure,The Adventure Company,0.07,0.03,0,0.01,0.11 +Metal Slug 4 & 5,PS2,2005,Shooter,SNK Playmore,0.05,0.04,0,0.01,0.11 +Pac-Man and the Ghostly Adventures 2,X360,2014,Adventure,Namco Bandai Games,0.05,0.05,0,0.01,0.11 +ECW Anarchy Rulz,PS,1999,Fighting,Acclaim Entertainment,0.06,0.04,0,0.01,0.11 +InuYasha: A Feudal Fairy Tale,PS,2002,Fighting,Namco Bandai Games,0,0,0.1,0.01,0.11 +Gem Quest: 4 Elements,DS,2011,Puzzle,Mastertronic,0.05,0.05,0,0.01,0.11 +Funky Barn,3DS,2012,Simulation,Ubisoft,0.07,0.03,0,0.01,0.11 +J-League Winning Eleven 9: Asia Championship,PS2,2005,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +Sabrina The Teenage Witch: Potion Commotion,GBA,2002,Action,Ubisoft,0.08,0.03,0,0,0.11 +Pac-Man Pinball Advance,GBA,2005,Misc,Zoo Digital Publishing,0.08,0.03,0,0,0.11 +Pocket Pets,DS,2007,Simulation,O3 Entertainment,0.1,0,0,0.01,0.11 +Yu Yu Hakusho: Tournament Tactics,GBA,2004,Strategy,Atari,0.08,0.03,0,0,0.11 +Home Run King,GC,2002,Sports,Sega,0.09,0.02,0,0,0.11 +Power Rangers: Super Legends,DS,2007,Action,Disney Interactive Studios,0.08,0.03,0,0.01,0.11 +To Heart 2: Dungeon Travelers,PSP,2011,Adventure,Aqua Plus,0,0,0.11,0,0.11 +Where the Wild Things Are,X360,2009,Platform,Warner Bros. Interactive Entertainment,0.1,0,0,0.01,0.11 +Lost in Blue,DS,2005,Adventure,Konami Digital Entertainment,0.07,0.02,0.02,0.01,0.11 +Criminal Girls: Invite Only,PSV,2013,Role-Playing,Nippon Ichi Software,0.04,0.02,0.04,0.02,0.11 +WWE All Stars,PS2,2011,Fighting,THQ,0.05,0.04,0,0.01,0.11 +MLB Power Pros,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +Truth or Lies,X360,2010,Misc,THQ,0.07,0.03,0,0.01,0.11 +Virtua Fighter CG Portrait Series Vol.1: Sarah Bryant,SAT,1995,Misc,Sega,0,0,0.11,0,0.11 +Kousoku Card Battle: Card Hero,DS,2007,Strategy,Nintendo,0,0,0.11,0,0.11 +AirForce Delta Strike,PS2,2004,Simulation,Konami Digital Entertainment,0.05,0.04,0,0.01,0.11 +Dora's Big Birthday Adventure,Wii,2010,Misc,Take-Two Interactive,0.1,0.01,0,0.01,0.11 +Tokimeki Memorial: Girl's Side 2nd Season,DS,2008,Adventure,Konami Digital Entertainment,0,0,0.11,0,0.11 +Disney's Peter Pan: Return to Never Land,GBA,2002,Platform,Ubisoft,0.08,0.03,0,0,0.11 +The Fairly Odd Parents: Breakin Da Rules,XB,2003,Platform,THQ,0.08,0.02,0,0,0.11 +Monkey Island: Special Edition Collection,PS3,2011,Adventure,Activision,0,0.08,0,0.03,0.11 +Capcom vs. SNK 2 EO,GC,2002,Fighting,Capcom,0.09,0.02,0,0,0.11 +Hot Wheels Velocity X,GC,2002,Racing,THQ,0.09,0.02,0,0,0.11 +Super Run For Money Tousouchuu Atsumare! Saikyou no Tousou Monotachi,3DS,2015,Action,Namco Bandai Games,0,0,0.11,0,0.11 +Spyborgs,Wii,2009,Action,Capcom,0.1,0.01,0,0.01,0.11 +American Girl: Julie Finds a Way,DS,2007,Adventure,THQ,0.1,0,0,0.01,0.11 +Contra Advance: The Alien Wars EX,GBA,2002,Shooter,Konami Digital Entertainment,0.08,0.03,0,0,0.11 +Jikkyou Powerful Pro Baseball 2016,PS3,2016,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +The History Channel: Battle for the Pacific,Wii,2007,Shooter,Activision,0.1,0,0,0.01,0.11 +18 Wheels of Steel: Extreme Trucker 2,PC,2011,Racing,Rondomedia,0.08,0.02,0,0.01,0.11 +Happy Feet Two,3DS,2011,Action,Warner Bros. Interactive Entertainment,0.08,0.02,0,0.01,0.11 +Army Men: RTS,PS2,2002,Strategy,3DO,0.05,0.04,0,0.01,0.11 +Mobile Suit Gundam: MS Sensen 0079,Wii,2007,Simulation,Namco Bandai Games,0,0,0.11,0,0.11 +Pinball Hall of Fame: The Williams Collection,PSP,2008,Misc,System 3 Arcade Software,0.09,0.01,0,0.01,0.11 +Space Chimps,X360,2008,Platform,Brash Entertainment,0.1,0,0,0.01,0.11 +The Spiderwick Chronicles,X360,2008,Action,Vivendi Games,0.09,0.01,0,0.01,0.11 +Project CARS,PC,2015,Racing,Slightly Mad Studios,0,0.1,0,0.01,0.11 +Green Lantern: Rise of the Manhunters,DS,2011,Action,Warner Bros. Interactive Entertainment,0.08,0.02,0,0.01,0.11 +Eragon,PSP,2006,Action,Vivendi Games,0.1,0,0,0.01,0.11 +Shin Kamaitachi no Yoru: 11 Hitome no Suspect,PS3,2011,Adventure,THQ,0,0,0.11,0,0.11 +Guitar Rock Tour,DS,2007,Misc,Gameloft,0.1,0,0,0.01,0.11 +Mortal Kombat: Deception,GC,2005,Fighting,Midway Games,0.09,0.02,0,0,0.11 +ESPN NHL Hockey,XB,2003,Sports,Sega,0.08,0.02,0,0,0.11 +Monster Lab,PS2,2008,Role-Playing,Eidos Interactive,0.05,0.04,0,0.01,0.11 +XXX,GBA,2002,Action,Activision,0.08,0.03,0,0,0.11 +Machinarium,PC,2009,Adventure,Daedalic,0,0.09,0,0.02,0.11 +The Smurfs 2,PS3,2013,Platform,Ubisoft,0.02,0.07,0,0.02,0.11 +Maximum Force,PS,1997,Shooter,GT Interactive,0.06,0.04,0,0.01,0.11 +NCIS 3D,3DS,2011,Adventure,Ubisoft,0.06,0.04,0,0.01,0.11 +Worms Forts: Under Siege,PS2,2004,Strategy,Acclaim Entertainment,0.05,0.04,0,0.01,0.11 +Alvin and the Chipmunks: Chipwrecked,DS,2011,Misc,505 Games,0.07,0.03,0,0.01,0.11 +Totally Spies! Totally Party,Wii,2008,Misc,Ubisoft,0.09,0.01,0,0.01,0.11 +Smash Court Tennis 3,X360,2007,Sports,Atari,0.08,0.02,0,0.01,0.11 +ATV Quad Kings,DS,2010,Racing,Storm City Games,0.1,0,0,0.01,0.11 +Naruto Shippuden: Naruto vs. Sasuke,DS,2008,Action,Takara Tomy,0.08,0,0.03,0.01,0.11 +DualPenSports,3DS,2011,Sports,Namco Bandai Games,0.05,0.05,0,0.01,0.11 +Project: Snowblind,XB,2005,Action,Eidos Interactive,0.08,0.02,0,0,0.11 +Astro Boy: The Video Game,PS2,2009,Action,D3Publisher,0.05,0.04,0,0.01,0.11 +HOP,DS,2011,Platform,505 Games,0.09,0.01,0,0.01,0.11 +Brave Story: New Traveler (US sales),PSP,2006,Role-Playing,Sony Computer Entertainment,0.11,0,0,0,0.11 +Disney's Extreme Skate Adventure,XB,2003,Sports,Activision,0.08,0.02,0,0,0.11 +Tales of Phantasia (PS1 & PSP Versions),PSP,2006,Role-Playing,Namco Bandai Games,0,0,0.11,0,0.11 +Kouchuu Ouja Mushi King: Super Collection,DS,2007,Action,Sega,0,0,0.11,0,0.11 +The Adventures of Jimmy Neutron Boy Genius: Jet Fusion,GC,2003,Action,THQ,0.09,0.02,0,0,0.11 +Pac-Man World 2,GBA,2005,Action,Zoo Digital Publishing,0.08,0.03,0,0,0.11 +Yoostar2,PS3,2011,Misc,Unknown,0.04,0.05,0,0.02,0.11 +Avatar: The Last Airbender,PSP,2006,Adventure,THQ,0.1,0,0,0.01,0.11 +Odama,GC,2006,Misc,Nintendo,0.07,0.02,0.02,0,0.11 +Karaoke Revolution Presents American Idol Encore,X360,2008,Misc,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +FlatOut: Ultimate Carnage,X360,2007,Racing,Empire Interactive,0.07,0.03,0,0.01,0.11 +Mobile Light Force 2,PS2,2002,Shooter,Taito,0.05,0.04,0,0.01,0.11 +Naval Ops: Warship Gunner,PS2,2003,Simulation,Tecmo Koei,0.05,0.04,0,0.01,0.11 +Soma Bringer,DS,2008,Role-Playing,Nintendo,0,0,0.11,0,0.11 +"Sesame Street: Ready, Set, Grover!",Wii,2011,Misc,Warner Bros. Interactive Entertainment,0.1,0,0,0.01,0.11 +Shin Sangoku Musou 6 Special,PSP,2011,Action,Tecmo Koei,0,0,0.11,0,0.11 +The Penguins of Madagascar: Dr. Blowhole Returns - Again!,X360,2011,Action,THQ,0.07,0.03,0,0.01,0.11 +Go! Sudoku (JP sales),PSP,2005,Puzzle,Sony Computer Entertainment,0,0,0.11,0,0.11 +EA Replay,PSP,2006,Action,Electronic Arts,0.09,0,0,0.01,0.11 +Paws & Claws Pet Vet: Australian Adventures,DS,2009,Simulation,THQ,0.1,0,0,0.01,0.11 +Bionicle Heroes,GC,2006,Shooter,Eidos Interactive,0.08,0.02,0,0,0.11 +Trauma Center: Under the Knife 2,DS,2008,Simulation,Atlus,0.1,0,0,0.01,0.11 +Puss in Boots,DS,2011,Action,THQ,0.09,0.01,0,0.01,0.11 +Split/Second,PSP,2010,Racing,Disney Interactive Studios,0.07,0.02,0,0.02,0.11 +The Croods: Prehistoric Party!,Wii,2013,Misc,D3Publisher,0.03,0.07,0,0.01,0.11 +The King of Fighters 2000/2001,PS2,2003,Fighting,Ignition Entertainment,0.05,0.04,0,0.01,0.11 +Lunacy,SAT,1996,Adventure,Sega,0,0,0.11,0,0.11 +Batman & Robin,PS,1998,Action,Acclaim Entertainment,0.06,0.04,0,0.01,0.11 +Snowboard Kids 2,N64,1999,Sports,Atlus,0.09,0.02,0,0,0.11 +Tonic Trouble,N64,1999,Platform,Ubisoft,0.09,0.02,0,0,0.11 +Nuclear Strike 64,N64,1999,Simulation,THQ,0.09,0.02,0,0,0.11 +Chameleon Twist,N64,1997,Platform,Sunsoft,0.09,0.02,0,0,0.11 +Top Gear Rally 2,N64,1999,Racing,Kemco,0.09,0.02,0,0,0.11 +Chopper Attack,N64,1997,Action,GT Interactive,0.09,0.02,0,0,0.11 +Vigilante 8: 2nd Offense,N64,2000,Racing,Activision,0.09,0.02,0,0,0.11 +Fighting Force 64,N64,1999,Action,Crave Entertainment,0.09,0.02,0,0,0.11 +Thief (2014),PC,2014,Action,Square Enix,0,0.09,0,0.02,0.11 +Rock Band: Metal Track Pack,Wii,2009,Misc,MTV Games,0.1,0,0,0.01,0.11 +Pac-Man and the Ghostly Adventures 2,PS3,2014,Adventure,Namco Bandai Games,0.05,0.04,0,0.02,0.11 +BlazBlue: Calamity Trigger Portable,PSP,2010,Fighting,PQube,0.07,0.01,0.03,0.01,0.11 +Night at the Museum: Battle of the Smithsonian,X360,2009,Action,Majesco Entertainment,0.07,0.03,0,0.01,0.11 +Street Fighter Collection,SAT,1996,Fighting,Capcom,0,0,0.11,0,0.11 +Ninja Assault,PS2,2002,Shooter,Namco Bandai Games,0.05,0.04,0,0.01,0.11 +Tales of Berseria,PS3,2016,Role-Playing,Namco Bandai Games,0,0,0.11,0,0.11 +Samurai Warriors 4,PSV,2014,Action,Tecmo Koei,0,0,0.11,0,0.11 +GunGriffon Blaze,PS2,2000,Simulation,Swing! Entertainment,0.05,0.04,0,0.01,0.11 +Higurashi no Naku Koro ni Matsuri,PS2,2007,Adventure,Alchemist,0,0,0.11,0,0.11 +Frontier Gate,PSP,2011,Role-Playing,Konami Digital Entertainment,0,0,0.11,0,0.11 +Transformers: Devastation,PS3,2015,Action,Activision,0.03,0.07,0,0.02,0.11 +Top Angler: Real Bass Fishing,PS2,2002,Sports,Xicat Interactive,0.05,0.04,0,0.01,0.11 +Gabrielle's Ghostly Groove 3D,3DS,2011,Adventure,Funbox Media,0.08,0.02,0,0.01,0.11 +Michael Phelps: Push the Limit,X360,2011,Sports,505 Games,0.09,0.01,0,0.01,0.11 +Breakout,PS,1999,Puzzle,Hasbro Interactive,0.06,0.04,0,0.01,0.11 +Frogger: Helmet Chaos,PSP,2005,Platform,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +AKB48+Me,3DS,2012,Action,Unknown,0,0,0.11,0,0.11 +Touch Detective 2 1/2,DS,2007,Adventure,505 Games,0.09,0,0.01,0.01,0.11 +Alias,PS2,2004,Action,Acclaim Entertainment,0.05,0.04,0,0.01,0.11 +Planet 51,X360,2009,Action,Sega,0.07,0.03,0,0.01,0.11 +Call of Juarez: The Cartel,PC,2011,Shooter,Ubisoft,0.05,0.05,0,0.01,0.11 +Sakura Taisen Hanagumi Tsuushin,SAT,1997,Misc,Sega,0,0,0.11,0,0.11 +Famicom Mini: Famicom Tantei Club - Kieta Koukeisha Zenkouhen,GBA,2004,Adventure,Nintendo,0,0,0.11,0,0.11 +Tornado Outbreak,Wii,2009,Action,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +Pimp My Ride,X360,2006,Racing,Activision,0.1,0.01,0,0.01,0.11 +Michael Jackson: The Experience,PSV,2011,Misc,Ubisoft,0.05,0.04,0,0.02,0.11 +Astro Boy: The Video Game,Wii,2009,Action,D3Publisher,0.1,0,0,0.01,0.11 +Outlaw Golf: Nine Holes of Christmas,XB,2002,Sports,Simon & Schuster Interactive,0.08,0.02,0,0,0.11 +NHL Rivals 2004,XB,2003,Sports,Microsoft Game Studios,0.08,0.02,0,0,0.11 +X-Men: Next Dimension,XB,2002,Fighting,Activision,0.08,0.02,0,0,0.11 +Tyco RC: Assault with a Battery,PS,1999,Racing,Syscom,0.06,0.04,0,0.01,0.11 +Felony 11-79,PS,1997,Racing,ASCII Entertainment,0.06,0.04,0,0.01,0.11 +Terraria,PSV,2013,Action,Screenlife,0,0.01,0.09,0,0.11 +Classic Road,SNES,1993,Sports,Victor Interactive,0,0,0.11,0,0.11 +Bust-A-Move DS,DS,2005,Puzzle,505 Games,0.08,0.02,0,0.01,0.11 +Nicktoons: Unite!,DS,2006,Adventure,THQ,0.1,0,0,0.01,0.11 +SimAnimals Africa,DS,2009,Simulation,Electronic Arts,0.08,0.02,0,0.01,0.11 +Death Jr.: Root of Evil,Wii,2008,Platform,Eidos Interactive,0.1,0,0,0.01,0.11 +One Piece: Burning Blood,PSV,2016,Fighting,Namco Bandai Games,0,0.03,0.07,0.01,0.11 +Panzer Dragoon Saga,SAT,1997,Role-Playing,Sega,0,0,0.11,0,0.11 +Sonic Generations,PC,2011,Platform,Sega,0.02,0.07,0,0.02,0.11 +Mushroom Men: Rise of the Fungi,DS,2008,Action,SouthPeak Games,0.1,0,0,0.01,0.11 +Shining Ark,PSP,2013,Role-Playing,Sega,0,0,0.11,0,0.11 +The Scorpion King: Rise of the Akkadian,GC,2002,Action,Universal Interactive,0.08,0.02,0,0,0.11 +Backyard Baseball '10,Wii,2009,Sports,Atari,0.1,0,0,0.01,0.11 +Transformers: Beast Wars Transmetals,PS,2000,Fighting,BAM! Entertainment,0.06,0.04,0,0.01,0.11 +GiFTPiA,GC,,Role-Playing,Unknown,0,0,0.11,0,0.11 +Animal Planet: Vet Life,DS,2009,Simulation,Activision,0.1,0,0,0.01,0.11 +My Little Sister Can't Be This Cute Portable,PSP,2012,Action,Namco Bandai Games,0,0,0.11,0,0.11 +Silly Bandz: Play The Craze,DS,2010,Puzzle,Deep Silver,0.1,0,0,0.01,0.11 +Charlie and the Chocolate Factory,XB,2005,Adventure,Global Star,0.08,0.02,0,0,0.11 +Constantine,PS2,2005,Action,SCi,0.05,0.04,0,0.01,0.11 +Where the Wild Things Are,PS3,2009,Platform,Warner Bros. Interactive Entertainment,0.09,0.01,0,0.01,0.11 +Dynasty Tactics 2,PS2,2003,Strategy,Tecmo Koei,0.05,0.04,0,0.01,0.11 +Real World Golf,PS2,2005,Sports,Valcon Games,0.05,0.04,0,0.01,0.11 +Winter Heat,SAT,1996,Sports,Sega,0,0,0.11,0,0.11 +Ty the Tasmanian Tiger 2: Bush Rescue,XB,2004,Platform,Electronic Arts,0.08,0.02,0,0,0.11 +Digimon Story: Cyber Sleuth,PS4,2016,Role-Playing,Namco Bandai Games,0,0.09,0,0.02,0.11 +JU-ON: The Grudge,Wii,2009,Action,Rising Star Games,0.08,0.01,0.01,0.01,0.11 +Defender,GC,2002,Misc,Midway Games,0.08,0.02,0,0,0.11 +Deca Sports DS,DS,2009,Sports,Hudson Soft,0.08,0.02,0,0.01,0.11 +The Polar Express,GC,2004,Adventure,THQ,0.08,0.02,0,0,0.11 +BMX XXX,XB,2002,Sports,Acclaim Entertainment,0.08,0.02,0,0,0.11 +ATV: Quad Frenzy,DS,2005,Racing,Majesco Entertainment,0.1,0,0,0.01,0.11 +Akiba's Trip: Undead & Undressed,PS3,2013,Action,Nippon Ichi Software,0.05,0.01,0.04,0.01,0.11 +Backyard NFL Football '10,X360,2009,Sports,Atari,0.1,0,0,0.01,0.11 +The Godfather: Mob Wars,PSP,2006,Action,Electronic Arts,0.09,0.01,0,0.01,0.11 +Lady Sia,GBA,2001,Platform,TDK Mediactive,0.08,0.03,0,0,0.11 +Rock Band: Metal Track Pack,PS2,2009,Misc,MTV Games,0.05,0.04,0,0.01,0.11 +Rocky Balboa,PSP,2007,Sports,Ubisoft,0.01,0.09,0,0.01,0.11 +The Lord of the Rings: Conquest,DS,2009,Action,Electronic Arts,0.09,0.01,0,0.01,0.11 +PriPara Mezase! Idol Grand Prix No.1!,3DS,2015,Misc,Takara Tomy,0,0,0.11,0,0.11 +National Geographic Challenge!,Wii,2011,Misc,Black Bean Games,0.08,0.02,0,0.01,0.11 +Robotech: Invasion,PS2,2004,Shooter,Global Star,0.05,0.04,0,0.01,0.11 +Hole in the Wall: Deluxe Edition,X360,2011,Misc,Ubisoft,0.1,0,0,0.01,0.11 +Dr. Seuss' The Cat in the Hat,XB,2003,Misc,Vivendi Games,0.08,0.02,0,0,0.11 +Rogue Warrior,X360,2009,Shooter,Bethesda Softworks,0.09,0.01,0,0.01,0.11 +Irozuki Tingle no Koi no Balloon Trip,DS,2009,Adventure,Nintendo,0,0,0.11,0,0.11 +Master of the Monster Lair,DS,2007,Role-Playing,Rising Star Games,0.1,0,0,0.01,0.11 +Hellboy: The Science of Evil,X360,2008,Action,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +Murdered: Soul Suspect,X360,2014,Action,Square Enix,0.06,0.04,0,0.01,0.11 +X-Men: Destiny,Wii,2011,Action,Activision,0.08,0.02,0,0.01,0.11 +Starsky & Hutch,GC,2003,Racing,BAM! Entertainment,0.08,0.02,0,0,0.11 +Final Fantasy I & II,NES,1994,Role-Playing,Square,0,0,0.11,0,0.11 +Rugby 15,PS4,2015,Sports,Bigben Interactive,0.03,0.06,0,0.02,0.11 +Langrisser IV,SAT,1997,Strategy,NCS,0,0,0.11,0,0.11 +FoxKids.com Micro Maniacs Racing,PS,2000,Racing,Codemasters,0.06,0.04,0,0.01,0.11 +Cats & Dogs: The Revenge of Kitty Galore,DS,2010,Action,505 Games,0.1,0,0,0.01,0.11 +Hexen: Beyond Heretic,PS,1997,Shooter,GT Interactive,0.06,0.04,0,0.01,0.11 +Arcade Party Pak,PS,1999,Misc,Midway Games,0.06,0.04,0,0.01,0.11 +Kotoba no Puzzle: Mojipittan Daijiten,PSP,2004,Puzzle,Namco Bandai Games,0,0,0.11,0,0.11 +Yamaha Supercross,DS,2009,Racing,Zoo Digital Publishing,0.1,0,0,0.01,0.11 +Picross 3D 2,3DS,2015,Puzzle,Nintendo,0,0,0.11,0,0.11 +Hitman Trilogy,PS2,2007,Action,Eidos Interactive,0.05,0.04,0,0.01,0.11 +Dragon Quest & Final Fantasy in Itadaki Street Portable,PSP,2006,Misc,Square Enix,0,0,0.11,0,0.11 +Tetris Evolution,X360,2007,Puzzle,THQ,0.08,0.02,0,0.01,0.11 +Patapon 2,PSP,2008,Misc,Sony Computer Entertainment,0,0.03,0.06,0.01,0.11 +Cabela's Adventure Camp,PS3,2011,Misc,Activision,0.06,0.03,0,0.02,0.11 +Attack of the Movies 3D,Wii,2010,Shooter,Majesco Entertainment,0.1,0,0,0.01,0.11 +Railroad Tycoon II,PS,1999,Strategy,PopTop Software,0.06,0.04,0,0.01,0.11 +Angry Birds Star Wars,WiiU,2013,Strategy,Activision,0.06,0.04,0,0.01,0.11 +Hysteria Hospital: Emergency Ward,DS,2009,Action,Oxygen Interactive,0.1,0,0,0.01,0.11 +The Cheetah Girls: Pop Star Sensations,DS,2007,Misc,Disney Interactive Studios,0.1,0,0,0.01,0.11 +Transformer: Rise of the Dark Spark,XOne,2014,Action,Activision,0.06,0.03,0,0.01,0.11 +Kirarin * Revolution: Kira Kira Idol Audition,DS,2006,Simulation,Konami Digital Entertainment,0,0,0.11,0,0.11 +Ranma 1/2: Akanekodan Teki Hihou,SNES,1993,Role-Playing,TOHO,0,0,0.11,0,0.11 +The BIGS,PSP,2007,Sports,Take-Two Interactive,0.1,0,0,0.01,0.11 +Blades of Time,X360,2012,Action,Konami Digital Entertainment,0.07,0.03,0,0.01,0.11 +My Boyfriend,DS,2008,Simulation,DTP Entertainment,0.1,0,0,0.01,0.11 +Scribblenauts Unmasked: A DC Comics Adventure,WiiU,2013,Puzzle,Warner Bros. Interactive Entertainment,0.1,0,0,0.01,0.11 +Victory Zone,PS,1995,Misc,Sony Computer Entertainment,0,0,0.1,0.01,0.11 +Rengoku: The Tower of Purgatory,PSP,2005,Action,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +Goal Storm '97,PS,1996,Sports,Konami Digital Entertainment,0.01,0,0.09,0.01,0.11 +Paws & Claws: Pet Resort,Wii,2009,Simulation,THQ,0.1,0,0,0.01,0.11 +Dynasty Warriors Advance,GBA,2005,Action,Nintendo,0.08,0.03,0,0,0.11 +Pachi-Slot Aruze Oukoku 3,PS,2000,Misc,Aruze Corp,0,0,0.1,0.01,0.11 +Science Papa,DS,2009,Misc,Activision,0.09,0.01,0,0.01,0.11 +Tournament Pool,Wii,2009,Sports,Destineer,0.1,0,0,0.01,0.11 +Cabela's North American Adventures,X360,2010,Sports,Activision,0.1,0,0,0.01,0.11 +Aqua Aqua,PS2,2000,Puzzle,3DO,0.05,0.04,0,0.01,0.11 +Viewtiful Joe: Double Trouble!,DS,2005,Action,Capcom,0.08,0,0.01,0.01,0.11 +Tom Clancy's Splinter Cell: Conviction,PC,2010,Action,Ubisoft,0,0.08,0,0.02,0.11 +Mega Man Zero 4,GBA,2005,Platform,Capcom,0.08,0.03,0,0,0.11 +Black Bass with Blue Marlin,PS,1999,Sports,Starfish,0.06,0.04,0,0.01,0.11 +Mega Man Battle Network 5: Double Team DS (JP sales),DS,2005,Role-Playing,Nintendo,0,0,0.11,0,0.11 +Utawarerumono: Chiriyukusha e no Komoriuta,PS2,2006,Adventure,Aqua Plus,0,0,0.11,0,0.11 +Hyper Formation Soccer,PS,1995,Sports,Human Entertainment,0,0,0.1,0.01,0.11 +Tiger Woods PGA Tour 06,GC,2005,Sports,Electronic Arts,0.08,0.02,0,0,0.11 +Jupiter Strike,PS,1994,Shooter,Acclaim Entertainment,0.06,0.04,0,0.01,0.11 +Sudokuro,DS,2007,Puzzle,Crave Entertainment,0.1,0,0,0.01,0.11 +BlazBlue: Continuum Shift II,3DS,2011,Fighting,PQube,0.05,0.01,0.04,0.01,0.11 +Saigo no Yakusoku no Monogatari,PSP,2011,Role-Playing,Unknown,0,0,0.11,0,0.11 +The Book of Unwritten Tales,PC,2009,Adventure,HMH Interactive,0,0.08,0,0.02,0.11 +Metal Gear Solid Integral,PS,1999,Adventure,Konami Digital Entertainment,0,0,0.1,0.01,0.11 +Naruto Shippuden 3D: The New Era,3DS,2011,Action,505 Games,0,0.04,0.06,0.01,0.11 +FIFA World Cup Germany 2006,PSP,2006,Sports,Electronic Arts,0.1,0,0,0.01,0.11 +Disney's Chicken Little: Ace In Action,Wii,,Shooter,Disney Interactive Studios,0.1,0,0,0.01,0.11 +Lego Star Wars: The Force Awakens,X360,2016,Action,Warner Bros. Interactive Entertainment,0.04,0.06,0,0.01,0.11 +Reign of Fire,GC,2002,Shooter,BAM! Entertainment,0.08,0.02,0,0,0.11 +Rock Band Track Pack: Classic Rock,PS3,2009,Misc,MTV Games,0.1,0,0,0.01,0.11 +Rock Revolution,DS,2008,Misc,Konami Digital Entertainment,0.1,0,0,0.01,0.11 +Big League Sports: Summer,DS,2009,Sports,Activision,0.1,0,0,0.01,0.11 +Tom Clancy's HAWX 2,Wii,2010,Action,Ubisoft,0.07,0.03,0,0.01,0.11 +Sakura Wars,DC,2000,Adventure,Sega,0,0,0.11,0,0.11 +Jampack Volume 14 (RP-T),PS2,2006,Misc,Sony Computer Entertainment,0.05,0.04,0,0.01,0.11 +Pro Yakyuu Team o Tsukurou! 2,DS,2009,Sports,Sega,0,0,0.11,0,0.11 +Mace Griffin: Bounty Hunter,XB,2003,Shooter,Electronic Arts,0.08,0.02,0,0,0.11 +Martian Gothic: Unification,PS,2001,Adventure,Take-Two Interactive,0.06,0.04,0,0.01,0.11 +Woody Woodpecker Racing,PS,1999,Racing,Konami Digital Entertainment,0.06,0.04,0,0.01,0.11 +Final Fantasy XII International Zodiac Job System,PS2,2007,Role-Playing,Square Enix,0,0,0.11,0,0.11 +Barbie in The 12 Dancing Princesses,DS,2007,Adventure,Activision,0.09,0.01,0,0.01,0.11 +Fight Club,XB,2004,Fighting,Vivendi Games,0.08,0.02,0,0,0.11 +Carnage Heart,PS,1995,Strategy,Sony Computer Entertainment,0.01,0.01,0.09,0.01,0.11 +"Grand Theft Auto: Mission Pack #1, London 1969",PS,1998,Adventure,Take-Two Interactive,0.06,0.04,0,0.01,0.11 +Kamen Rider: Climax Heroes,PS2,2009,Fighting,Namco Bandai Games,0,0,0.11,0,0.11 +"Robotics,Notes",PS3,2012,Adventure,5pb,0,0,0.11,0,0.11 +Disney Channel Collection Vol. 1,GBA,2004,Misc,,0.08,0.03,0,0,0.11 +Total Immersion Racing,PS2,2002,Racing,Empire Interactive,0.05,0.04,0,0.01,0.11 +Virtual Hydlide,SAT,1995,Role-Playing,Sega,0,0,0.11,0,0.11 +World Series of Poker: Tournament of Champions 2007 Edition,PSP,2006,Misc,Activision,0.1,0,0,0.01,0.11 +Tales of the World: Reve Unitia,3DS,2014,Role-Playing,Namco Bandai Games,0,0,0.11,0,0.11 +Karaoke Revolution,PS3,2009,Misc,Konami Digital Entertainment,0.07,0.03,0,0.01,0.11 +Warriors Orochi 3,PSP,2012,Action,Ubisoft Annecy,0,0,0.11,0,0.11 +The Bachelor: The Videogame,Wii,2010,Misc,Warner Bros. Interactive Entertainment,0.1,0,0,0.01,0.11 +Space Invaders,GBA,2002,Shooter,Activision,0.08,0.03,0,0,0.11 +BlazBlue: Chrono Phantasma,PSV,2014,Fighting,Arc System Works,0.06,0,0.03,0.02,0.11 +Digimon Digital Card Battle,PS,1999,Strategy,Namco Bandai Games,0.06,0.04,0,0.01,0.11 +Toukiden 2,PSV,2016,Action,Tecmo Koei,0,0,0.11,0,0.11 +Earth Defense Force 2: Invaders from Planet Space,PSV,2014,Action,Xseed Games,0.04,0.01,0.04,0.02,0.11 +Kuroko's Basketball: Miracle Game,PSP,2012,Sports,Namco Bandai Games,0,0,0.11,0,0.11 +Dreamer Series: Top Model,DS,2009,Simulation,DreamCatcher Interactive,0.1,0,0,0.01,0.11 +Jikkyou Powerful Pro Yakyuu 13 Ketteiban,PS2,2006,Sports,Konami Digital Entertainment,0,0,0.11,0,0.11 +Shovel Knight,WiiU,2015,Platform,Yacht Club Games,0.06,0.04,0,0.01,0.11 +Yuusha no Kuse ni Namaikida Or 3D,PSP,2010,Strategy,Sony Computer Entertainment,0,0,0.11,0,0.11 +The First Templar,X360,2011,Action,Kalypso Media,0.06,0.04,0,0.01,0.11 +X-Men: The Official Game,DS,2006,Action,Activision,0.1,0,0,0.01,0.11 +Dead to Rights II,XB,2005,Shooter,Electronic Arts,0.08,0.02,0,0,0.11 +Petz Fashion: Dogz & Catz,DS,2009,Simulation,Ubisoft,0.1,0,0,0.01,0.11 +Project: Horned Owl,PS,1995,Shooter,Sony Computer Entertainment,0.03,0.02,0.05,0.01,0.11 +Mobile Suit Gundam Age: Universe Accel / Cosmic Drive,PSP,2012,Action,Namco Bandai Games,0,0,0.11,0,0.11 +Child of Light,PSV,2014,Role-Playing,Ubisoft,0,0.07,0.02,0.02,0.11 +SingStar Guitar,PS3,2010,Misc,Sony Computer Entertainment,0,0.08,0,0.02,0.11 +Dragon Ball Z Super Gokuden: Kakusei-Hen,SNES,1995,Role-Playing,Namco Bandai Games,0,0,0.11,0,0.11 +Help Wanted: 50 Wacky Jobs,Wii,2008,Simulation,Hudson Soft,0.06,0.04,0,0.01,0.11 +Busou Shinki: Battle Masters Mk. 2,PSP,2011,Action,Konami Digital Entertainment,0,0,0.11,0,0.11 +Cabela's Dangerous Hunts 2,XB,2005,Sports,Activision,0.08,0.02,0,0,0.11 +Fairy Tail: Portable Guild,PSP,2010,Fighting,Konami Digital Entertainment,0,0,0.11,0,0.11 +Champion Jockey: G1 Jockey & Gallop Racer,Wii,2011,Sports,Tecmo Koei,0.05,0.04,0.01,0.01,0.11 +SimCity 2000,GBA,2003,Simulation,Zoo Digital Publishing,0.08,0.03,0,0,0.11 +Brunswick Circuit Pro Bowling 2,PS,2000,Sports,THQ,0.06,0.04,0,0.01,0.11 +D,PS,1995,Adventure,Acclaim Entertainment,0,0,0.1,0.01,0.11 +Winning Eleven: Pro Evolution Soccer 2007,X360,2006,Sports,Konami Digital Entertainment,0.09,0,0,0.01,0.1 +Ennichi no Tatsujin,Wii,2006,Misc,Namco Bandai Games,0,0,0.1,0,0.1 +Squinkies 2: Adventure Mall Surprize!,DS,2011,Platform,Activision,0.1,0,0,0.01,0.1 +Wizardry VI: Bane of the Cosmic Forge,SNES,1995,Role-Playing,ASCII Entertainment,0,0,0.1,0,0.1 +Power Pocket Koushien,DS,2005,Sports,Konami Digital Entertainment,0,0,0.1,0,0.1 +Gravity Games Bike: Street Vert Dirt,PS2,2002,Sports,Midway Games,0.05,0.04,0,0.01,0.1 +Contact,DS,2006,Role-Playing,Rising Star Games,0.07,0,0.03,0.01,0.1 +Pro Yaky? Spirits 2010,PS2,2010,Sports,Konami Digital Entertainment,0,0,0.1,0,0.1 +Princess Debut,DS,2008,Misc,Cave,0.1,0,0,0.01,0.1 +My First Dollhouse,DS,2010,Misc,505 Games,0.1,0,0,0.01,0.1 +Cloudy With a Chance of Meatballs,PS3,2009,Platform,Ubisoft,0.09,0.01,0,0.01,0.1 +Family Party: 30 Great Games,Wii,2008,Misc,D3Publisher,0.09,0.01,0,0.01,0.1 +Top Spin,PS2,2005,Sports,Take-Two Interactive,0.05,0.04,0,0.01,0.1 +Derby Stallion P,PSP,2006,Sports,Enterbrain,0,0,0.1,0,0.1 +Kenka Bancho Bros: Tokyo Battle Royale,PSP,2012,Action,Spike,0,0,0.1,0,0.1 +UFC: Tapout 2,XB,2003,Fighting,Capcom,0.08,0.02,0,0,0.1 +Adventure Time: Finn & Jake Investigations,PS3,2015,Action,Little Orbit,0.02,0.07,0,0.02,0.1 +Kamen Rider: Battride War II,PS3,2014,Action,Namco Bandai Games,0,0,0.1,0,0.1 +Kirarin * Revolution: Tsukutte Misechao! Kime * Kira Stage,DS,2007,Simulation,Konami Digital Entertainment,0,0,0.1,0,0.1 +Thrillville: Off the Rails,PSP,2007,Strategy,LucasArts,0.09,0,0,0.01,0.1 +Imagine: Soccer Captain,DS,2009,Sports,Ubisoft,0.1,0,0,0.01,0.1 +Jikkyou Powerful Pro Yakyuu 10,GC,2003,Sports,Konami Digital Entertainment,0,0,0.1,0,0.1 +Vexx,XB,2003,Platform,Acclaim Entertainment,0.08,0.02,0,0,0.1 +F1 Career Challenge,PS2,2003,Racing,Electronic Arts,0.05,0.04,0,0.01,0.1 +Taiko no Tatsujin: V Version,PSV,2015,Action,Namco Bandai Games,0,0,0.1,0,0.1 +Pariah,XB,2005,Action,Hip Interactive,0.08,0.02,0,0,0.1 +Cabela's Outdoor Adventures,XB,2005,Sports,Zoo Digital Publishing,0.08,0.02,0,0,0.1 +Agatha Christie: The ABC Murders,DS,2009,Adventure,JoWood Productions,0.08,0.01,0,0.01,0.1 +Metal Slug 3,XB,2004,Shooter,Ignition Entertainment,0.08,0.02,0,0,0.1 +The Smurfs 2,Wii,2013,Platform,Ubisoft,0,0.09,0,0.01,0.1 +Motocross Mania 3,PS2,2004,Racing,Take-Two Interactive,0.05,0.04,0,0.01,0.1 +Fatal Frame 2: Wii Edition,Wii,2012,Action,Nintendo,0,0,0.1,0,0.1 +Dancing on Ice,Wii,2010,Sports,Ghostlight,0,0.09,0,0.01,0.1 +Pro Yakyuu Famista DS 2009,DS,2009,Sports,Namco Bandai Games,0,0,0.1,0,0.1 +Banjo-Pilot,GBA,2005,Racing,THQ,0.07,0.03,0,0,0.1 +Family Feud: 2012 Edition,X360,2011,Misc,Ubisoft,0.1,0,0,0.01,0.1 +Gallop Racer 2006,PS2,2005,Sports,Tecmo Koei,0.02,0.02,0.06,0.01,0.1 +Army Corps of Hell,PSV,2011,Action,Square Enix,0.05,0.04,0,0.02,0.1 +Frogger: Ancient Shadow,PS2,2005,Platform,Konami Digital Entertainment,0.05,0.04,0,0.01,0.1 +Digimon Story: Lost Evolution,DS,2010,Role-Playing,Namco Bandai Games,0,0,0.1,0,0.1 +Exit DS,DS,2008,Puzzle,Square Enix,0.09,0,0.01,0.01,0.1 +Ski-Doo Snowmobile Challenge,PS3,2009,Racing,PQube,0.1,0,0,0.01,0.1 +Universe at War: Earth Assault,X360,2008,Action,Sega,0.09,0.01,0,0.01,0.1 +Despicable Me: The Game,PS2,2010,Platform,D3Publisher,0.05,0.04,0,0.01,0.1 +Metal Arms: Glitch in the System,GC,2003,Shooter,Vivendi Games,0.08,0.02,0,0,0.1 +The Whispered World,PC,2009,Adventure,Deep Silver,0,0.08,0,0.02,0.1 +Tom Clancy's Splinter Cell: Chaos Theory,GC,2005,Action,Ubisoft,0.08,0.02,0,0,0.1 +Learn Chess,DS,2009,Misc,DreamCatcher Interactive,0.1,0,0,0.01,0.1 +Happy Feet Two,PS3,,Action,Warner Bros. Interactive Entertainment,0.09,0.01,0,0.01,0.1 +Escape From Monkey Island,PS2,2001,Adventure,LucasArts,0.05,0.04,0,0.01,0.1 +Leisure Suit Larry: Box Office Bust,PS3,2009,Adventure,Codemasters,0.06,0.03,0,0.01,0.1 +The Wolf Among Us,PS3,2014,Adventure,Telltale Games,0.05,0.03,0,0.02,0.1 +Mickey's Speedway USA (weekly JP sales),N64,2000,Racing,Nintendo,0,0,0.1,0,0.1 +Who Wants to Be a Millionaire: 3rd Edition,Wii,2010,Misc,Ubisoft,0.1,0,0,0.01,0.1 +Boku no Natsuyasumi Portable: Mushi Mushi Hakase to Teppen-yama no Himitsu!!,PSP,2006,Adventure,Sony Computer Entertainment,0,0,0.1,0,0.1 +Miami Law,DS,2009,Adventure,Konami Digital Entertainment,0.1,0,0,0.01,0.1 +Macross 30: Ginga o Tsunagu Utagoe,PS3,2013,Shooter,Namco Bandai Games,0,0,0.1,0,0.1 +Kidou Senshi Gundam UC,PS3,2012,Action,Namco Bandai Games,0,0,0.1,0,0.1 +Yu-Gi-Oh! 5D's Wheelie Breakers,Wii,2009,Racing,Konami Digital Entertainment,0.09,0.01,0,0.01,0.1 +Nicktoons: MLB,DS,2011,Sports,Take-Two Interactive,0.1,0,0,0.01,0.1 +Gretzky NHL,PSP,2005,Sports,Sony Computer Entertainment,0.1,0,0,0.01,0.1 +Corvette Evolution GT,DS,2008,Racing,Black Bean Games,0.1,0,0,0.01,0.1 +May's Mystery: Forbidden Memories,DS,2011,Puzzle,Mastertronic,0.05,0.04,0,0.01,0.1 +PictoImage,DS,2007,Puzzle,Sega,0.1,0,0,0.01,0.1 +Etrian Odyssey II: Heroes of Lagaard,3DS,2014,Role-Playing,Atlus,0,0,0.1,0,0.1 +Ridge Racer 2,PSP,2006,Racing,Sony Computer Entertainment,0,0.03,0.07,0.01,0.1 +Momotarou Dentetsu 16,Wii,2007,Misc,Hudson Soft,0,0,0.1,0,0.1 +Igor: The Game,Wii,2008,Adventure,CDV Software Entertainment,0.09,0,0,0.01,0.1 +Dropship: United Peace Force,PS2,2002,Simulation,Sony Computer Entertainment,0.05,0.04,0,0.01,0.1 +Road Rash: Jailbreak,GBA,2003,Racing,Zoo Digital Publishing,0.07,0.03,0,0,0.1 +Rome: Total War,PC,2004,Strategy,Activision,0,0.08,0,0.02,0.1 +Green Lantern: Rise of the Manhunters,Wii,2011,Action,Warner Bros. Interactive Entertainment,0.06,0.04,0,0.01,0.1 +Castlevania: Lords of Shadow 2,X360,2014,Action,Konami Digital Entertainment,0.02,0.07,0,0.01,0.1 +Lucha Libre AAA: Heroes del Ring,PS3,2010,Fighting,Konami Digital Entertainment,0.1,0,0,0.01,0.1 +Syberia,XB,2003,Action,Microids,0.08,0.02,0,0,0.1 +G1 Jockey 3,PS2,2002,Sports,THQ,0.02,0.01,0.07,0,0.1 +Shrek: Forever After,X360,2010,Platform,Activision,0.09,0,0,0.01,0.1 +Atsumare! Power Pro Kun no DS Koushien,DS,,Sports,,0,0,0.1,0,0.1 +Revolution X,PS,1995,Shooter,Acclaim Entertainment,0.06,0.04,0,0.01,0.1 +Myst,DS,2007,Adventure,Midway Games,0.09,0,0,0.01,0.1 +Little Battlers eXperience W,3DS,2013,Role-Playing,Level 5,0,0,0.1,0,0.1 +Riviera: The Promised Land,GBA,2004,Role-Playing,Sting,0.07,0.03,0,0,0.1 +Risen 3: Titan Lords,PS3,2014,Role-Playing,Deep Silver,0.02,0.06,0,0.02,0.1 +Top Gun: Combat Zones,GBA,2004,Simulation,Mastiff,0.07,0.03,0,0,0.1 +Bujingai: The Forsaken City,PS2,2003,Fighting,505 Games,0.05,0.04,0,0.01,0.1 +Doko Demo Issho,PSP,2004,Misc,Sony Computer Entertainment,0,0,0.1,0,0.1 +Alvin and the Chipmunks: The Squeakquel,Wii,2009,Misc,Majesco Entertainment,0.09,0,0,0.01,0.1 +The Story of Noah's Ark,DS,2010,Action,SouthPeak Games,0.1,0,0,0.01,0.1 +Brooktown High: Senior Year,PSP,2007,Simulation,Konami Digital Entertainment,0.09,0,0,0.01,0.1 +Astro Boy: The Video Game,DS,2009,Action,D3Publisher,0.09,0,0,0.01,0.1 +Zombie Army Trilogy,XOne,2015,Shooter,Rebellion Developments,0.04,0.05,0,0.01,0.1 +Beyond Good & Evil,XB,2003,Adventure,Ubisoft,0.08,0.02,0,0,0.1 +Blitz: The League II,X360,2008,Sports,Midway Games,0.08,0.01,0,0.01,0.1 +Death By Degrees,PS2,2005,Action,Sony Computer Entertainment,0.05,0.04,0,0.01,0.1 +Vandal Hearts II,PS,1999,Strategy,Konami Digital Entertainment,0.06,0.04,0,0.01,0.1 +Gouketuji Ichizoku 2: Chottodake Saikyou Densetsu,PS,1995,Fighting,Atlus,0,0,0.1,0.01,0.1 +Samurai Warriors Chronicles 2nd,3DS,2012,Action,Ubisoft Annecy,0,0,0.1,0,0.1 +Medal of Honor: Vanguard,Wii,2007,Shooter,Electronic Arts,0.06,0.03,0,0.01,0.1 +Toaru Majutsu no Index,PSP,2011,Adventure,Kadokawa Shoten,0,0,0.1,0,0.1 +Dora's Cooking Club,DS,2010,Misc,Take-Two Interactive,0.08,0.01,0,0.01,0.1 +ESA Game Pack,PS3,2010,Misc,Sony Computer Entertainment,0.09,0,0,0.01,0.1 +America's Next Top Model,DS,2008,Action,Eidos Interactive,0.1,0,0,0.01,0.1 +God Eater 2: Rage Burst,PS4,2015,Role-Playing,Namco Bandai Games,0,0.01,0.09,0,0.1 +Uta no Prince-Sama: Music,PSP,2011,Misc,Broccoli,0,0,0.1,0,0.1 +UNO / Skip-Bo / UNO Freefall,DS,2006,Misc,Zoo Digital Publishing,0.1,0,0,0.01,0.1 +Culdcept DS,DS,2008,Strategy,Sega,0,0,0.1,0,0.1 +Colin McRae Rally 04,XB,2004,Racing,Codemasters,0.08,0.02,0,0,0.1 +Monster Jam: Maximum Destruction,GBA,2002,Racing,Ubisoft,0.07,0.03,0,0,0.1 +The King of Fighters: Dream Match 1999,DC,1999,Fighting,SNK,0,0,0.1,0,0.1 +FIFA Street,XB,2005,Sports,Electronic Arts,0.08,0.02,0,0,0.1 +Truth or Lies,Wii,2010,Misc,THQ,0.04,0.05,0,0.01,0.1 +Weiss Schwarz Portable,PSP,2011,Strategy,Namco Bandai Games,0,0,0.1,0,0.1 +Kirarin * Revolution: Mezase! Idol Queen,DS,2007,Simulation,Konami Digital Entertainment,0,0,0.1,0,0.1 +Dungeons & Dragons Tactics,PSP,2007,Strategy,Atari,0.09,0,0,0.01,0.1 +X-Men: Children of the Atom,PS,1998,Fighting,Acclaim Entertainment,0.06,0.04,0,0.01,0.1 +Hot Wheels: Stunt Track Challenge,XB,2004,Racing,THQ,0.08,0.02,0,0,0.1 +Dora & Kai-Lan's Pet Shelter,DS,2011,Strategy,Take-Two Interactive,0.08,0.01,0,0.01,0.1 +DJ Max Fever,PSP,2009,Misc,PM Studios,0.09,0,0,0.01,0.1 +Math Blaster in the Prime Adventure,DS,2009,Misc,Majesco Entertainment,0.09,0,0,0.01,0.1 +Football Director DS,DS,2008,Sports,Pinnacle,0,0.1,0,0,0.1 +Shellshock,PS,1995,Action,Core Design Ltd.,0.06,0.04,0,0.01,0.1 +Blue Stinger,DC,1999,Adventure,Activision,0,0,0.1,0,0.1 +Yggdra Union: We'll Never Fight Alone,PSP,2008,Role-Playing,Sting,0.05,0,0.04,0.01,0.1 +The Destiny of Zorro,Wii,2009,Action,505 Games,0.1,0,0,0.01,0.1 +Hot Wheels Ultimate Racing,PSP,2007,Action,Activision,0.09,0,0,0.01,0.1 +Capcom vs. SNK 2 EO,XB,2003,Fighting,Capcom,0.08,0.02,0,0,0.1 +Inazuma Eleven GO Strikers 2013,Wii,2012,Role-Playing,Level 5,0,0,0.1,0,0.1 +Metal Gear Solid HD Edition,PS3,2011,Action,Konami Digital Entertainment,0,0,0.1,0,0.1 +Hunter: The Reckoning,GC,2002,Action,Virgin Interactive,0.08,0.02,0,0,0.1 +Daito Giken Koushiki Pachi-Slot Simulator: Hihouden - Ossu! Banchou - Yoshimune DS,DS,2007,Misc,Paon,0,0,0.1,0,0.1 +Urban Chaos,PS,1999,Action,Eidos Interactive,0.06,0.04,0,0.01,0.1 +Creeper World 3: Arc Eternal,Wii,2009,Strategy,Namco Bandai Games,0,0,0.1,0,0.1 +Monkey Mischief! Party Time,Wii,2008,Misc,Activision,0.09,0,0,0.01,0.1 +Draglade,DS,2007,Fighting,505 Games,0.09,0,0,0.01,0.1 +DS Kageyama Method: Dennou Hanpuku - Tadashii Kanji Kakitori-Kun,DS,2007,Misc,Shogakukan,0,0,0.1,0,0.1 +Water Sports,Wii,2009,Action,Avanquest,0.05,0.04,0,0.01,0.1 +Freaky Flyers,PS2,2003,Racing,Midway Games,0.05,0.04,0,0.01,0.1 +Baten Kaitos Origins,GC,2006,Role-Playing,Unknown,0.06,0.02,0.02,0,0.1 +E?O?E: Eve of Extinction,PS2,2002,Fighting,Eidos Interactive,0.04,0.03,0.02,0.01,0.1 +Pro Evolution Soccer 2016,XOne,2015,Sports,Konami Digital Entertainment,0.03,0.06,0,0.01,0.1 +Dark Summit,XB,2001,Sports,THQ,0.08,0.02,0,0,0.1 +Penguin no Mondai: The World,DS,2010,Adventure,Konami Digital Entertainment,0,0,0.1,0,0.1 +My Healthy Cooking Coach,DS,,Simulation,Unknown,0.09,0,0,0.01,0.1 +Yaiba: Ninja Gaiden Z,PS3,2014,Action,Tecmo Koei,0.05,0.04,0,0.02,0.1 +Flushed Away,DS,2006,Platform,D3Publisher,0.09,0,0,0.01,0.1 +Surf's Up,X360,2007,Sports,Ubisoft,0.09,0,0,0.01,0.1 +Hakuouki Portable,PSP,2009,Adventure,Idea Factory,0,0,0.1,0,0.1 +NHL 2004,GC,2003,Sports,Electronic Arts,0.08,0.02,0,0,0.1 +Fallout 3 Game Add-On Pack: The Pitt and Operation: Anchorage,X360,2009,Role-Playing,Bethesda Softworks,0.09,0.01,0,0.01,0.1 +Cabela's Adventure Camp,X360,2011,Misc,Activision,0.07,0.02,0,0.01,0.1 +KORG DS-10 Synthesizer Plus,DS,2009,Misc,AQ Interactive,0.08,0,0.02,0.01,0.1 +World Snooker Championship 2007,PS3,2007,Sports,Sega,0,0.1,0,0,0.1 +X-Men: The Official Game,XB,2006,Action,Activision,0.08,0.02,0,0,0.1 +RLH: Run Like Hell,PS2,2002,Shooter,Virgin Interactive,0.05,0.04,0,0.01,0.1 +Digimon Adventure,PSP,2013,Role-Playing,Namco Bandai Games,0,0,0.1,0,0.1 +Doom 3,PC,2004,Shooter,Activision,0.05,0.04,0,0.01,0.1 +The Ant Bully,PS2,2006,Platform,Midway Games,0.05,0.04,0,0.01,0.1 +Conflict: Global Terror,XB,2005,Shooter,SCi,0.08,0.02,0,0,0.1 +Minority Report: Everybody Runs,GC,2002,Action,Activision,0.08,0.02,0,0,0.1 +Monster Rancher EVO,PS2,2005,Role-Playing,Tecmo Koei,0.02,0.02,0.05,0.01,0.1 +Project Hacker: Kakusei,DS,2006,Action,Nintendo,0,0,0.1,0,0.1 +Pajama Sam: Don't Fear The Dark,Wii,2008,Adventure,Atari,0.09,0,0,0.01,0.1 +GRID Autosport,X360,2014,Racing,Codemasters,0.03,0.06,0,0.01,0.1 +World Series of Poker 2008: Battle for the Bracelets,PS3,2007,Misc,Activision,0.08,0.01,0,0.01,0.1 +Wasteland 2,PS4,2015,Role-Playing,Deep Silver,0.07,0,0.01,0.02,0.1 +Guitar Hero: Van Halen,PS2,2009,Misc,Activision,0.05,0.04,0,0.01,0.1 +Olympic Summer Games: Atlanta 1996,PS,1996,Sports,U.S. Gold,0.06,0.04,0,0.01,0.1 +Little League World Series Baseball 2008,Wii,2008,Sports,Activision,0.09,0,0,0.01,0.1 +Disney's The Haunted Mansion,GC,2003,Platform,Take-Two Interactive,0.08,0.02,0,0,0.1 +Tatsunoko vs. Capcom: Cross Generation of Heroes,Wii,2008,Fighting,Capcom,0,0,0.1,0,0.1 +Alvin and the Chipmunks: Chipwrecked,X360,2011,Misc,505 Games,0.08,0.01,0,0.01,0.1 +Darius Gaiden,SAT,1995,Shooter,Acclaim Entertainment,0,0,0.1,0,0.1 +All Kamen Rider: Rider Generation 2,DS,2012,Action,Namco Bandai Games,0,0,0.1,0,0.1 +Beach Spikers: Virtua Beach Volleyball,GC,2002,Sports,Sega,0.08,0.02,0,0,0.1 +Total War: WARHAMMER,PC,2016,Strategy,Sega,0,0.1,0,0.01,0.1 +Tom Clancy's Ghost Recon: Predator,PSP,2010,Shooter,Ubisoft,0.07,0.02,0,0.02,0.1 +You Don't Know Jack: Mock 2,PS,2000,Misc,Vivendi Games,0.06,0.04,0,0.01,0.1 +Blue Dragon: Awakened Shadow,DS,2009,Role-Playing,Namco Bandai Games,0.06,0,0.03,0,0.1 +3D Tank Warfare Simulator Panzer Front,PS,1999,Simulation,Avalon Interactive,0.06,0.04,0,0.01,0.1 +[Prototype 2],PC,2012,Action,Activision,0.07,0.02,0,0.01,0.1 +NASCAR The Game: Inside Line,X360,2012,Racing,Activision,0.09,0,0,0.01,0.1 +Sudoku Mania,DS,2006,Puzzle,Zoo Digital Publishing,0.09,0,0,0.01,0.1 +Blades of Time,PS3,2012,Action,Konami Digital Entertainment,0.04,0.03,0.01,0.01,0.1 +Rolling Stone: Drum King,Wii,2009,Misc,505 Games,0.09,0,0,0.01,0.1 +Jade Cocoon 2,PS2,2001,Role-Playing,Ubisoft,0.05,0.04,0,0.01,0.1 +Lord of Apocalypse,PSV,2011,Role-Playing,Square Enix,0,0,0.1,0,0.1 +Bejeweled Twist,DS,2010,Puzzle,PopCap Games,0,0.09,0,0.01,0.1 +Rock Band 3,DS,2010,Misc,MTV Games,0.09,0.01,0,0.01,0.1 +Kabushiki Baibai Trainer: Kabutore!,DS,2006,Simulation,Konami Digital Entertainment,0,0,0.1,0,0.1 +Sword & Sorcery,SAT,1996,Role-Playing,Micro Cabin,0,0,0.1,0,0.1 +Van Helsing,GBA,2004,Action,Activision,0.07,0.03,0,0,0.1 +NFL Tour,X360,2008,Sports,Electronic Arts,0.09,0,0,0.01,0.1 +Bee Movie Game,PS2,2007,Action,Activision,0.05,0.04,0,0.01,0.1 +NBA Live 16,XOne,2015,Sports,Electronic Arts,0.08,0.01,0,0.01,0.1 +Spider-Man: Web of Shadows,DS,2008,Action,Activision,0.09,0,0,0.01,0.1 +Bullet Witch,X360,2006,Shooter,Atari,0.07,0.01,0.02,0.01,0.1 +USA Today Puzzle Craze,DS,2009,Puzzle,Destineer,0.09,0,0,0.01,0.1 +Machi-Ing Maker 3 x Tousouchuu,PSP,2010,Simulation,D3Publisher,0,0,0.1,0,0.1 +Kelly Slater's Pro Surfer,XB,2002,Sports,Activision,0.08,0.02,0,0,0.1 +SNK vs. Capcom: SVC Chaos,XB,2004,Fighting,Ignition Entertainment,0.08,0.02,0,0,0.1 +Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.,PS2,2005,Platform,Global Star,0.05,0.04,0,0.01,0.1 +Choujikuu Yousai Macross: Ai Oboete Imasu ka,SAT,1997,Shooter,Namco Bandai Games,0,0,0.1,0,0.1 +Vanishing Point,PS,2001,Racing,Acclaim Entertainment,0.06,0.04,0,0.01,0.1 +SCORE International Baja 1000: The Official Game,Wii,2008,Racing,Activision,0.09,0,0,0.01,0.1 +Dragonseeds,PS,1998,Action,Jaleco,0.03,0.02,0.04,0.01,0.1 +The Bard's Tale,XB,2004,Role-Playing,Ubisoft,0.08,0.02,0,0,0.1 +Opoona,Wii,2007,Role-Playing,Tecmo Koei,0.08,0,0.01,0.01,0.1 +Big League Sports,Wii,2008,Sports,Activision,0.09,0.01,0,0.01,0.1 +nail'd,X360,2010,Racing,Deep Silver,0.08,0.02,0,0.01,0.1 +Nodame Cantabile,DS,2007,Misc,Namco Bandai Games,0,0,0.1,0,0.1 +Alien Hominid,PS2,2004,Shooter,Zoo Digital Publishing,0.05,0.04,0,0.01,0.1 +Record of Agarest War Zero,X360,2010,Strategy,Compile Heart,0.09,0,0,0.01,0.1 +L'Aigle de Guerre,GBA,2001,Strategy,Nintendo,0,0,0.1,0,0.1 +Jeopardy!,N64,1998,Misc,GameTek,0.08,0.02,0,0,0.1 +Disney's Donald Duck: Goin' Quackers,N64,2000,Platform,Ubisoft,0.08,0.02,0,0,0.1 +Aidyn Chronicles: The First Mage,N64,2001,Role-Playing,THQ,0.08,0.02,0,0,0.1 +Aquapazza: Aquaplus Dream Match,PS3,2012,Fighting,Aqua Plus,0.05,0,0.05,0.01,0.1 +Virtual Pool 64,N64,1998,Sports,Crave Entertainment,0.08,0.02,0,0,0.1 +Indy Racing 2000,N64,2000,Racing,Infogrames,0.08,0.02,0,0,0.1 +Flying Dragon,N64,1997,Fighting,Natsume,0.08,0.02,0,0,0.1 +International Superstar Soccer 64 (weekly JP sales),N64,1997,Sports,Konami Digital Entertainment,0,0,0.05,0.05,0.1 +Lode Runner 3-D,N64,1998,Action,Infogrames,0.08,0.02,0,0,0.1 +The History Channel: Civil War - Secret Missions,PS3,2008,Shooter,Activision,0.09,0,0,0.01,0.1 +GT64 Championship Edition,N64,1998,Racing,Ocean,0.08,0.02,0,0,0.1 +Milo's Astro Lanes,N64,1998,Sports,Interplay,0.08,0.02,0,0,0.1 +Gekido,PS,1999,Fighting,Infogrames,0.06,0.04,0,0.01,0.1 +Harry Potter and the Deathly Hallows - Part 1,PC,2010,Action,Electronic Arts,0.08,0.02,0,0.01,0.1 +Fifi and the Flowertots,DS,2009,Misc,Avanquest,0,0.09,0,0.01,0.1 +Disney's The Jungle Book,GBA,2002,Platform,Ubisoft,0.07,0.03,0,0,0.1 +King of Clubs: Mini Golf,Wii,2008,Sports,Oxygen Interactive,0.09,0,0,0.01,0.1 +Ultimate Marvel vs. Capcom 3,PS3,2011,Fighting,Capcom,0,0.04,0.04,0.01,0.1 +Cate West: The Vanishing Files,DS,2008,Adventure,Oxygen Interactive,0.08,0.01,0,0.01,0.1 +Army Men World War: Team Assault,PS,2001,Action,3DO,0.06,0.04,0,0.01,0.1 +Tom Clancy's Splinter Cell,GBA,2003,Action,Ubisoft,0.07,0.03,0,0,0.1 +Harry Potter and the Deathly Hallows - Part 2,PC,2011,Action,Electronic Arts,0.05,0.04,0,0.01,0.1 +NHL 2K6,X360,2005,Sports,Take-Two Interactive,0.09,0,0,0.01,0.1 +Marvel vs. Capcom: Clash of Super Heroes,DC,1999,Fighting,Capcom,0,0,0.1,0,0.1 +NBA Ballers: Rebound,PSP,2006,Sports,Midway Games,0.09,0,0,0.01,0.1 +King's Field: The Ancient City,PS2,2001,Role-Playing,Metro 3D,0.05,0.04,0,0.01,0.1 +LEGO Rock Raiders,PS,1999,Strategy,LEGO Media,0.06,0.04,0,0.01,0.1 +Silent Scope Complete,XB,2004,Shooter,Konami Digital Entertainment,0.07,0.02,0,0,0.1 +Digimon All-Star Rumble,PS3,2014,Fighting,Namco Bandai Games,0.06,0.03,0,0.02,0.1 +Ghost in the Shell,PS,1997,Simulation,Sony Computer Entertainment,0.06,0.04,0,0.01,0.1 +Atelier Sophie: The Alchemist of the Mysterious Book,PS4,2015,Role-Playing,Tecmo Koei,0.01,0.02,0.06,0.01,0.1 +Marvel Super Hero Squad: The Infinity Gauntlet,3DS,2011,Action,THQ,0.07,0.02,0,0.01,0.1 +Evil Dead: Fistfull of Boomstick,XB,2003,Action,THQ,0.07,0.02,0,0,0.1 +Tom Clancy's Classic Trilogy,XB,2004,Shooter,Ubisoft,0.07,0.02,0,0,0.1 +Harvest Moon DS Cute (jp sales),DS,2005,Simulation,Marvelous Interactive,0,0,0.1,0,0.1 +Bleach: Dark Souls (JP sales),DS,2007,Fighting,Sega,0,0,0.1,0,0.1 +Indigo Prophecy,XB,2005,Adventure,Atari,0.07,0.03,0,0,0.1 +NASCAR '14,PS3,2014,Racing,Deep Silver,0.09,0,0,0.01,0.1 +Kiku! Kaku! Kotoba o Fuyasu! Hajimete no Eigo Training,DS,2007,Misc,Benesse,0,0,0.1,0,0.1 +Over the Hedge,XB,2006,Platform,Activision,0.07,0.02,0,0,0.1 +Sneakers,XB,2002,Puzzle,Microsoft Game Studios,0.07,0.02,0,0,0.1 +Sword Art Online: Lost Song,PS3,2015,Role-Playing,Namco Bandai Games,0,0,0.1,0,0.1 +Crime Crackers,PS,1994,Role-Playing,Sony Computer Entertainment,0,0,0.09,0.01,0.1 +Earth Defense Force 2025.1: The Shadow of New Despair,PS4,2015,Action,D3Publisher,0,0,0.1,0,0.1 +Pro Evolution Soccer 2013,Wii,2012,Sports,Konami Digital Entertainment,0,0.03,0.06,0,0.1 +Micro Machines V3,PS,1997,Racing,Codemasters,0.06,0.04,0,0.01,0.1 +Alvin and the Chipmunks: Chipwrecked,Wii,2011,Misc,505 Games,0.08,0.01,0,0.01,0.1 +College Hoops 2K6,XB,2005,Sports,Take-Two Interactive,0.07,0.02,0,0,0.1 +"Sakura Wars 2: Kimi, Shinitamou koto Nakare",DC,2000,Adventure,Sega,0,0,0.1,0,0.1 +NatGeo Challenge! Wild Life,PS3,2010,Misc,Black Bean Games,0.05,0.03,0,0.01,0.1 +Idol Janshi Suchie-Pai Remix,SAT,1995,Misc,Jaleco,0,0,0.1,0,0.1 +Kung Fu Panda 2,PS3,2011,Action,THQ,0.04,0.04,0,0.02,0.1 +Star Wars: Lethal Alliance,DS,2006,Action,Ubisoft,0.08,0.01,0,0.01,0.1 +Exhibition Volume 03,XB,2003,Misc,Microsoft Game Studios,0.07,0.02,0,0,0.1 +Zero4 Champ RR-Z,SNES,1995,Racing,Media Rings,0,0,0.1,0,0.1 +Initial D: Street Stage,PSP,2006,Racing,Sega,0,0,0.1,0,0.1 +Tales of Innocence R,PSV,2012,Role-Playing,Namco Bandai Games,0,0,0.1,0,0.1 +Generator Rex: Agent of Providence,3DS,2011,Action,Activision,0.07,0.02,0,0.01,0.1 +Petz Hamsterz Superstarz,DS,2009,Simulation,Ubisoft,0.09,0,0,0.01,0.1 +NeverDead,X360,2012,Shooter,Konami Digital Entertainment,0.06,0.03,0,0.01,0.1 +Happy Feet Two,X360,,Action,Warner Bros. Interactive Entertainment,0.08,0.01,0,0.01,0.1 +Age of Empires II: The Age of Kings,PC,1999,Strategy,Microsoft Game Studios,0.01,0.08,0,0.02,0.1 +"Warhammer 40,000: Dawn of War II - Chaos Rising",PC,2010,Strategy,THQ,0.08,0.01,0,0.01,0.1 +Predator: Concrete Jungle,XB,2005,Action,Vivendi Games,0.07,0.02,0,0,0.1 +CSI: Hard Evidence,X360,2007,Adventure,Ubisoft,0.07,0.02,0,0.01,0.1 +F1 2014,PC,2014,Racing,Codemasters,0,0.09,0,0.01,0.1 +Code Lyoko: Quest for Infinity,Wii,2007,Action,Game Factory,0.07,0.02,0,0.01,0.1 +Fate/hollow ataraxia,PSV,2014,Adventure,Type-Moon,0,0,0.1,0,0.1 +Lucky * Star: Ryouou Gakuen Outousai,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.1,0,0.1 +Scribblenauts Unmasked: A DC Comics Adventure,3DS,2013,Puzzle,Warner Bros. Interactive Entertainment,0.09,0,0,0.01,0.1 +Murder in Venice,DS,2011,Adventure,City Interactive,0.06,0.03,0,0.01,0.1 +Nancy Drew: The Model Mysteries,DS,2010,Puzzle,THQ,0.09,0,0,0.01,0.1 +Ride,XOne,2015,Racing,Milestone S.r.l.,0.04,0.05,0,0.01,0.1 +Naruto Shippuden: Gekito Ninja Taisen! EX,Wii,2007,Fighting,Takara Tomy,0,0,0.1,0,0.1 +Universal Studios Theme Parks Adventure,GC,2001,Misc,Kemco,0.08,0.02,0,0,0.1 +Nihon Keizai Shinbunsha Kanshuu: Shiranai Mamade wa Son o Suru Mono ya Okane no Shikumi DS,DS,2009,Misc,Nintendo,0,0,0.1,0,0.1 +Little League World Series Baseball 2010,X360,2010,Sports,Activision,0.09,0,0,0.01,0.1 +Piglet's Big Game,PS2,2003,Platform,Gotham Games,0.05,0.04,0,0.01,0.1 +Real Bout Garou Densetsu,SAT,1996,Fighting,SNK,0,0,0.1,0,0.1 +Arcania: Gothic 4,X360,2010,Role-Playing,JoWood Productions,0.03,0.04,0.01,0.01,0.1 +Ben 10 Galactic Racing,X360,2011,Racing,D3Publisher,0.07,0.02,0,0.01,0.1 +Project FIFA World Cup,PS2,2002,Sports,Electronic Arts,0,0,0.1,0,0.1 +System Flaw,DS,2009,Shooter,Enjoy Gaming ltd.,0.09,0,0,0.01,0.1 +Rio,X360,2011,Misc,THQ,0.05,0.03,0,0.01,0.1 +Rocky: Legends,XB,2004,Action,Ubisoft,0.07,0.02,0,0,0.1 +Lord of Apocalypse,PSP,2011,Role-Playing,Square Enix,0,0,0.1,0,0.1 +The BIGS 2,PSP,2009,Sports,Take-Two Interactive,0.09,0,0,0.01,0.1 +Horse Life Adventures,DS,2008,Simulation,Deep Silver,0.08,0.01,0,0.01,0.1 +iCarly 2: iJoin The Click!,Wii,2010,Adventure,Activision,0.08,0.01,0,0.01,0.1 +Burnout Paradise: The Ultimate Box,PC,2009,Racing,Electronic Arts,0,0.08,0,0.01,0.1 +Famicom Mini: Famicom Tantei Club Part II - Ushiro ni Tatsu Shoujo Zenkouhen,GBA,2004,Adventure,Nintendo,0,0,0.1,0,0.1 +The Secret Saturdays: Beasts of the 5th Sun,Wii,2009,Action,D3Publisher,0.09,0,0,0.01,0.1 +Winter Stars,X360,2011,Sports,Deep Silver,0.05,0.04,0,0.01,0.1 +Higurashi no Nakukoru ni Kizuna: Dai-Ni-Kan - Sou,DS,2008,Adventure,Alchemist,0,0,0.1,0,0.1 +Star Trek: Shattered Universe,PS2,2004,Simulation,Global Star,0.05,0.04,0,0.01,0.1 +The Land Before Time: Great Valley Racing Adventure,PS,2001,Racing,TDK Mediactive,0.05,0.04,0,0.01,0.1 +Ultra Street Fighter IV,PS4,2015,Fighting,Capcom,0,0.08,0,0.01,0.1 +Animal Planet: Vet Life,Wii,2009,Simulation,Activision,0.09,0,0,0.01,0.1 +Cubic Ninja,3DS,2011,Platform,Ubisoft,0.05,0.04,0,0.01,0.1 +Championship Pony,DS,2008,Simulation,"Destination Software, Inc",0.09,0,0,0.01,0.1 +Harvest Moon: Frantic Farming,DS,2009,Puzzle,Rising Star Games,0.08,0.01,0,0.01,0.1 +Rise of the Tomb Raider,PC,2016,Adventure,Square Enix,0,0.09,0,0.01,0.1 +Pinball Hall of Fame: The Williams Collection,3DS,2011,Misc,Crave Entertainment,0.09,0,0,0.01,0.1 +Persona 5,PS3,2016,Role-Playing,Unknown,0,0,0.1,0,0.1 +Power Stone Collection,PSP,2006,Action,Capcom,0.08,0,0,0.01,0.1 +MTX Mototrax,XB,2004,Racing,Activision,0.07,0.02,0,0,0.1 +Blast Chamber,PS,1996,Shooter,Activision,0.05,0.04,0,0.01,0.1 +Thor: God of Thunder,3DS,2011,Action,Sega,0.06,0.03,0,0.01,0.1 +Mana Khemia: Student Alliance,PSP,2008,Role-Playing,Nippon Ichi Software,0.05,0,0.03,0.01,0.1 +Retro Game Challenge (US sales),DS,2007,Action,Namco Bandai Games,0.1,0,0,0,0.1 +EyeToy: Operation Spy,PS2,2005,Action,Sony Computer Entertainment,0.05,0.04,0,0.01,0.1 +Zoo Tycoon (2013),X360,2013,Simulation,Microsoft Game Studios,0.02,0.07,0,0.01,0.1 +MotoGP 07,PS2,2007,Racing,Capcom,0.05,0.04,0,0.01,0.1 +Touch Detective,DS,2006,Adventure,505 Games,0.06,0.03,0,0.01,0.1 +Option Tuning Car Battle,PS,1998,Racing,MTO,0,0,0.09,0.01,0.1 +Rapala Pro Bass Fishing 2010,DS,2010,Sports,Activision,0.09,0,0,0.01,0.1 +Derby Jockey 2,SNES,1995,Sports,Asmik Corp,0,0,0.1,0,0.1 +Famicom Mini: Mappy,GBA,2004,Platform,Nintendo,0,0,0.09,0,0.1 +Reign of Fire,XB,2002,Shooter,BAM! Entertainment,0.07,0.02,0,0,0.1 +Descent Maximum,PS,1997,Shooter,Interplay Productions,0.05,0.04,0,0.01,0.1 +Disney Sing It! High School Musical 3: Senior Year,X360,2009,Misc,Disney Interactive Studios,0.09,0,0,0.01,0.1 +"Blast Works: Build, Trade, Destroy",Wii,2008,Shooter,Eidos Interactive,0.09,0,0,0.01,0.1 +Resident Evil: Revelations 2,XOne,2015,Action,Capcom,0.07,0.02,0,0.01,0.1 +Major League Baseball 2K11,DS,2011,Sports,Take-Two Interactive,0.09,0,0,0.01,0.1 +Shining Force EXA,PS2,2007,Role-Playing,Sega,0,0,0.1,0,0.1 +Virtual Pro Wrestling,PS,1996,Fighting,Asmik Ace Entertainment,0,0,0.09,0.01,0.1 +Wasteland 2,PC,2015,Role-Playing,inXile Entertainment,0.02,0.06,0,0.01,0.1 +Shadow Tower,PS,1998,Role-Playing,From Software,0.01,0.01,0.07,0.01,0.1 +Luminous Arc 2 (JP sales),DS,,Role-Playing,Unknown,0,0,0.1,0,0.1 +Ninja Reflex,DS,2008,Action,Electronic Arts,0.09,0,0,0.01,0.1 +Dragon Ball: Evolution,PSP,2009,Fighting,Namco Bandai Games,0.09,0,0,0.01,0.1 +Red Bull BC One,DS,2008,Misc,Playlogic Game Factory,0.09,0,0,0.01,0.1 +Heatseeker,Wii,2007,Action,Codemasters,0.08,0,0,0.01,0.1 +Watchmen: The End is Nigh Part 1 & 2,X360,2009,Action,Warner Bros. Interactive Entertainment,0.09,0,0,0.01,0.1 +Ford Racing 3,DS,2005,Racing,Zoo Digital Publishing,0.09,0,0,0.01,0.1 +Ice Age 2: The Meltdown,XB,2006,Platform,Vivendi Games,0.07,0.02,0,0,0.1 +Guilty Gear Isuka,PS2,2004,Fighting,505 Games,0.05,0.04,0,0.01,0.1 +MySims SkyHeroes,X360,2010,Action,Electronic Arts,0.09,0,0,0.01,0.1 +NASCAR Unleashed,PS3,2011,Racing,Activision,0.09,0,0,0.01,0.1 +Shadow Master,PS,1997,Adventure,Psygnosis,0.05,0.04,0,0.01,0.1 +Global Touring Challenge: Africa,PS2,2001,Racing,Rage Software,0.05,0.04,0,0.01,0.1 +Jikkyou Powerful Pro Yakyuu 2013,PSV,2013,Sports,Konami Digital Entertainment,0,0,0.1,0,0.1 +Dead or Alive 5,PSV,2013,Fighting,Tecmo Koei,0,0.05,0.03,0.02,0.1 +Tokimeki Memorial: Taisen Pazurudama,PS,1996,Puzzle,Konami Digital Entertainment,0,0,0.09,0.01,0.1 +InuYasha: Secret of the Divine Jewel,DS,2007,Role-Playing,Namco Bandai Games,0.09,0,0,0.01,0.1 +MotoGP 2,XB,2003,Racing,THQ,0.07,0.02,0,0,0.1 +Pro Yakyuu Famista DS,DS,2007,Sports,Namco Bandai Games,0,0,0.1,0,0.1 +Ultimate Muscle - The Kinnikuman Legacy: The Path of the Superhero,GBA,2002,Fighting,Banpresto,0.05,0.02,0.03,0,0.1 +BIT.TRIP COMPLETE,Wii,2011,Misc,Rising Star Games,0.06,0.02,0,0.01,0.1 +EyeCreate,PS3,2007,Misc,Sony Computer Entertainment,0,0.08,0,0.02,0.1 +Skylanders: Spyro's Adventure,PC,2011,Action,Activision,0.05,0.03,0,0.01,0.1 +Paws & Claws: Pet Vet,Wii,2009,Simulation,THQ,0.09,0,0,0.01,0.1 +Touch Mechanic,DS,2008,Simulation,Nintendo,0.09,0,0,0.01,0.1 +Ciel Nosurge: Ushinawareta Hoshi e Sasagu Uta,PSV,2012,Adventure,Gust,0,0,0.1,0,0.1 +Ar tonelico: Melody of Elemia,PS2,2006,Role-Playing,505 Games,0,0,0.1,0,0.1 +Man vs. Wild,X360,2011,Action,Crave Entertainment,0.09,0,0,0.01,0.1 +Sol Trigger,PSP,2012,Role-Playing,Image Epoch,0,0,0.1,0,0.1 +Pony Friends 2,Wii,2009,Simulation,Eidos Interactive,0.04,0.05,0,0.01,0.1 +Castlevania Double Pack,GBA,2006,Platform,Konami Digital Entertainment,0.07,0.03,0,0,0.1 +Ballistic: Ecks vs. Sever,GBA,2002,Shooter,BAM! Entertainment,0.07,0.03,0,0,0.1 +Jikkyou Powerful Pro Yakyuu 11,GC,2004,Sports,Konami Digital Entertainment,0,0,0.09,0,0.1 +Steel Battalion,XB,2002,Simulation,Microsoft Game Studios,0.05,0.02,0.02,0,0.1 +The Daring Game for Girls,Wii,,Adventure,Unknown,0.09,0,0,0.01,0.1 +Glory Days 2,DS,2007,Strategy,Ghostlight,0.08,0,0,0.01,0.1 +Johnny Bravo in The Hukka-Mega-Mighty-Ultra-Extreme Date-O-Rama,DS,2009,Action,Blast! Entertainment Ltd,0.09,0,0,0.01,0.1 +Street Fighter Collection,PS,1997,Fighting,Capcom,0,0,0.09,0.01,0.1 +thinkSMART,DS,2010,Misc,Conspiracy Entertainment,0.09,0,0,0.01,0.1 +Digimon Story: Super Xros Wars Blue/Red,DS,2011,Role-Playing,Namco Bandai Games,0,0,0.1,0,0.1 +Tennis no Oji-Sama: Motto Gakuensai no Ouji-Sama - More Sweet Edition,DS,2010,Sports,Konami Digital Entertainment,0,0,0.1,0,0.1 +Mind Quiz,PSP,2006,Action,Ubisoft,0.08,0.01,0,0.01,0.1 +Populous DS,DS,2008,Strategy,Rising Star Games,0.07,0,0.02,0.01,0.1 +Who Wants to Be A Millionaire?,X360,2011,Misc,Ubisoft,0.09,0,0,0.01,0.1 +Bladestorm: The Hundred Years' War,X360,2007,Action,Tecmo Koei,0.08,0.01,0,0.01,0.1 +Cartoon Network: Punch Time Explosion,3DS,2011,Fighting,Deep Silver,0.07,0.02,0,0.01,0.1 +Imagine: Reporter,DS,2010,Simulation,Ubisoft,0.08,0.01,0,0.01,0.1 +Disney Planes Fire & Rescue,3DS,2014,Action,Disney Interactive Studios,0.01,0.08,0,0.01,0.1 +MX SuperFly featuring Ricky Carmichael,XB,2002,Racing,THQ,0.07,0.02,0,0,0.1 +Gokuhou!! Mecha Mote Iinchou: MM Town de Miracle Change!,DS,2009,Simulation,Konami Digital Entertainment,0,0,0.1,0,0.1 +Natural Doctrine,PS4,2014,Role-Playing,Nippon Ichi Software,0.05,0.02,0.02,0.01,0.1 +SNK vs. Capcom Card Fighters DS,DS,2006,Strategy,Ignition Entertainment,0.09,0,0,0.01,0.1 +Mystery Stories: Curse of the Ancient Spirits,DS,2011,Adventure,GSP,0.05,0.04,0,0.01,0.1 +Kuroko's Basketball: Miracle Game,3DS,2014,Sports,Namco Bandai Games,0,0,0.1,0,0.1 +Minority Report: Everybody Runs,XB,2002,Action,Activision,0.07,0.02,0,0,0.1 +MindJack,X360,2011,Shooter,Square Enix,0.07,0.02,0,0.01,0.1 +ReCore,XOne,2016,Action,Microsoft Game Studios,0.06,0.03,0,0.01,0.1 +NASCAR,PSP,2006,Racing,Electronic Arts,0.09,0,0,0.01,0.1 +Halo 2,PC,2007,Shooter,Microsoft Game Studios,0.01,0.06,0,0.02,0.1 +Shox,PS2,2002,Racing,Electronic Arts,0.05,0.04,0,0.01,0.09 +Unou no Tatsujin: Soukai! Machigai Museum 2,DS,2007,Misc,Namco Bandai Games,0,0,0.09,0,0.09 +Playboy: The Mansion,XB,2005,Simulation,Ubisoft,0.07,0.02,0,0,0.09 +The X-Factor,X360,2010,Misc,Deep Silver,0,0.08,0,0.01,0.09 +Gundam Breaker,PSV,2013,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Neo Atlas,PS,1998,Strategy,ArtDink,0,0,0.09,0.01,0.09 +Jaws: Ultimate Predator,Wii,2011,Action,Majesco Entertainment,0.09,0,0,0.01,0.09 +Disney's Aladdin in Nasira's Revenge,PS,2000,Action,Sony Computer Entertainment,0.05,0.04,0,0.01,0.09 +Kiniro no Corda 3,PSP,2010,Adventure,Tecmo Koei,0,0,0.09,0,0.09 +SeaWorld Adventure Parks: Shamu's Deep Sea Adventure,GC,2005,Adventure,Activision,0.07,0.02,0,0,0.09 +Taiko no Tatsujin: Don Don! Mystery Adventure,3DS,2016,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Winning Post 6,PS2,2003,Sports,Tecmo Koei,0,0,0.09,0,0.09 +Egg Monster Hero,DS,,Role-Playing,Square Enix,0,0,0.09,0,0.09 +Rock Band Country Track Pack 2,Wii,2011,Misc,MTV Games,0.09,0,0,0.01,0.09 +Darkest of Days,X360,2009,Shooter,Phantom EFX,0.09,0,0,0.01,0.09 +Whacked!,XB,2002,Misc,Microsoft Game Studios,0.07,0.02,0,0,0.09 +Ghostbusters: The Video Game (DS Version),PC,2010,Action,Take-Two Interactive,0,0.08,0,0.02,0.09 +Barnyard,PS2,2006,Action,THQ,0.05,0.04,0,0.01,0.09 +Big League Sports: Summer,Wii,2009,Sports,Activision,0.09,0,0,0.01,0.09 +Angry Birds: Rio,PC,2011,Puzzle,Focus Home Interactive,0,0.07,0,0.02,0.09 +Dance on Broadway,PS3,2011,Misc,Ubisoft,0.05,0.03,0,0.01,0.09 +Risen 3: Titan Lords,PC,2014,Role-Playing,Deep Silver,0,0.08,0,0.01,0.09 +Dungeons,PC,2011,Strategy,Kalypso Media,0.07,0.02,0,0.01,0.09 +Pac-Man World 3,GC,2005,Platform,Namco Bandai Games,0.07,0.02,0,0,0.09 +SingStar Apres-Ski Party 2,PS3,2010,Misc,Sony Computer Entertainment,0,0.07,0,0.02,0.09 +Raven Squad: Operation Hidden Dagger,X360,2009,Shooter,Evolved Games,0.08,0.01,0,0.01,0.09 +Rocky,GC,2002,Fighting,Rage Software,0.07,0.02,0,0,0.09 +Gundam Breaker 3,PS4,2016,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Crash 'N' Burn,XB,2004,Racing,Eidos Interactive,0.07,0.02,0,0,0.09 +Medieval II: Total War,PC,2006,Strategy,Sega,0,0.08,0,0.02,0.09 +NFL Blitz 20-02,XB,2002,Sports,Midway Games,0.07,0.02,0,0,0.09 +Metal Fight Beyblade,DS,2009,Action,Hudson Soft,0,0,0.09,0,0.09 +Robots,XB,2005,Action,Vivendi Games,0.07,0.02,0,0,0.09 +Speed Kings,PS2,2003,Racing,Acclaim Entertainment,0.05,0.04,0,0.01,0.09 +Monopoly Collection,Wii,2011,Misc,Electronic Arts,0.02,0.07,0,0.01,0.09 +The King of Fighters XIV,PS4,2016,Fighting,Deep Silver,0.04,0.01,0.03,0.01,0.09 +Langrisser V: The End of Legend,SAT,1998,Strategy,NCS,0,0,0.09,0,0.09 +FIFA Street 3,DS,2008,Sports,Electronic Arts,0.07,0.02,0,0.01,0.09 +PhotoKano,PSP,2012,Adventure,Kadokawa Shoten,0,0,0.09,0,0.09 +Ouchi Mainichi Tamagotchi,3DS,2012,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Fresh PreCure! Asobi Collection,DS,2009,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Populous: The Beginning,PS,1998,Strategy,Electronic Arts,0.05,0.04,0,0.01,0.09 +Rygar: The Battle of Argus,Wii,2008,Action,Rising Star Games,0.09,0,0,0.01,0.09 +Chess,PS,2001,Strategy,Success,0.05,0.04,0,0.01,0.09 +Rosco McQueen: Firefighter Extreme,PS,1997,Action,Sony Computer Entertainment,0.05,0.04,0,0.01,0.09 +Terranigma,SNES,1995,Role-Playing,Nintendo,0,0,0.09,0,0.09 +PAC-MAN and the Ghostly Adventures,3DS,2013,Platform,Namco Bandai Games,0.05,0.04,0,0.01,0.09 +The Voice,WiiU,2014,Action,Activision,0.08,0,0,0.01,0.09 +Forever Kingdom,PS2,2001,Role-Playing,From Software,0.02,0.02,0.04,0.01,0.09 +Blitz: Overtime,PSP,2006,Sports,Midway Games,0.09,0,0,0.01,0.09 +Cabela's North American Adventures,PSP,2010,Sports,Activision,0.08,0,0,0.01,0.09 +Altered Beast: Guardian of the Realms,GBA,2002,Action,THQ,0.07,0.02,0,0,0.09 +Field & Stream: Total Outdoorsman Challenge,X360,2010,Sports,505 Games,0.09,0,0,0.01,0.09 +Wordmaster,DS,2008,Strategy,Zoo Digital Publishing,0.09,0,0,0.01,0.09 +Shining Tears,PS2,2004,Role-Playing,Sega,0.05,0.04,0,0.01,0.09 +MotoGP,XB,2002,Racing,THQ,0.07,0.02,0,0,0.09 +Scaler,PS2,2004,Platform,Take-Two Interactive,0.05,0.04,0,0.01,0.09 +Gradius V,PS2,2004,Shooter,Konami Digital Entertainment,0.05,0.04,0,0.01,0.09 +X-COM: UFO Defense,PS,1995,Strategy,Microprose,0.05,0.04,0,0.01,0.09 +Raiden Fighters Aces,X360,2008,Shooter,Valcon Games,0.06,0.03,0,0.01,0.09 +Scooby-Doo! Who's Watching Who?,DS,2006,Adventure,THQ,0.08,0.01,0,0.01,0.09 +World Cup '98 France: Road to Win,SAT,1998,Sports,Sega,0,0,0.09,0,0.09 +MLB SlugFest 20-04,XB,2003,Sports,Midway Games,0.07,0.02,0,0,0.09 +Barbie and the Magic of Pegasus,GBA,2005,Action,Vivendi Games,0.07,0.02,0,0,0.09 +SD Gundam G Generation DS,DS,2005,Role-Playing,Namco Bandai Games,0,0,0.09,0,0.09 +Adventure Time: Finn & Jake Investigations,X360,2015,Action,Little Orbit,0.02,0.06,0,0.01,0.09 +Bleach: Heat the Soul,PSP,2005,Fighting,Sony Computer Entertainment,0,0,0.09,0,0.09 +Fishing Master World Tour,Wii,2009,Sports,Hudson Entertainment,0.09,0,0,0.01,0.09 +Psychonauts,PS2,2005,Platform,Majesco Entertainment,0.05,0.04,0,0.01,0.09 +Harvey Birdman: Attorney at Law,PSP,2008,Adventure,Capcom,0.08,0,0,0.01,0.09 +World Stadium 5,PS,2001,Sports,Namco Bandai Games,0,0,0.09,0.01,0.09 +The Legend of Heroes: A Tear of Vermillion,PSP,2005,Role-Playing,Namco Bandai Games,0.08,0,0,0.01,0.09 +Digimon World: Next Order,PSV,2016,Action,Namco Bandai Games,0,0,0.09,0,0.09 +The Amazing Spider-Man (Console Version),WiiU,2013,Action,Activision,0.05,0.03,0,0.01,0.09 +The Crew: Wild Run,PS4,2015,Action,Ubisoft,0,0.08,0,0.01,0.09 +ESPN NBA 2Night,PS2,2000,Sports,Konami Digital Entertainment,0.05,0.04,0,0.01,0.09 +Uta no Prince-Sama: Debut,PSP,2012,Adventure,Broccoli,0,0,0.09,0,0.09 +Galactic Taz Ball,DS,2010,Platform,Warner Bros. Interactive Entertainment,0.09,0,0,0.01,0.09 +Freekstyle,GC,2002,Racing,Electronic Arts,0.07,0.02,0,0,0.09 +Ford Mustang: The Legend Lives,XB,2005,Racing,Take-Two Interactive,0.07,0.02,0,0,0.09 +Virtua Fighter CG Portrait Series Vol.3: Akira Yuki,SAT,1995,Misc,Sega,0,0,0.09,0,0.09 +Digimon Rumble Arena 2,PS2,2004,Fighting,Atari,0.05,0.04,0,0.01,0.09 +Scooby-Doo! Unmasked,DS,2005,Platform,THQ,0.07,0.02,0,0.01,0.09 +Dora the Explorer: Dora Saves the Crystal Kingdom,PS2,2009,Misc,Take-Two Interactive,0.05,0.04,0,0.01,0.09 +Etrian Odyssey 2 Untold: Knight of Fafnir,3DS,2014,Role-Playing,Atlus,0.07,0.02,0,0.01,0.09 +"Prinny 2: Dawn of Operation Panties, Dood!",PSP,2010,Platform,Nippon Ichi Software,0.05,0,0.03,0.01,0.09 +Alien Monster Bowling League,Wii,2009,Sports,Destineer,0.09,0,0,0.01,0.09 +Devil May Cry 4,PS4,2015,Action,Capcom,0.01,0,0.08,0,0.09 +Shockwave Assault,PS,1995,Simulation,Electronic Arts,0.05,0.04,0,0.01,0.09 +echochrome,PSP,2008,Puzzle,Sony Computer Entertainment,0,0.01,0.08,0,0.09 +Ribbit King,PS2,2003,Sports,Atari,0.05,0.04,0,0.01,0.09 +Generator Rex: Agent of Providence,Wii,2011,Action,Activision,0.07,0.01,0,0.01,0.09 +Championship Foosball,Wii,2008,Sports,505 Games,0.09,0,0,0.01,0.09 +World Championship Poker 2: Featuring Howard Lederer,XB,2005,Misc,Crave Entertainment,0.07,0.02,0,0,0.09 +Alien Hominid,GC,2004,Shooter,O3 Entertainment,0.07,0.02,0,0,0.09 +Lego Star Wars: The Force Awakens,PSV,2016,Action,Warner Bros. Interactive Entertainment,0.02,0.05,0,0.02,0.09 +Pro Yakyuu Greatest Nine 98,SAT,1998,Sports,Sega,0,0,0.09,0,0.09 +Snood 2: On Vacation,DS,2005,Puzzle,Zoo Digital Publishing,0.09,0,0,0.01,0.09 +Ninja Gaiden Black,XB,2005,Action,Microsoft Game Studios,0.07,0.02,0,0,0.09 +Playmobil Pirates,DS,2009,Action,Mindscape,0.08,0,0,0.01,0.09 +Girls und Panzer: I Will Master Tankery,PSV,2014,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Bogey: Dead 6,PS,1996,Simulation,Sony Computer Entertainment,0.05,0.04,0,0.01,0.09 +Hakuouki: Zuisouroku Portable,PSP,2010,Adventure,Idea Factory,0,0,0.09,0,0.09 +Puyo Pop Fever (JP sales),DS,2004,Puzzle,Ignition Entertainment,0,0,0.09,0,0.09 +Dragon Ball Kai: Ultimate Butouden,DS,2011,Fighting,Namco Bandai Games,0,0,0.09,0,0.09 +Yu-Gi-Oh! GX: The Beginning of Destiny (US sales),PS2,2007,Strategy,Konami Digital Entertainment,0.05,0.04,0,0.01,0.09 +Brain Age: Concentration Training,3DS,2012,Puzzle,Nintendo,0.09,0,0,0.01,0.09 +Henry Hatsworth in the Puzzling Adventure,DS,2009,Puzzle,Electronic Arts,0.08,0.01,0,0.01,0.09 +Shin Megami Tensei,PS,2001,Role-Playing,Atlus,0,0,0.09,0.01,0.09 +Trivial Pursuit unhinged,XB,2004,Misc,Atari,0.07,0.02,0,0,0.09 +U-Sing 2,Wii,2010,Misc,Mindscape,0,0.08,0,0.01,0.09 +Backyard Sports: Sandlot Sluggers,X360,2010,Sports,Atari,0.09,0,0,0.01,0.09 +The Revenge of Shinobi,GBA,2002,Platform,Atari,0.07,0.02,0,0,0.09 +Bloody Roar 4,PS2,2003,Fighting,Konami Digital Entertainment,0.05,0.04,0,0.01,0.09 +Playmobil Circus,Wii,2009,Action,Mindscape,0.06,0.02,0,0.01,0.09 +Let's Ride! Silver Buckle Stables,PS2,2006,Sports,THQ,0.05,0.04,0,0.01,0.09 +Star Wars: Empire at War - Gold Pack,PC,2007,Strategy,LucasArts,0.01,0.06,0,0.01,0.09 +Hakuoki: Demon of the Fleeting Blossom,PSP,2009,Adventure,Idea Factory,0.08,0,0,0.01,0.09 +Cabela's Big Game Hunter,GBA,2002,Sports,Activision Value,0.07,0.02,0,0,0.09 +Import Tuner Challenge (American sales),X360,2006,Racing,Ubisoft,0.07,0.01,0,0.01,0.09 +I-Ninja,GC,2003,Platform,Namco Bandai Games,0.07,0.02,0,0,0.09 +Truth or Lies,PS3,2010,Misc,THQ,0.06,0.02,0,0.01,0.09 +WSC Real 11: World Snooker Championship,PS3,2011,Sports,Koch Media,0,0.07,0,0.02,0.09 +World Soccer Winning Eleven 2010: Aoki Samurai no Chousen,PS2,2010,Sports,Konami Digital Entertainment,0,0,0.09,0,0.09 +Crash Boom Bang!,DS,2006,Misc,Vivendi Games,0.07,0.01,0,0.01,0.09 +Dragon Tales: Dragon Seek,PS,2000,Platform,Ubisoft,0.05,0.03,0,0.01,0.09 +NCAA March Madness 08,PS3,2007,Sports,Electronic Arts,0.08,0,0,0.01,0.09 +Tom Clancy's EndWar,DS,2008,Strategy,Ubisoft,0.08,0.01,0,0.01,0.09 +Yourself Fitness,XB,2004,Sports,responDESIGN,0.07,0.02,0,0,0.09 +Tak: The Great Juju Challenge,DS,2005,Platform,THQ,0.09,0,0,0.01,0.09 +NBA 2K16,PC,2015,Sports,Take-Two Interactive,0.02,0.06,0,0.01,0.09 +Def Jam Fight For NY: The Takeover,PSP,2006,Action,Electronic Arts,0.08,0,0,0.01,0.09 +NHL 2K8,PS3,2007,Sports,Take-Two Interactive,0.08,0.01,0,0.01,0.09 +Black & White 2,PC,2005,Strategy,Electronic Arts,0.01,0.07,0,0.01,0.09 +GripShift,PSP,2005,Racing,Ubisoft,0.08,0,0,0.01,0.09 +Jenga World Tour,DS,2007,Misc,Atari,0.09,0,0,0.01,0.09 +Riviera: The Promised Land,PSP,2006,Role-Playing,505 Games,0.07,0,0.02,0.01,0.09 +The Idolmaster: Platinum Stars,PS4,2016,Simulation,Namco Bandai Games,0,0,0.09,0,0.09 +Get Fit with Mel B,Wii,2010,Sports,Black Bean Games,0.03,0.05,0,0.01,0.09 +Destroy All Humans! Path of the Furon,PS3,2009,Action,THQ,0,0.08,0,0.01,0.09 +Resident Evil Chronicles HD,PS3,2012,Shooter,Capcom,0,0,0.09,0,0.09 +Wonder World Amusement Park,DS,2009,Misc,Majesco Entertainment,0.08,0,0,0.01,0.09 +Return Fire,PS,1996,Strategy,Time Warner Interactive,0.05,0.03,0,0.01,0.09 +Lock's Quest,DS,2008,Strategy,THQ,0.08,0,0,0.01,0.09 +Transformers: Devastation,X360,2015,Action,Activision,0.06,0.02,0,0.01,0.09 +Wild ARMs: Alter Code F,PS2,2003,Role-Playing,Sony Computer Entertainment,0.05,0.04,0,0.01,0.09 +Bomberman Max 2: Blue Advance,GBA,2002,Puzzle,Vivendi Games,0.07,0.02,0,0,0.09 +Dora's Big Birthday Adventure,DS,2010,Misc,Take-Two Interactive,0.08,0.01,0,0.01,0.09 +Atari Classics Evolved,PSP,2007,Misc,Atari,0.08,0,0,0.01,0.09 +Pillow Pets,DS,2011,Adventure,GameMill Entertainment,0.09,0,0,0.01,0.09 +SingStar: Made In Germany,PS3,2009,Misc,Sony Computer Entertainment,0,0.07,0,0.02,0.09 +Kawasaki Quad Bikes,Wii,2007,Racing,Data Design Interactive,0.07,0.01,0,0.01,0.09 +Shrek SuperSlam,XB,2005,Action,Activision,0.07,0.02,0,0,0.09 +Rapid Reload,PS,1995,Shooter,Sony Computer Entertainment,0,0,0.09,0.01,0.09 +New Legends,XB,2002,Action,THQ,0.07,0.02,0,0,0.09 +Total Overdose: A Gunslinger's Tale in Mexico,PS2,2005,Shooter,Eidos Interactive,0.04,0.04,0,0.01,0.09 +The Secret Saturdays: Beasts of the 5th Sun,PSP,2009,Action,D3Publisher,0.08,0,0,0.01,0.09 +Island Xtreme Stunts,PS2,2002,Action,Electronic Arts,0.04,0.03,0,0.01,0.09 +Fighting Fantasy: The Warlock of Firetop Mountain,DS,2009,Role-Playing,Aspyr,0.09,0,0,0.01,0.09 +Agassi Tennis Generation,PS2,2003,Sports,DreamCatcher Interactive,0.04,0.03,0,0.01,0.09 +Young Justice: Legacy,PS3,2013,Action,Namco Bandai Games,0.06,0.02,0,0.01,0.09 +Metal Slug X,PS,2001,Shooter,Virgin Interactive,0.05,0.03,0,0.01,0.09 +Samurai Shodown Anthology,PSP,,Fighting,Ignition Entertainment,0.08,0,0,0.01,0.09 +Space Invaders Extreme,PSP,2008,Shooter,Square Enix,0.06,0.01,0.01,0.01,0.09 +Driver: Renegade,3DS,2011,Racing,Ubisoft,0.05,0.04,0,0.01,0.09 +Running Wild,PS,1997,Racing,989 Studios,0.05,0.03,0,0.01,0.09 +Romance of the Three Kingdoms X,PS2,2005,Strategy,Tecmo Koei,0.04,0.03,0,0.01,0.09 +Brigandine: The Legend of Forsena,PS,1998,Strategy,Atlus,0.05,0.03,0,0.01,0.09 +Pro Evolution Soccer 2012,PC,2011,Action,Konami Digital Entertainment,0,0.07,0,0.02,0.09 +MX SuperFly featuring Ricky Carmichael,GC,2002,Racing,THQ,0.07,0.02,0,0,0.09 +Disney's The Haunted Mansion,XB,2003,Platform,Take-Two Interactive,0.07,0.02,0,0,0.09 +Sound Novel Machi,SAT,1998,Adventure,ChunSoft,0,0,0.09,0,0.09 +FIFA 2001: Major League Soccer,PS2,2000,Sports,Electronic Arts,0,0,0.09,0,0.09 +I Love Puppies,DS,2010,Simulation,Destineer,0.09,0,0,0.01,0.09 +Jikkyou Powerful Pro Yakyuu 14 Ketteiban,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.09,0,0.09 +Pokemon Rumble World,3DS,2015,Action,Nintendo,0,0.01,0.08,0,0.09 +JASF: Jane's Advanced Strike Fighters,X360,2011,Simulation,Deep Silver,0.06,0.02,0,0.01,0.09 +Beaterator,PSP,2009,Misc,Take-Two Interactive,0.06,0.02,0,0.02,0.09 +Skies of Arcadia,DC,2000,Role-Playing,Sega,0,0,0.09,0,0.09 +NASCAR: Dirt to Daytona,GC,2002,Racing,Infogrames,0.07,0.02,0,0,0.09 +Demon Chaos,PS2,,Action,Konami Digital Entertainment,0,0,0.09,0,0.09 +Challenge Me: Brain Puzzles 2,DS,2010,Puzzle,O-Games,0.05,0.04,0,0.01,0.09 +Cake Mania: Main Street,DS,2011,Simulation,Majesco Entertainment,0.09,0,0,0.01,0.09 +Road Trip,PS2,2002,Racing,Play It,0.04,0.03,0,0.01,0.09 +Blood of Bahamut,DS,2009,Role-Playing,Square Enix,0,0,0.09,0,0.09 +Damnation,PS3,2009,Shooter,Codemasters,0.07,0.01,0,0.01,0.09 +DaGeDar,DS,2011,Action,GameMill Entertainment,0.09,0,0,0.01,0.09 +Quiz Magic Academy DS: Futatsu no Jikuu Koku,DS,2010,Misc,Konami Digital Entertainment,0,0,0.09,0,0.09 +Lilie no Atelier: Salburg no Renkinjutsushi 3,PS2,2001,Role-Playing,Gust,0,0,0.09,0,0.09 +Supremacy MMA,PSV,2012,Fighting,505 Games,0.02,0.05,0,0.02,0.09 +Top Gun: Firestorm Advance,GBA,2002,Shooter,Titus,0.07,0.02,0,0,0.09 +Justice League Heroes,DS,2006,Role-Playing,Eidos Interactive,0.08,0,0,0.01,0.09 +Project Eden,PS2,2001,Action,Eidos Interactive,0.04,0.03,0,0.01,0.09 +Disney Art Academy,3DS,2016,Action,Nintendo,0.01,0.01,0.07,0,0.09 +Pipe Mania,DS,2008,Puzzle,Empire Interactive,0.08,0.01,0,0.01,0.09 +NERF N-Strike: Double Blast Bundle,Wii,2010,Shooter,Electronic Arts,0.09,0,0,0,0.09 +Space Chimps,Wii,2008,Platform,Brash Entertainment,0.08,0,0,0.01,0.09 +Sega Casino,DS,2005,Misc,Sega,0.08,0,0,0.01,0.09 +Ben 10 Galactic Racing,PS3,2011,Racing,D3Publisher,0.06,0.02,0,0.01,0.09 +Ghosthunter,PS2,2003,Action,Sony Computer Entertainment,0.04,0.03,0,0.01,0.09 +Junior Mystery Quest,DS,2011,Puzzle,GSP,0.07,0.01,0,0.01,0.09 +Obscure: The Aftermath,PSP,2009,Action,Playlogic Game Factory,0.05,0.03,0,0.02,0.09 +Family GameShow,Wii,2009,Misc,Zushi Games,0.08,0,0,0.01,0.09 +Great Party Games,Wii,2010,Misc,O-Games,0,0.08,0,0.01,0.09 +Seven: Molmorth no Kiheitai,PS2,2000,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Doraemon: Nobita to Midori no Kyojinden DS,DS,2008,Platform,Sega,0,0,0.09,0,0.09 +Jimmie Johnson's Anything With an Engine,X360,2011,Racing,Konami Digital Entertainment,0.08,0,0,0.01,0.09 +Hello Kitty's Cube Frenzy,PS,1998,Puzzle,Culture Publishers,0.05,0.03,0,0.01,0.09 +Are You Smarter Than a 5th Grader? Back to School,DS,2010,Misc,THQ,0.08,0,0,0.01,0.09 +Spectral Force Genesis,DS,2008,Role-Playing,Nobilis,0.08,0,0.01,0.01,0.09 +Jikkyou Powerful Pro Yakyuu 9 Ketteiban,PS2,2002,Sports,Konami Digital Entertainment,0,0,0.09,0,0.09 +Agatha Christie: Evil Under the Sun,Wii,2008,Adventure,The Adventure Company,0.07,0.02,0,0.01,0.09 +World Championship Games: A Track & Field Event,DS,2008,Sports,Ghostlight,0.08,0,0,0.01,0.09 +Astro Boy: Omega Factor,GBA,2003,Action,THQ,0.06,0.02,0,0,0.09 +Karaoke Joysound Wii Super DX: Hitori de Minna de Utai Houdai!,Wii,2010,Misc,Hudson Soft,0,0,0.09,0,0.09 +Fullmetal Alchemist: Dual Sympathy,DS,2005,Role-Playing,Empire Interactive,0.05,0,0.04,0,0.09 +Cardfight!! Vanguard: Ride to Victory,3DS,2013,Misc,FuRyu,0,0,0.09,0,0.09 +Last Rebellion,PS3,2010,Role-Playing,Nippon Ichi Software,0.06,0.01,0.01,0.01,0.09 +How to Train Your Dragon 2,WiiU,2014,Adventure,Little Orbit,0.04,0.05,0,0.01,0.09 +Quantum Theory,X360,2010,Shooter,Tecmo Koei,0.06,0.02,0,0.01,0.09 +Jikkyou Powerful Pro Yakyuu Portable 2,PSP,2007,Sports,Konami Digital Entertainment,0,0,0.09,0,0.09 +Reading Training,DS,2007,Misc,Benesse,0.01,0,0.08,0,0.09 +Kawashima Ryuuta Kyouju Kanshuu Nouryoku Trainer Portable 2,PSP,2006,Misc,Sega,0,0,0.09,0,0.09 +Bass Pro Shops: The Hunt,X360,2010,Sports,Griffin International,0.08,0,0,0.01,0.09 +Rugby 2005,PS2,2005,Sports,Electronic Arts,0.04,0.03,0,0.01,0.09 +Carnival Games: Wild West 3D,3DS,2011,Misc,Take-Two Interactive,0.06,0.02,0,0.01,0.09 +Ochaken no Heya DS 2,DS,2007,Simulation,MTO,0,0,0.09,0,0.09 +Ratchet & Clank Future: Quest for Booty,PS3,2008,Platform,Sony Computer Entertainment,0.01,0.06,0,0.02,0.09 +V-Rally Edition 99,N64,1998,Racing,Infogrames,0.07,0.02,0,0,0.09 +Saikyou Habu Shogi,N64,1996,Misc,Seta Corporation,0,0,0.06,0.03,0.09 +Castlevania Dracula X,SNES,1995,Platform,Konami Digital Entertainment,0.03,0.01,0.05,0,0.09 +Golden Nugget 64,N64,1998,Misc,Electronic Arts,0.07,0.02,0,0,0.09 +Robotron 64,N64,1998,Shooter,GT Interactive,0.07,0.02,0,0,0.09 +Batman Beyond: Return of the Joker,N64,2000,Action,Ubisoft,0.07,0.02,0,0,0.09 +Inazuma Eleven 3,3DS,2013,Role-Playing,Nintendo,0,0.08,0,0.01,0.09 +Ski-Doo Snowmobile Challenge,Wii,2009,Racing,Valcon Games,0.08,0,0,0.01,0.09 +Naruto RPG 3: Rejiuu vs Konoha Shoutai,DS,2006,Role-Playing,Takara Tomy,0,0,0.09,0,0.09 +Tunnel B1,PS,1996,Action,Ocean,0.05,0.03,0,0.01,0.09 +2-in-1 Game Pack: Spider-Man & Spider-Man 2,GBA,2005,Platform,Activision,0.06,0.02,0,0,0.09 +Winter Stars,PS3,2011,Sports,Deep Silver,0.01,0.06,0,0.02,0.09 +Go Play: City Sports,Wii,2009,Sports,Majesco Entertainment,0.08,0,0,0.01,0.09 +Porsche Challenge,PS,1997,Racing,Sony Computer Entertainment,0.05,0.03,0,0.01,0.09 +Dragon Ball Z: Shin Butouden,SAT,1995,Fighting,Namco Bandai Games,0,0,0.09,0,0.09 +Beowulf: The Game,PSP,2007,Action,Ubisoft,0.08,0,0,0.01,0.09 +Super Robot Taisen MX Portable,PSP,2005,Strategy,Banpresto,0,0,0.09,0,0.09 +Mimana Iyar Chronicle,PSP,2009,Role-Playing,GungHo,0.07,0,0.01,0.01,0.09 +Detana TwinBee Yahho! Deluxe Pack,PS,1995,Shooter,Konami Digital Entertainment,0,0,0.08,0.01,0.09 +Shin Ken to Mah? to Gakuenmono. Toki no Gakuen,PSP,2012,Role-Playing,Acquire,0,0,0.09,0,0.09 +Super Robot Wars OG: The Moon Dwellers,PS4,2016,Misc,Namco Bandai Games,0,0,0.09,0,0.09 +Uta no Prince-Sama: Music 2,PSP,2013,Adventure,Broccoli,0,0,0.09,0,0.09 +Jambo! Safari Animal Rescue,Wii,2009,Simulation,Sega,0.07,0.01,0,0.01,0.09 +Supreme Commander,X360,2008,Strategy,505 Games,0.07,0.01,0,0.01,0.09 +"Saiyuuki: Kinkaku, Ginkaku no Inbou",DS,2007,Role-Playing,D3Publisher,0,0,0.09,0,0.09 +Bleach: Heat the Soul 6,PSP,2009,Fighting,Sony Computer Entertainment,0,0,0.09,0,0.09 +Roary the Racing Car,DS,2009,Misc,Avanquest,0,0.08,0,0.01,0.09 +Ski and Shoot,Wii,2008,Sports,RTL,0.04,0.04,0,0.01,0.09 +Mugen Keitai Disgaea,PS2,2007,Role-Playing,Tecmo Koei,0,0,0.09,0,0.09 +Scrabble,PSP,2009,Misc,Electronic Arts,0.08,0,0,0.01,0.09 +Samurai Warriors 4: Empires,PS4,2015,Action,Tecmo Koei,0.02,0.01,0.05,0.01,0.09 +Action Man-Operation Extreme,PS,,Action,,0.05,0.03,0,0.01,0.09 +Blazblue: Continuum Shift Extend,PS3,2011,Fighting,PQube,0,0,0.09,0,0.09 +Tornado Outbreak,PS3,2009,Action,Konami Digital Entertainment,0.08,0,0,0.01,0.09 +Mystic Heroes,GC,2002,Action,Tecmo Koei,0.03,0.01,0.04,0,0.09 +Pachitte Chonmage Tatsujin 10: Pachinko Fuyu no Sonata,PS2,2007,Misc,Hackberry,0,0,0.09,0,0.09 +Defender,XB,2002,Misc,Midway Games,0.07,0.02,0,0,0.09 +The Sims 2: Apartment Life,PC,2008,Simulation,Electronic Arts,0,0.07,0,0.02,0.09 +MLB Superstars,Wii,2008,Sports,Take-Two Interactive,0.08,0,0,0.01,0.09 +Captain Tsubasa: Aratanaru Densetsu Joshou,PS,2002,Sports,Konami Digital Entertainment,0,0,0.08,0.01,0.09 +Remington Super Slam Hunting: Alaska,Wii,2011,Sports,Mastiff,0.08,0,0,0.01,0.09 +Blood: The Last Vampire (Joukan),PS2,2000,Adventure,Sony Computer Entertainment,0,0,0.09,0,0.09 +Clockwork Knight,SAT,1994,Platform,Sega,0,0,0.09,0,0.09 +MotoGP 14,X360,2014,Racing,Milestone S.r.l.,0.04,0.04,0,0.01,0.09 +Freestyle Metal X,PS2,2003,Racing,Midway Games,0.04,0.03,0,0.01,0.09 +Prinny: Can I Really Be the Hero?,PSP,2008,Platform,Tecmo Koei,0.02,0.01,0.05,0.01,0.09 +Sidewinder Max,PS2,2000,Simulation,Asmik Ace Entertainment,0,0,0.09,0,0.09 +The $1 Pyramid,Wii,2011,Misc,Ubisoft,0.08,0,0,0.01,0.09 +Burnout Paradise: The Ultimate Box,PS3,2009,Racing,Electronic Arts,0,0.06,0.01,0.02,0.09 +Kenka Banchou 2: Full Throttle,PS2,2007,Action,Spike,0,0,0.09,0,0.09 +Zoids Assault,X360,2007,Strategy,Takara Tomy,0.08,0,0,0.01,0.09 +Pro Yaky? Spirits 2014,PSP,2014,Sports,Konami Digital Entertainment,0,0,0.09,0,0.09 +Dark Angel: Vampire Apocalypse,PS2,2001,Role-Playing,Metro 3D,0.04,0.03,0,0.01,0.09 +The Mummy: Tomb of the Dragon Emperor,Wii,2008,Action,Vivendi Games,0.08,0,0,0.01,0.09 +Spider-Man: Edge of Time,Wii,2011,Action,Activision,0.06,0.02,0,0.01,0.09 +Momu-chan Diet Wii: Figurobics by Chon Dayon,Wii,2010,Misc,Hudson Soft,0,0,0.09,0,0.09 +Karaoke Revolution Presents American Idol Encore 2,X360,2008,Misc,Konami Digital Entertainment,0.08,0,0,0.01,0.09 +Atelier Totori: The Adventurer of Arland,PSV,2012,Role-Playing,Gust,0,0,0.09,0,0.09 +Mad Dog McCree: Gunslinger Pack,Wii,2009,Shooter,Majesco Entertainment,0.08,0,0,0.01,0.09 +No More Heroes: Red Zone,PS3,2011,Action,Marvelous Interactive,0,0,0.09,0,0.09 +Game Hits!,DS,2010,Misc,Foreign Media Games,0.07,0.01,0,0.01,0.09 +Bakugan: Rise of the Resistance,DS,2011,Strategy,Activision,0.06,0.02,0,0.01,0.09 +Thomas & Friends: Hero of the Rails,DS,2010,Misc,Unknown,0,0.07,0,0.01,0.09 +Super Puzzle Fighter II,GBA,,Puzzle,Capcom,0.06,0.02,0,0,0.09 +The Mummy: Tomb of the Dragon Emperor,DS,2008,Action,Vivendi Games,0.08,0,0,0.01,0.09 +Battle Stadium D.O.N,GC,2006,Fighting,Namco Bandai Games,0,0,0.09,0,0.09 +Deadliest Catch: Sea of Chaos,X360,2010,Sports,Crave Entertainment,0.08,0,0,0.01,0.09 +Karaoke Revolution Presents American Idol Encore,PS3,2008,Misc,Konami Digital Entertainment,0.08,0,0,0.01,0.09 +Crysis: Maximum Edition,PC,2009,Shooter,Electronic Arts,0,0.07,0,0.02,0.09 +Crayon Shin-Chan Shokkugan! Densetsu o Yobu Omake Daiketsusen!!,DS,2010,Action,Namco Bandai Games,0,0,0.09,0,0.09 +Wacky World of Sports,Wii,2009,Sports,Sega,0.08,0,0,0.01,0.09 +Kurikin: Nano Island Story,DS,2007,Role-Playing,Nintendo,0,0,0.09,0,0.09 +Transworld Snowboarding,XB,2002,Sports,Atari,0.07,0.02,0,0,0.09 +NFL Blitz 20-02,GC,2002,Sports,Midway Games,0.07,0.02,0,0,0.09 +Sniper Elite,XB,2005,Shooter,Ubisoft,0.07,0.02,0,0,0.09 +Data East Arcade Classics,Wii,2010,Misc,Majesco Entertainment,0.08,0,0,0.01,0.09 +World Soccer Winning Eleven 8 International,XB,2004,Sports,Konami Digital Entertainment,0.07,0.02,0,0,0.09 +Test Drive: Eve of Destruction,XB,2004,Racing,Atari,0.07,0.02,0,0,0.09 +Crimson Sea,XB,2002,Action,Tecmo Koei,0.04,0.01,0.04,0,0.09 +Naruto Shippuden: Gekito Ninja Taisen! EX 2,Wii,2007,Fighting,Takara Tomy,0,0,0.09,0,0.09 +The Weakest Link,PS,2001,Misc,Activision,0.05,0.03,0,0.01,0.09 +Dreamer Series: Teacher,DS,2009,Simulation,Deep Silver,0.08,0,0,0.01,0.09 +Lethal Enforcers,SNES,1993,Shooter,Konami Digital Entertainment,0,0,0.09,0,0.09 +Knights in the Nightmare,DS,2008,Role-Playing,Sting,0.06,0,0.02,0,0.09 +Romance of the Three Kingdoms XII,PS3,2012,Strategy,Tecmo Koei,0,0,0.09,0,0.09 +El Tigre: The Adventures of Manny Rivera,DS,2007,Platform,THQ,0.08,0,0,0.01,0.09 +Ikaruga,GC,2003,Shooter,Atari,0.07,0.02,0,0,0.09 +Back to the Future: The Game,PS3,2011,Adventure,Telltale Games,0.07,0.01,0,0.01,0.09 +"Hyperdimension Neptunia Re,Birth 2",PSV,2014,Action,Idea Factory International,0.05,0.02,0,0.02,0.09 +The Suffering: Ties That Bind,XB,2005,Action,Midway Games,0.07,0.02,0,0,0.09 +Nobunaga's Ambition: Iron Triangle,PS2,2006,Strategy,Tecmo Koei,0.04,0.03,0,0.01,0.09 +Little League World Series Baseball: Double Play,Wii,2010,Sports,Activision,0.08,0,0,0.01,0.09 +Jikkyou Powerful Pro Yakyuu 2012,PSV,2012,Action,Konami Digital Entertainment,0,0,0.09,0,0.09 +Harvest Moon: Boy & Girl,PSP,2005,Simulation,Marvelous Interactive,0.08,0,0,0.01,0.09 +Mahjong Cub3D,3DS,2011,Puzzle,Sunsoft,0.07,0,0.02,0,0.09 +F1 2016 (Codemasters),XOne,2016,Racing,Codemasters,0.01,0.07,0,0.01,0.09 +Major League Baseball 2K12,PSP,2012,Sports,Take-Two Interactive,0.08,0,0,0.01,0.09 +Happy Feet Two,Wii,,Action,Warner Bros. Interactive Entertainment,0.07,0.01,0,0.01,0.09 +Viewtiful Joe: Red Hot Rumble,PSP,2006,Action,Capcom,0.08,0,0,0.01,0.09 +The Ant Bully,Wii,2006,Platform,Midway Games,0.08,0,0,0.01,0.09 +MLB 2K9 Fantasy All-Stars,DS,2009,Sports,Take-Two Interactive,0.08,0,0,0.01,0.09 +RollerCoaster Tycoon 3: Platinum,PC,2005,Strategy,Atari,0.01,0.06,0,0.01,0.09 +Age of Mythology,PC,2002,Strategy,Microsoft Game Studios,0.02,0.06,0,0.01,0.09 +Sengoku Basara 4: Sumeragi,PS3,2015,Action,Capcom,0,0,0.09,0,0.09 +Shrek Smash n' Crash Racing,PSP,2006,Racing,Activision,0.08,0,0,0.01,0.09 +The Smurfs 2,WiiU,2013,Platform,Ubisoft,0.04,0.04,0,0.01,0.09 +Digimon World Re:Digitize Decode,3DS,2013,Role-Playing,Namco Bandai Games,0,0,0.09,0,0.09 +The Bachelor: The Videogame,DS,2010,Misc,Warner Bros. Interactive Entertainment,0.08,0,0,0.01,0.09 +Harvey Birdman: Attorney at Law,Wii,2008,Adventure,Capcom,0.08,0,0,0.01,0.09 +Digimon World 4,GC,2005,Role-Playing,Namco Bandai Games,0.07,0.02,0,0,0.09 +Resident Evil: Revelations 2,X360,2015,Action,Capcom,0.04,0.04,0,0.01,0.09 +Jumper: Griffin's Story,Wii,2008,Action,Eidos Interactive,0.08,0,0,0.01,0.09 +My Stop Smoking Coach: Allen Carr's EasyWay,DS,2008,Misc,Ubisoft,0.07,0.01,0,0.01,0.09 +Star Wars: Empire at War,PC,2006,Strategy,LucasArts,0.01,0.06,0,0.02,0.09 +Ford Racing 3,XB,2004,Racing,Take-Two Interactive,0.07,0.02,0,0,0.09 +MLB SlugFest Loaded,XB,2004,Sports,Midway Games,0.07,0.02,0,0,0.09 +Ty the Tasmanian Tiger 3: Night of the Quinkan,GC,2005,Action,Activision,0.07,0.02,0,0,0.09 +Sotsugyou Crossworld,PS,1996,Simulation,Hearty Robin,0,0,0.08,0.01,0.09 +R: Racing Evolution,XB,2003,Racing,Namco Bandai Games,0.06,0.02,0,0,0.09 +Bionicle,GBA,2003,Action,THQ,0.06,0.02,0,0,0.09 +Bomberman Land Touch!,DS,2006,Puzzle,Rising Star Games,0.04,0,0.04,0,0.09 +Battle Fantasia,X360,2008,Fighting,505 Games,0.07,0,0.01,0.01,0.09 +Lego Star Wars: The Force Awakens,WiiU,2016,Action,Warner Bros. Interactive Entertainment,0.04,0.04,0,0.01,0.09 +Bleach GC: Tasogare Ni Mamieru Shinigami,GC,2005,Fighting,Sega,0,0,0.08,0,0.09 +ShellShock 2: Blood Trails,X360,2009,Shooter,Eidos Interactive,0.05,0.03,0,0.01,0.09 +F.E.A.R. Files,X360,2007,Shooter,Vivendi Games,0.07,0.01,0,0.01,0.09 +SpongeBob: HeroPants,X360,2015,Platform,Activision,0.08,0,0,0.01,0.09 +Team Elimination Games,Wii,2009,Misc,Ubisoft,0.08,0,0,0.01,0.09 +Spectral Force 3,X360,2006,Role-Playing,Idea Factory,0.08,0,0,0.01,0.09 +Chou Jigen Game Neptune Mk-II,PS3,2011,Role-Playing,Compile Heart,0,0,0.09,0,0.09 +Bella Sara,DS,2008,Misc,Codemasters,0.04,0.03,0,0.01,0.09 +Jikkyou Powerful Pro Yakyuu 2000 Ketteiban,PS,2000,Sports,Konami Digital Entertainment,0,0,0.08,0.01,0.09 +Karaoke Revolution,XB,2004,Misc,Konami Digital Entertainment,0.06,0.02,0,0,0.09 +Escape Dead Island,X360,2014,Action,Deep Silver,0.03,0.05,0,0.01,0.09 +Red Faction: Armageddon,PC,2011,Shooter,THQ,0.05,0.02,0,0.01,0.09 +Fire Pro Wrestling Returns,PS2,2005,Sports,505 Games,0.04,0.03,0,0.01,0.09 +Brain Voyage,DS,2008,Puzzle,Eidos Interactive,0.06,0.02,0,0.01,0.09 +Jimmy Neutron: Boy Genius,GC,2002,Platform,THQ,0.07,0.02,0,0,0.09 +Adventure Time: Finn & Jake Investigations,PS4,2015,Action,Little Orbit,0.03,0.04,0,0.01,0.09 +Derby Stallion,SAT,1999,Sports,ASCII Entertainment,0,0,0.09,0,0.09 +Puss in Boots,PS3,2011,Action,THQ,0.07,0.01,0,0.01,0.09 +PAC-MAN and the Ghostly Adventures,PS3,2013,Platform,Namco Bandai Games,0.03,0.04,0,0.01,0.09 +Rollcage Stage II,PS,2000,Racing,Sony Computer Entertainment,0.05,0.03,0,0.01,0.09 +Samurai Warriors 2: Xtreme Legends,PS2,2007,Action,Tecmo Koei,0.04,0.03,0,0.01,0.09 +Karaoke Joysound Wii DX,Wii,2009,Misc,Hudson Soft,0,0,0.09,0,0.09 +Sloane to MacHale no Nazo no Monogatari 2,DS,2009,Puzzle,Level 5,0,0,0.09,0,0.09 +Tabi no Yubisashi Kaiwachou DS: DS Series 4 America,DS,2006,Misc,Nintendo,0,0,0.09,0,0.09 +Invasion From Beyond,PS,1998,Shooter,GT Interactive,0.05,0.03,0,0.01,0.09 +50 Cent: Bulletproof,PSP,2006,Action,Vivendi Games,0.08,0,0,0.01,0.09 +Forgotten Realms: Demon Stone,XB,2004,Action,Atari,0.06,0.02,0,0,0.09 +Counter-Strike: Source,PC,2004,Shooter,Vivendi Games,0,0.07,0,0.02,0.09 +My Make-Up,DS,2008,Misc,Oxygen Interactive,0.08,0,0,0.01,0.09 +Major League Baseball 2K7,PSP,2007,Sports,Take-Two Interactive,0.08,0,0,0.01,0.09 +The Penguins of Madagascar: Dr. Blowhole Returns - Again!,Wii,2011,Action,THQ,0.05,0.03,0,0.01,0.09 +LEGO Star Wars II: The Original Trilogy,GBA,2006,Action,LucasArts,0.06,0.02,0,0,0.09 +Tim Burton's The Nightmare Before Christmas: Oogie's Revenge,XB,2005,Adventure,Disney Interactive Studios,0.06,0.02,0,0,0.09 +Knights in the Nightmare,PSP,2010,Role-Playing,Atlus,0.06,0,0.02,0.01,0.09 +Mahjong Master,N64,1996,Misc,Konami Digital Entertainment,0,0,0.09,0,0.09 +Adventure Time: The Secret of the Nameless Kingdom,X360,2014,Action,Little Orbit,0,0.08,0,0.01,0.09 +Royal Palace of White Sword and The City of Gentiles,XB,2005,Role-Playing,Take-Two Interactive,0.06,0.02,0,0,0.09 +Midnight Play! Pack,DS,2008,Misc,Ubisoft,0.08,0,0,0.01,0.09 +Top Gear Rally,GBA,2003,Racing,Kemco,0.06,0.02,0,0,0.09 +Busy Scissors,Wii,2010,Simulation,Little Orbit,0.08,0,0,0,0.09 +Knights Contract,PS3,2011,Action,Namco Bandai Games,0.04,0.03,0,0.01,0.09 +Gray Matter,PC,2011,Adventure,DTP Entertainment,0.02,0.05,0,0.01,0.09 +L: the proLogue to DEATH NOTE - Rasen no Wana,DS,2008,Adventure,Konami Digital Entertainment,0,0,0.09,0,0.09 +Famicom Mini: Makaimura,GBA,2004,Platform,Capcom,0,0,0.08,0,0.09 +Might & Magic Heroes VII,PC,2015,Strategy,Ubisoft,0,0.08,0,0,0.09 +XIII,GC,2003,Shooter,Ubisoft,0.07,0.02,0,0,0.09 +Pro Evolution Soccer 2013,PC,2012,Sports,Konami Digital Entertainment,0,0.07,0,0.01,0.09 +Dynasty Warriors 8: Empires,PS3,2014,Action,Tecmo Koei,0,0,0.09,0,0.09 +The Incredibles: Rise of the Underminer,XB,2005,Action,THQ,0.06,0.02,0,0,0.09 +Theme Hospital,PS,1998,Strategy,Electronic Arts,0.03,0.02,0.03,0.01,0.09 +Princess Isabella: A Witch's Curse,DS,2010,Adventure,GSP,0.05,0.03,0,0.01,0.09 +Blacksite: Area 51,PS3,2007,Shooter,Midway Games,0.07,0.01,0,0.01,0.09 +Wizardry: Tale of the Forsaken Land,PS2,2001,Role-Playing,Ubisoft,0.04,0.03,0,0.01,0.09 +Cloudy With a Chance of Meatballs,X360,2009,Platform,Ubisoft,0.07,0.01,0,0.01,0.09 +Charlotte's Web,DS,2006,Action,Sega,0.08,0,0,0.01,0.09 +ChuChu Rocket!,GBA,2001,Strategy,Atari,0.06,0.02,0,0,0.09 +FIFA 12,PS2,2011,Sports,Electronic Arts,0,0.02,0,0.06,0.09 +Monster Jam: Urban Assault,PSP,2008,Racing,Activision,0.08,0,0,0.01,0.09 +Ys I & II Chronicles,PSP,2009,Role-Playing,Falcom Corporation,0.05,0,0.03,0.01,0.09 +Codename Tenka,PS,1997,Shooter,Psygnosis,0.05,0.03,0,0.01,0.09 +Edna & Harvey: Harvey's New Eyes,PC,2011,Adventure,Rondomedia,0,0.07,0,0.01,0.09 +Savage Skies,PS2,2002,Shooter,Big Ben Interactive,0.04,0.03,0,0.01,0.09 +Cartoon Network: Punch Time Explosion XL,Wii,2011,Fighting,Crave Entertainment,0.07,0.01,0,0.01,0.09 +1 vs. 100,DS,2008,Misc,DSI Games,0.08,0,0,0.01,0.09 +Sega Bass Fishing,DC,1999,Sports,Sega,0,0,0.09,0,0.09 +Indianapolis 500 Legends,DS,2007,Racing,Destineer,0.08,0,0,0.01,0.09 +Walt Disney's The Jungle Book: Rhythm N'Groove,PS,2000,Misc,Sony Computer Entertainment,0.05,0.03,0,0.01,0.09 +Petz: Saddle Club,PSP,2009,Simulation,Ubisoft,0.08,0,0,0.01,0.09 +Just Dance Wii U,WiiU,2014,Misc,Nintendo,0,0,0.09,0,0.09 +Cyberia,PS,1995,Action,Interplay,0.05,0.03,0,0.01,0.09 +Killer7,PS2,2005,Action,Capcom,0.04,0.03,0,0.01,0.09 +Million God,PS2,2002,Misc,Nippon Amuse,0,0,0.09,0,0.09 +The Penguins of Madagascar: Dr. Blowhole Returns - Again!,PS3,2011,Action,THQ,0.04,0.03,0,0.01,0.09 +Rugby 15,XOne,2015,Sports,Bigben Interactive,0.03,0.05,0,0.01,0.09 +Ys VIII: Lacrimosa of Dana,PSV,2016,Role-Playing,Nihon Falcom Corporation,0,0,0.09,0,0.09 +Build 'n Race,Wii,2009,Racing,Zoo Games,0.08,0,0,0.01,0.09 +Lost Heroes,3DS,2012,Role-Playing,Namco Bandai Games,0,0,0.09,0,0.09 +Astro Boy,PS2,2004,Action,Sega,0.04,0.03,0,0.01,0.09 +Wing Commander IV: The Price of Freedom,PS,1997,Simulation,Origin Systems,0.05,0.03,0,0.01,0.09 +Monster House,GBA,2006,Adventure,THQ,0.06,0.02,0,0,0.09 +MetropolisMania,PS2,2001,Strategy,Natsume,0.04,0.03,0,0.01,0.09 +Shin Megami Tensei: Devil Summoner - Raidou Kuzunoha vs. The Soulless Army,PS2,2006,Role-Playing,Tecmo Koei,0,0,0.09,0,0.09 +Shadow of Destiny,PSP,2009,Adventure,Konami Digital Entertainment,0.07,0,0,0.01,0.09 +Guilty Gear XX Accent Core Plus,PSP,2008,Fighting,PQube,0.03,0.01,0.04,0.01,0.08 +Kuroko's Basketball: Ties to Future,3DS,2015,Action,Namco Bandai Games,0,0,0.08,0,0.08 +NCAA Football 08,XB,2007,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Princess Maker 2,SAT,1995,Simulation,Micro Cabin,0,0,0.08,0,0.08 +Ephemeral Fantasia,PS2,2000,Role-Playing,Konami Digital Entertainment,0.04,0.03,0,0.01,0.08 +SRS: Street Racing Syndicate,GC,2004,Racing,Namco Bandai Games,0.07,0.02,0,0,0.08 +Winter Sports 2: The Next Challenge,PS2,2008,Sports,Conspiracy Entertainment,0.04,0.03,0,0.01,0.08 +Chameleon,PSP,2006,Puzzle,505 Games,0.07,0,0,0.01,0.08 +Aibou DS,DS,2009,Adventure,Tecmo Koei,0,0,0.08,0,0.08 +Ultimate Card Games DS,DS,2008,Strategy,Telegames,0.08,0,0,0.01,0.08 +Tokimeki Memorial: Taisen Pazurudama,SAT,1996,Puzzle,Konami Digital Entertainment,0,0,0.08,0,0.08 +Diva Girls: Divas on Ice,Wii,2009,Sports,505 Games,0.07,0.01,0,0.01,0.08 +Beat Sketch!,PS3,2010,Misc,Sony Computer Entertainment,0,0,0.08,0,0.08 +Natural Doctrine,PSV,2014,Role-Playing,Nippon Ichi Software,0.03,0.02,0.03,0.01,0.08 +Lara Croft and the Temple of Osiris,PS4,2014,Action,Square Enix,0,0.07,0,0.01,0.08 +Bleach: Heat the Soul 5,PSP,2008,Fighting,Sony Computer Entertainment,0,0,0.08,0,0.08 +Koudelka,PS,1999,Role-Playing,Atari,0.05,0.03,0,0.01,0.08 +Disgaea Infinite,PSP,2010,Adventure,Nippon Ichi Software,0.07,0,0.01,0.01,0.08 +Virtua Fighter CG Portrait Series Vol.2: Jacky Bryant,SAT,1995,Misc,Sega,0,0,0.08,0,0.08 +IHRA Drag Racing: Sportsman Edition,PS2,2006,Racing,Bethesda Softworks,0.04,0.03,0,0.01,0.08 +Famicom Mini: Famicom Mukashi Banashi - Shin Oniga Shima Zenkouhen,GBA,2004,Adventure,Nintendo,0,0,0.08,0,0.08 +Don King Boxing,DS,2009,Sports,Take-Two Interactive,0.06,0.01,0,0.01,0.08 +Escape Dead Island,PS3,2014,Action,Deep Silver,0.03,0.04,0,0.01,0.08 +Animal Planet: Emergency Vets,DS,2009,Simulation,Activision,0.08,0,0,0.01,0.08 +Martian Panic,Wii,2010,Adventure,Unknown,0.08,0,0,0,0.08 +America's Army: True Soldiers,X360,2007,Shooter,Ubisoft,0.08,0,0,0.01,0.08 +Pachitte Chonmage Tatsujin 13: Pachinko Hissatsu Shigotojin III,PS2,2007,Misc,Hackberry,0,0,0.08,0,0.08 +"Sesame Street: Ready, Set, Grover!",DS,2011,Misc,Warner Bros. Interactive Entertainment,0.08,0,0,0.01,0.08 +Marvel Nemesis: Rise of the Imperfects,DS,2005,Fighting,Electronic Arts,0.08,0,0,0.01,0.08 +Wreckin Crew,PS,1998,Racing,Telstar,0.05,0.03,0,0.01,0.08 +Theme Park,SAT,1994,Simulation,Electronic Arts,0,0,0.08,0,0.08 +Famicom Mini: Mario Bros.,GBA,2004,Platform,Nintendo,0,0,0.08,0,0.08 +MX vs. ATV Supercross,X360,2014,Racing,Nordic Games,0.03,0.05,0,0.01,0.08 +Major League Baseball 2K9,PSP,2009,Sports,Spike,0.08,0,0,0.01,0.08 +RockMan EXE 4.5 Real Operation,GBA,2004,Role-Playing,Capcom,0,0,0.08,0,0.08 +Rescue Heroes: Billy Blazes,GBA,2003,Action,Vivendi Games,0.06,0.02,0,0,0.08 +SafeCracker: The Ultimate Puzzle Adventure,Wii,2008,Puzzle,The Adventure Company,0.07,0.01,0,0.01,0.08 +Battlefield 2,PC,2005,Shooter,Electronic Arts,0,0.07,0,0.02,0.08 +Frantix,PSP,2005,Puzzle,Ubisoft,0.08,0,0,0.01,0.08 +Sega GT Online,XB,2003,Racing,Sega,0.06,0.02,0,0,0.08 +Derby Tsuku: Derby Uma o Tsukurou!,DC,2000,Sports,Sega,0,0,0.08,0,0.08 +Captain Tsubasa: New Kick Off,DS,2010,Sports,Konami Digital Entertainment,0,0.02,0.06,0,0.08 +The Spiderwick Chronicles,DS,2008,Action,Vivendi Games,0.08,0,0,0.01,0.08 +ZhuZhu Babies,DS,2011,Simulation,Activision,0.07,0.01,0,0.01,0.08 +SeaWorld Adventure Parks: Shamu's Deep Sea Adventure,GBA,2005,Adventure,Activision,0.06,0.02,0,0,0.08 +Prisoner of War,XB,2002,Adventure,Atari,0.06,0.02,0,0,0.08 +Arslan: The Warriors of Legend,PS4,2015,Action,Tecmo Koei,0.02,0.01,0.04,0.01,0.08 +S.C.A.R.S,PS,1998,Racing,Ubisoft,0.05,0.03,0,0.01,0.08 +The Secret Saturdays: Beasts of the 5th Sun,DS,2009,Action,D3Publisher,0.08,0,0,0.01,0.08 +Risen 3: Titan Lords,X360,2014,Role-Playing,Deep Silver,0.02,0.06,0,0.01,0.08 +The King of Fighters '98: Dream Match Never Ends,PS,1999,Fighting,SNK Playmore,0.05,0.03,0,0.01,0.08 +Air Conflicts: Secret Wars,X360,2011,Simulation,bitComposer Games,0.06,0.02,0,0.01,0.08 +Elebits: The Adventures of Kai and Zero,DS,2008,Adventure,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +PAC-MAN and the Ghostly Adventures,X360,2013,Platform,Namco Bandai Games,0.04,0.03,0,0.01,0.08 +Dead or Alive 5,XOne,2015,Fighting,Tecmo Koei,0.04,0.03,0.01,0.01,0.08 +ESPN NFL Primetime 2002,PS2,2001,Sports,Konami Digital Entertainment,0.04,0.03,0,0.01,0.08 +Wildlife Park 3,PC,2011,Simulation,bitComposer Games,0,0.07,0,0.02,0.08 +101-in-1 Sports Megamix,DS,2010,Sports,Nordcurrent,0.08,0,0,0.01,0.08 +From Russia With Love,PSP,2006,Action,Electronic Arts,0.07,0.01,0,0.01,0.08 +Sniper: Ghost Warrior 2,PC,2013,Shooter,City Interactive,0.02,0.05,0,0.01,0.08 +Warriors Orochi 3 Hyper,WiiU,2012,Action,Tecmo Koei,0.04,0.02,0.02,0.01,0.08 +Zoids: Legacy,GBA,2003,Role-Playing,Tomy Corporation,0.06,0.02,0,0,0.08 +Kidou Senshi Gundam 00,DS,2008,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Monster Jam: Path of Destruction,PSP,2010,Racing,Activision,0.07,0,0,0.01,0.08 +Captain America: Super Soldier,3DS,2011,Action,Sega,0.05,0.02,0,0.01,0.08 +Major League Baseball 2K12,DS,2012,Sports,Take-Two Interactive,0.08,0,0,0.01,0.08 +Onimusha Tactics,GBA,2003,Strategy,Capcom,0.06,0.02,0,0,0.08 +Bomberman Jetters,GC,2002,Puzzle,Hudson Soft,0.06,0.02,0,0,0.08 +TOCA Race Driver 3,PS2,2006,Racing,Codemasters,0.04,0.03,0,0.01,0.08 +Sports Collection,DS,2010,Sports,Ubisoft,0.06,0.01,0,0.01,0.08 +Konami Classics Vol. 1,X360,2009,Misc,Konami Digital Entertainment,0.08,0,0,0.01,0.08 +Pac-Man Power Pack,PS2,2008,Misc,Namco Bandai Games,0.04,0.03,0,0.01,0.08 +Charm Girls Club: My Fashion Show,DS,,Simulation,Unknown,0.08,0,0,0.01,0.08 +Disney's Donald Duck: Goin' Quackers,PS2,2000,Platform,Ubisoft,0.04,0.03,0,0.01,0.08 +Ultimate Brain Games,GBA,2003,Misc,Telegames,0.06,0.02,0,0,0.08 +NHL 2K7,X360,2006,Sports,Take-Two Interactive,0.07,0,0,0.01,0.08 +The Seven Deadly Sins: Unjust Sin,3DS,2015,Adventure,Namco Bandai Games,0,0,0.08,0,0.08 +Armorines: Project S.W.A.R.M.,PS,2000,Shooter,Acclaim Entertainment,0.05,0.03,0,0.01,0.08 +Gundam Seed: Battle Assault,GBA,2004,Fighting,Namco Bandai Games,0.06,0.02,0,0,0.08 +Chibi Maruko-Chan: Harikiri 365-Nichi no Maki,SNES,1991,Misc,Epoch,0,0,0.08,0,0.08 +Get Fit with Mel B,X360,,Sports,Black Bean Games,0,0.07,0,0.01,0.08 +SaGa 3: Jikuu no Hasha - Shadow or Light,DS,2011,Role-Playing,Square Enix,0,0,0.08,0,0.08 +Miami Nights: Singles in the City,DS,2008,Simulation,Ubisoft,0.08,0,0,0.01,0.08 +Phantom Brave: The Hermuda Triangle,PSP,2010,Role-Playing,Nippon Ichi Software,0.05,0,0.03,0.01,0.08 +Famicom Mini: Adventure Island,GBA,2004,Action,Hudson Soft,0,0,0.08,0,0.08 +Aliens versus Predator: Extinction,XB,2003,Strategy,Electronic Arts,0.06,0.02,0,0,0.08 +RTX Red Rock,PS2,2003,Shooter,LucasArts,0.04,0.03,0,0.01,0.08 +Nano Assault,3DS,2011,Shooter,Majesco Entertainment,0.08,0,0,0.01,0.08 +X Rebirth,PC,2013,Simulation,Koch Media,0,0.08,0,0.01,0.08 +FIFA Street 2,XB,2006,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Tokimeki Memorial: Girl's Side,PS2,2002,Adventure,Konami Digital Entertainment,0,0,0.08,0,0.08 +Naruto Shippuden: Shinobi Rumble,DS,2010,Fighting,Takara Tomy,0.03,0,0.05,0,0.08 +Shining Force: Resurrection of the Dark Dragon,GBA,2004,Role-Playing,THQ,0.06,0.02,0,0,0.08 +Shining Soul II,GBA,2003,Role-Playing,THQ,0.06,0.02,0,0,0.08 +Orega Kantoku Da! Gekitou Pennant Race,PS2,2000,Sports,Enix Corporation,0,0,0.08,0,0.08 +America's Next Top Model,Wii,2010,Action,Crave Entertainment,0.08,0,0,0.01,0.08 +Nikoli's Pencil Puzzle,3DS,2011,Puzzle,Hudson Soft,0.05,0.03,0,0.01,0.08 +Hello Kitty: Roller Rescue,GC,2005,Action,Empire Interactive,0.06,0.02,0,0,0.08 +Jikkyou Powerful Pro Yakyuu 12,GC,2005,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +Metal Slug Advance,GBA,2004,Shooter,Ignition Entertainment,0.06,0.02,0,0,0.08 +Pac-Man World Rally,GC,2006,Racing,Namco Bandai Games,0.06,0.02,0,0,0.08 +Gradius Galaxies,GBA,2001,Shooter,Konami Digital Entertainment,0.06,0.02,0,0,0.08 +Blazing Angels: Squadrons of WWII,XB,2006,Simulation,Ubisoft,0.06,0.02,0,0,0.08 +Mortal Kombat Kollection,PS2,2008,Fighting,Midway Games,0.04,0.03,0,0.01,0.08 +Blades of Blood: Samurai Shodown III,PS,1995,Fighting,Sony Computer Entertainment,0.05,0.03,0,0.01,0.08 +LEGO Soccer Mania,PS2,2002,Sports,Electronic Arts,0.04,0.03,0,0.01,0.08 +Puchi Puchi Virus,DS,2007,Puzzle,Jaleco,0.08,0,0,0.01,0.08 +Gundam the 3D Battle,3DS,2011,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Petz: Dogz Family,PSP,2009,Simulation,Ubisoft,0.05,0.02,0,0.01,0.08 +Worms: Open Warfare,DS,2006,Strategy,THQ,0.05,0.03,0,0.01,0.08 +Ride,PS3,2015,Racing,Milestone S.r.l.,0,0.06,0.01,0.01,0.08 +Deadliest Catch: Sea of Chaos,PS3,2010,Sports,Crave Entertainment,0.08,0,0,0.01,0.08 +Godzilla Generations,DC,1998,Action,Sega,0,0,0.08,0,0.08 +Strider 2,PS,2000,Platform,Virgin Interactive,0.05,0.03,0,0.01,0.08 +ShellShock 2: Blood Trails,PS3,2009,Shooter,Eidos Interactive,0.04,0.03,0,0.01,0.08 +Forbidden Siren 2,PS2,2006,Action,Sony Computer Entertainment,0,0,0.08,0,0.08 +Board Game Classics,GBA,2005,Misc,"Destination Software, Inc",0.06,0.02,0,0,0.08 +Supremacy MMA,X360,2011,Fighting,505 Games,0.05,0.03,0,0.01,0.08 +Game of Thrones,PC,2012,Role-Playing,Focus Home Interactive,0,0.07,0,0.01,0.08 +Shin Megami Tensei: Digital Devil Saga 2,PS2,2005,Role-Playing,Ghostlight,0.04,0.03,0,0.01,0.08 +Death Jr. and the Science Fair of Doom,DS,2007,Platform,Konami Digital Entertainment,0.08,0,0,0.01,0.08 +"Steins,Gate",PS3,2012,Adventure,PQube,0.01,0.04,0.02,0.01,0.08 +Super Monkey Ball Adventure,PSP,2006,Platform,Sega,0.05,0.02,0,0.01,0.08 +Zatch Bell! Mamodo Battles,PS2,2005,Fighting,Namco Bandai Games,0.04,0.03,0,0.01,0.08 +Dream Day: Wedding Destinations,DS,2009,Simulation,THQ,0.08,0,0,0.01,0.08 +Face Racers: Photo Finish,3DS,,Racing,Majesco Entertainment,0.08,0,0,0,0.08 +Bejeweled 3,PC,2010,Puzzle,PopCap Games,0.02,0.05,0,0.01,0.08 +Iron Man / X-O Manowar in Heavy Metal,PS,1996,Platform,Acclaim Entertainment,0.05,0.03,0,0.01,0.08 +Derby Stallion 98,SNES,1998,Sports,ASCII Entertainment,0,0,0.08,0,0.08 +Pimp My Ride: Street Racing,PS2,2009,Racing,Activision,0.04,0.03,0,0.01,0.08 +Exit,PSP,2005,Puzzle,Ubisoft,0.07,0,0,0.01,0.08 +God Eater Resurrection,PS4,2015,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Robotron X,PS,1996,Shooter,GT Interactive,0.05,0.03,0,0.01,0.08 +Pretty Rhythm: My Deco Rainbow Wedding,3DS,2013,Misc,Takara Tomy,0,0,0.08,0,0.08 +Kamen Rider: Travelers Senki,3DS,2013,Action,Seventh Chord,0,0,0.08,0,0.08 +Sushi Academy,DS,2009,Action,DTP Entertainment,0.08,0,0,0.01,0.08 +J-League Winning Eleven 2009: Club Championship,PS2,2009,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +The Sims 2: Ikea Home Stuff,PC,2008,Simulation,Electronic Arts,0,0.07,0,0.02,0.08 +Grand Prix Challenge,PS2,2002,Racing,Atari,0.04,0.03,0,0.01,0.08 +Super Robot Taisen OG Saga: Endless Frontier,DS,2008,Role-Playing,Namco Bandai Games,0.08,0,0,0.01,0.08 +Meitantei Conan & Kindaichi Shounen no Jikenbou: Meguri au Futari no Meitantei,DS,2009,Adventure,Namco Bandai Games,0,0,0.08,0,0.08 +Smart Bomb,PSP,2005,Puzzle,Eidos Interactive,0.07,0,0,0.01,0.08 +FIFA Soccer 2005,GBA,2004,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +PoPoLoCrois (JP sales),PSP,2005,Role-Playing,Ignition Entertainment,0,0,0.08,0,0.08 +Ken to Mahou to Gakuen Mono. 2,PSP,2009,Role-Playing,Acquire,0,0,0.08,0,0.08 +NHL 06,GC,2005,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Kaijuu Busters Powered,DS,2011,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Major League Baseball 2K11,PC,2011,Sports,Take-Two Interactive,0.06,0.01,0,0.01,0.08 +Initial D: Extreme Stage,PS3,2008,Racing,Sega,0,0,0.08,0,0.08 +Pinobee: Wings of Adventure,GBA,2001,Platform,Hudson Entertainment,0.06,0.02,0,0,0.08 +State of Emergency 2,PS2,2006,Shooter,SouthPeak Games,0.04,0.03,0,0.01,0.08 +Gintama Gin-Oh Quest: Gin-San ga Tenshoku Shitari Sekai wo Sukuttari,DS,2007,Role-Playing,Banpresto,0,0,0.08,0,0.08 +My English Coach: Para Hispanoparlantes,DS,2009,Misc,Ubisoft,0.08,0,0,0.01,0.08 +Ninjabread Man,Wii,2007,Action,Popcorn Arcade,0.07,0,0,0.01,0.08 +One Piece: Romance Dawn - Bouken no Yoake,3DS,2013,Fighting,Namco Bandai Games,0,0,0.08,0,0.08 +Crush,PSP,2007,Puzzle,Sega,0.07,0,0,0.01,0.08 +I Am In The Movie,Wii,2012,Simulation,Namco Bandai Games,0,0,0.08,0,0.08 +Fatal Frame III: The Tormented,PS2,2005,Action,Take-Two Interactive,0.04,0.03,0,0.01,0.08 +Zero: Tsukihami no Kamen,Wii,,Action,Nintendo,0,0,0.08,0,0.08 +Ice Age 2: The Meltdown,Wii,2006,Platform,Vivendi Games,0.06,0.01,0,0.01,0.08 +Seven Samurai 20XX,PS2,2004,Action,Sega,0.04,0.03,0,0.01,0.08 +10 Minute Solution,Wii,2010,Sports,Activision,0.06,0.01,0,0.01,0.08 +"Hisshou Pachinko*Pachi-Slot Kouryaku Series DS Vol. 2: Shinseiki Evangelion - Shito, Futatabi",DS,2008,Misc,D3Publisher,0,0,0.08,0,0.08 +Jikkyou Powerful Pro Yakyuu 15,Wii,2008,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +Cloudy With a Chance of Meatballs,PSP,2009,Platform,Ubisoft,0.07,0,0,0.01,0.08 +Tom Clancy's Splinter Cell: Pandora Tomorrow,GC,2004,Action,Ubisoft,0.06,0.02,0,0,0.08 +Ultimate Ghosts 'n Goblins,PSP,2006,Platform,Capcom,0.07,0.01,0,0.01,0.08 +Slayers Royal,PS,1998,Role-Playing,Kadokawa Shoten,0,0,0.08,0.01,0.08 +Swingerz Golf,GC,2002,Sports,Eidos Interactive,0.06,0.02,0,0,0.08 +Pro Evolution Soccer 2008 (JP sales),DS,2007,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +Petz Fantasy: Sunshine Magic,DS,2010,Simulation,Ubisoft,0.07,0,0,0,0.08 +C.O.P.: The Recruit,DS,2009,Action,Ubisoft,0.05,0.02,0,0.01,0.08 +Adventure Time: Explore the Dungeon Because I Don't Know!,X360,2013,Action,D3Publisher,0.03,0.04,0,0.01,0.08 +Toukiden 2,PS4,2016,Action,Tecmo Koei,0,0,0.08,0,0.08 +The King of Fighters 2006,PS2,2006,Fighting,Ignition Entertainment,0.01,0.01,0.05,0,0.08 +Tornado Outbreak,X360,2009,Action,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Pretty Rhythm Rainbow Live: Kira Kira My * Design,3DS,2013,Misc,Takara Tomy,0,0,0.08,0,0.08 +Nobunaga's Ambition: Rise to Power,PS2,2004,Strategy,Tecmo Koei,0,0,0.08,0,0.08 +FIFA Soccer 2003,GC,2002,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Adventure Time: The Secret of the Nameless Kingdom,3DS,2014,Action,Little Orbit,0,0.07,0,0,0.08 +Little League World Series Baseball: Double Play,DS,2010,Sports,Activision,0.08,0,0,0.01,0.08 +DanceDanceRevolution,X360,2011,Simulation,Konami Digital Entertainment,0.08,0,0,0.01,0.08 +"3 in 1: Solitaire, Mahjong & Tangram",DS,2010,Misc,Deep Silver,0,0.07,0,0.01,0.08 +Pop'n Music,Wii,2009,Misc,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Outlaw Golf,GC,2002,Sports,TDK Mediactive,0.06,0.02,0,0,0.08 +Worms: A Space Oddity,Wii,2008,Strategy,THQ,0.06,0.02,0,0.01,0.08 +"Steins,Gate: Hiyoku Renri no Darling",X360,2011,Adventure,5pb,0,0,0.08,0,0.08 +Diego's Build & Rescue,DS,2010,Action,Take-Two Interactive,0.07,0,0,0.01,0.08 +King's Field (Japan),PS,1994,Role-Playing,From Software,0,0,0.08,0.01,0.08 +Slam 'n Jam '96 featuring Magic & Kareem,PS,1995,Sports,Crystal Dynamics,0.04,0.03,0,0.01,0.08 +Far Cry Vengeance,Wii,2006,Shooter,Ubisoft,0.06,0.01,0,0.01,0.08 +Looney Tunes: Acme Arsenal,X360,2007,Action,Warner Bros. Interactive Entertainment,0.06,0.01,0,0.01,0.08 +Samurai Shodown Sen,X360,2009,Fighting,Rising Star Games,0.07,0.01,0,0.01,0.08 +Bangai-O Spirits,DS,2008,Shooter,D3Publisher,0.07,0,0,0.01,0.08 +NASCAR The Game: Inside Line,PS3,2012,Racing,Activision,0.07,0,0,0.01,0.08 +ToraDora Portable!,PSP,2009,Adventure,Namco Bandai Games,0,0,0.08,0,0.08 +The Italian Job,XB,2003,Racing,Eidos Interactive,0.06,0.02,0,0,0.08 +Smuggler's Run: Warzones,GC,2002,Misc,Take-Two Interactive,0.06,0.02,0,0,0.08 +Kaidan Restaurant: Ura Menu 100-Sen,DS,2010,Misc,Namco Bandai Games,0,0,0.08,0,0.08 +R/C Stunt Copter,PS,1998,Simulation,Interplay,0.04,0.03,0,0.01,0.08 +Yamakawa Shuppansha Kanshuu: Shousetsu Sekaishi B,DS,2007,Misc,Namco Bandai Games,0,0,0.08,0,0.08 +Pac-Man and the Ghostly Adventures 2,3DS,2014,Adventure,Namco Bandai Games,0.03,0.05,0,0.01,0.08 +Final Fantasy VI,PS,1999,Role-Playing,Sony Computer Entertainment,0,0,0.08,0.01,0.08 +Horrid Henry's Horrid Adventure,DS,2010,Adventure,Asylum Entertainment,0,0.07,0,0.01,0.08 +The Hidden,3DS,,Adventure,Unknown,0.08,0,0,0,0.08 +Jikkyou Powerful Major League 2009,PS2,2009,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +Princess in Love,DS,2009,Simulation,DTP Entertainment,0.07,0,0,0.01,0.08 +The Legend of Alon D'ar,PS2,2001,Role-Playing,Ubisoft,0.04,0.03,0,0.01,0.08 +Space Channel 5 Special Edition,PS2,2003,Misc,Agetec,0.04,0.03,0,0.01,0.08 +Cate West: The Vanishing Files,Wii,2009,Adventure,Oxygen Interactive,0.07,0,0,0.01,0.08 +Jimmie Johnson's Anything With an Engine,Wii,2011,Racing,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Black/Matrix,SAT,1998,Strategy,NEC Interchannel,0,0,0.08,0,0.08 +Big Mutha Truckers,GC,2003,Racing,Empire Interactive,0.06,0.02,0,0,0.08 +Wolfenstein: The Old Blood,PC,2015,Action,Bethesda Softworks,0,0.08,0,0,0.08 +Qubed,X360,2009,Puzzle,Atari,0.07,0,0,0.01,0.08 +The Sims 3: Fast Lane Stuff,PC,2010,Simulation,Electronic Arts,0.01,0.05,0,0.02,0.08 +TrackMania DS,DS,2008,Racing,Focus Home Interactive,0.06,0.01,0,0.01,0.08 +Junior Classic Books & Fairytales,DS,2010,Misc,GSP,0.06,0.01,0,0.01,0.08 +The King of Fighters '96,PS,1997,Fighting,SNK,0,0,0.07,0.01,0.08 +Prey the Stars,DS,2008,Action,Tecmo Koei,0.07,0,0,0.01,0.08 +Knights Contract,X360,2011,Action,Namco Bandai Games,0.05,0.03,0,0.01,0.08 +Chronicles of Mystery: The Secret Tree of Life,DS,2011,Adventure,City Interactive,0.03,0.04,0,0.01,0.08 +Uta no Prince-Sama: All Star After Secret,PSP,2015,Action,Broccoli,0,0,0.08,0,0.08 +The Space Bar,SAT,1996,Adventure,Sega,0,0,0.08,0,0.08 +Bust-A-Move 2 Arcade Edition,N64,1997,Puzzle,Acclaim Entertainment,0.06,0.02,0,0,0.08 +Knife Edge: NoseGunner,N64,1998,Shooter,Mitsui,0.06,0.02,0,0,0.08 +Puzzle Chronicles,PSP,2010,Puzzle,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Wetrix,N64,1998,Puzzle,Ocean,0.06,0.02,0,0,0.08 +NHL Breakaway 99,N64,1998,Sports,Acclaim Entertainment,0.07,0.01,0,0,0.08 +Tony Hawk's Pro Skater 3,N64,2002,Sports,Activision,0.06,0.02,0,0,0.08 +Iggy's Reckin' Balls,N64,1998,Racing,Acclaim Entertainment,0.06,0.02,0,0,0.08 +The Witch and the Hundred Knight,PS4,2015,Role-Playing,Nippon Ichi Software,0.02,0.01,0.05,0.01,0.08 +Tomb Raider: Underworld,PC,2008,Action,Eidos Interactive,0,0.06,0,0.02,0.08 +Samurai Western,PS2,2004,Action,505 Games,0.04,0.03,0,0.01,0.08 +"Warhammer 40,000: Dawn of War II - Retribution",PC,2011,Strategy,THQ,0,0.06,0,0.02,0.08 +Line Rider 2: Unbound,DS,2008,Puzzle,Deep Silver,0.07,0,0,0.01,0.08 +Earth Defense Force 2017,X360,2006,Action,D3Publisher,0.04,0.01,0.03,0,0.08 +Persona 4: Arena Ultimax,X360,2014,Fighting,Atlus,0.06,0.01,0,0.01,0.08 +Harry Potter and the Sorcerer's Stone,GC,2003,Action,Electronic Arts,0.06,0.02,0,0,0.08 +High Heat Major League Baseball 2004,XB,2003,Sports,3DO,0.06,0.02,0,0,0.08 +TimeSplitters: Future Perfect,GC,2005,Shooter,Electronic Arts,0.06,0.02,0,0,0.08 +Ultimate Shooting Collection,Wii,2008,Shooter,Milestone,0.08,0,0,0,0.08 +Kenshuui Tendo Dokuta,DS,2004,Simulation,Spike,0,0,0.08,0,0.08 +Super Sentai Battle: Ranger Cross,Wii,2011,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Soul Bubbles,DS,2008,Puzzle,Eidos Interactive,0.05,0.02,0,0.01,0.08 +Gradius III and IV,PS2,2000,Shooter,Konami Digital Entertainment,0.04,0.03,0,0.01,0.08 +Pilot ni Narou! 2,PS2,2001,Simulation,Victor Interactive,0,0,0.08,0,0.08 +AKB1/149: Love Election,PS3,2013,Adventure,Namco Bandai Games,0,0,0.08,0,0.08 +Ken to Mahou to Gakuen Mono. Final: Shinnyusei wa Ohimesama,PSP,2011,Strategy,Acquire,0,0,0.08,0,0.08 +Man vs. Wild,PS3,2010,Action,Abylight,0.07,0,0,0.01,0.08 +Incredible Crisis,PS,1999,Action,Titus,0.04,0.03,0,0.01,0.08 +Midway Arcade Treasures 3,XB,2005,Misc,Midway Games,0.06,0.02,0,0,0.08 +Witches & Vampires: The Secrets of Ashburry,DS,2010,Adventure,DTP Entertainment,0.05,0.02,0,0.01,0.08 +The King of Fighters EX2: Howling Blood,GBA,2002,Fighting,Marvelous Interactive,0.06,0.02,0,0,0.08 +Samurai Shodown III,NG,1995,Fighting,SNK,0,0,0.08,0,0.08 +Disney's Meet the Robinsons,X360,2007,Action,Disney Interactive Studios,0.07,0,0,0.01,0.08 +Cabela's North American Adventures,PS2,2010,Sports,Activision,0.04,0.03,0,0.01,0.08 +Akiba's Trip Plus,PSP,2012,Adventure,Acquire,0,0,0.08,0,0.08 +Famicom Mini: SD Gundam World Gachapon Senshi - Scramble Wars,GBA,2004,Strategy,Nintendo,0,0,0.08,0,0.08 +NBA 10: The Inside,PSP,2009,Sports,Sony Computer Entertainment,0.07,0,0,0.01,0.08 +Jillian Michaels Fitness Ultimatum 2010,DS,2009,Sports,Majesco Entertainment,0.07,0,0,0.01,0.08 +Dragon Ball Z: Battle of Z,X360,2014,Fighting,Namco Bandai Games,0.01,0.06,0,0.01,0.08 +Silent Hunter III,PC,2005,Simulation,Ubisoft,0,0.07,0,0.01,0.08 +Famicom Mini: Star Soldier,GBA,2004,Shooter,Nintendo,0,0,0.08,0,0.08 +Sentimental Graffiti 2,DC,2000,Adventure,NEC Interchannel,0,0,0.08,0,0.08 +Shonen Jump's One Piece: Pirates Carnival,GC,2005,Misc,Namco Bandai Games,0.06,0.02,0,0,0.08 +Kobitodzukan: Kobito no Fushigi - Jikken Set,3DS,2013,Misc,Nippon Columbia,0,0,0.08,0,0.08 +Goblin Commander: Unleash the Horde,XB,2003,Strategy,Jaleco,0.06,0.02,0,0,0.08 +Serious Sam 3: BFE,PC,2011,Shooter,Mastertronic,0.01,0.05,0,0.01,0.08 +MXGP 2,PS4,2016,Racing,Milestone S.r.l.,0.02,0.05,0,0.01,0.08 +Doraemon: Nobita and the Island of Miracles,3DS,2012,Action,FuRyu,0,0,0.08,0,0.08 +Puzzler Mind Gym 3D,3DS,2011,Puzzle,Ubisoft,0.07,0,0,0,0.08 +Lost Dimension,PS3,2014,Role-Playing,Nippon Ichi Software,0.05,0.01,0,0.01,0.08 +Sentimental Graffiti: First Window,SAT,1997,Adventure,NEC Interchannel,0,0,0.08,0,0.08 +Gekijouban Madoka Magicka: The Battle Pentagram,PSV,2013,Action,Namco Bandai Games,0,0,0.08,0,0.08 +Cartoon Network Collection: Game Boy Advance Video Volume 2,GBA,2004,Misc,,0.06,0.02,0,0,0.08 +Sherlock Holmes: Crimes & Punishments,XOne,2014,Adventure,Focus Home Interactive,0.03,0.04,0,0.01,0.08 +Tempest 3X,PS,1995,Shooter,Interplay,0.04,0.03,0,0.01,0.08 +A-Train,PS,1995,Simulation,Sony Computer Entertainment,0.02,0.01,0.04,0.01,0.08 +Hidden Invasion,PS2,2001,Shooter,Swing! Entertainment,0.04,0.03,0,0.01,0.08 +My Friends,DS,2009,Misc,Oxygen Interactive,0.07,0,0,0.01,0.08 +World Series of Poker 2008: Battle for the Bracelets,X360,2007,Misc,Activision,0.06,0.01,0,0.01,0.08 +Superman: Shadow of Apokolips,GC,2003,Action,Atari,0.06,0.02,0,0,0.08 +Armored Core 3 Portable,PSP,2009,Simulation,From Software,0,0,0.08,0,0.08 +Bleach: Erabareshi Tamashii,PS2,2005,Adventure,Sony Computer Entertainment,0,0,0.08,0,0.08 +The Croods: Prehistoric Party!,DS,2013,Misc,D3Publisher,0.03,0.04,0,0.01,0.08 +Sengoku Musou 3: Moushouden,Wii,2011,Action,Ackkstudios,0,0,0.08,0,0.08 +Batman: Dark Tomorrow,GC,2003,Action,Kemco,0.06,0.02,0,0,0.08 +Code Lyoko: Fall of X.A.N.A.,DS,2008,Adventure,Game Factory,0.07,0,0,0.01,0.08 +Looney Tunes: Galactic Sports,PSV,2015,Action,Sony Computer Entertainment,0,0.06,0,0.02,0.08 +Yuu Yuu Hakusho: Makyo Toitsusen,GEN,1994,Fighting,Sega,0,0,0.08,0,0.08 +The First Templar,PC,2011,Action,Kalypso Media,0.06,0.01,0,0.01,0.08 +Rock Revolution,Wii,,Misc,Unknown,0.07,0,0,0.01,0.08 +Ogre Battle Series: Tactics Ogre,PS,1997,Role-Playing,Atlus,0.04,0.03,0,0.01,0.08 +Little League World Series Baseball 2010,PS3,2010,Sports,Activision,0.07,0,0,0.01,0.08 +Wordfish,DS,2008,Puzzle,Ubisoft,0.07,0,0,0.01,0.08 +Battlestar Galactica,XB,2003,Shooter,Vivendi Games,0.06,0.02,0,0,0.08 +Fireblade,XB,2002,Action,Midway Games,0.06,0.02,0,0,0.08 +futureU: The Prep Game for SAT,DS,2008,Misc,Aspyr,0.07,0,0,0.01,0.08 +BioShock The Collection,XOne,2016,Shooter,Take-Two Interactive,0.03,0.04,0,0.01,0.08 +Johnny Test,DS,2011,Platform,505 Games,0.07,0,0,0.01,0.08 +Just Dance: Disney Party 2,WiiU,2015,Action,Ubisoft,0.06,0.01,0,0.01,0.08 +Tomb Raider: Legend,GC,2006,Action,Eidos Interactive,0.06,0.02,0,0,0.08 +Boxing Fever,GBA,2001,Sports,THQ,0.06,0.02,0,0,0.08 +RoadKill,XB,2003,Action,Midway Games,0.06,0.02,0,0,0.08 +Discovery Kids: Spider Quest,DS,2009,Misc,505 Games,0.07,0,0,0.01,0.08 +Valkyrie Drive: Bhikkhuni,PSV,2015,Action,PQube,0,0.01,0.07,0,0.08 +Gintama: Gin-San to Issho! Boku no Kabuki Machi Nikki,PS2,2007,Action,Namco Bandai Games,0,0,0.08,0,0.08 +7 Wonders of the Ancient World,PSP,2007,Puzzle,Mumbo Jumbo,0.07,0,0,0.01,0.08 +New International Track & Field,DS,2008,Sports,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Indycar Series 2005,XB,2004,Action,Codemasters,0.06,0.02,0,0,0.08 +Final Fantasy XI: Vana'diel Collection 2008,PS2,2007,Role-Playing,Square Enix,0.03,0.03,0.01,0.01,0.08 +Lost in Blue: Shipwrecked,Wii,2008,Adventure,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Madden NFL 17,X360,2016,Sports,Electronic Arts,0.06,0.01,0,0.01,0.08 +Taz Wanted,GC,2002,Platform,Atari,0.06,0.02,0,0,0.08 +The Voice,X360,2014,Action,Activision,0.07,0,0,0.01,0.08 +Penny Racers Party: Turbo-Q Speedway,Wii,2008,Racing,Takara Tomy,0.07,0,0,0.01,0.08 +Skydiving Extreme,PS,2001,Sports,Banpresto,0.04,0.03,0,0.01,0.08 +Evil Dead: Regeneration,XB,2005,Action,THQ,0.06,0.02,0,0,0.08 +Need For Speed: Undercover,PC,2008,Racing,Electronic Arts,0,0.07,0,0.01,0.08 +Dreamer Series: Shop Owner,DS,2009,Simulation,Deep Silver,0.07,0,0,0.01,0.08 +Evolution Worlds,GC,2002,Role-Playing,Ubisoft,0.06,0.02,0,0,0.08 +Dead Island: Riptide,PC,,Action,Deep Silver,0,0.07,0,0.01,0.08 +Sherlock Holmes: Crimes & Punishments,PS3,2014,Adventure,Focus Home Interactive,0.03,0.04,0,0.01,0.08 +Drama Queens,DS,2009,Misc,Majesco Entertainment,0.07,0,0,0.01,0.08 +Motto! Stitch! DS Rhythm de Rakugaki Daisakusen,DS,2010,Misc,Disney Interactive Studios,0,0,0.08,0,0.08 +Rapala Pro Bass Fishing 2010,PS2,2010,Sports,Activision,0.04,0.03,0,0.01,0.08 +My First Songs,Wii,2010,Misc,Mindscape,0,0.07,0,0.01,0.08 +Dungeon Travelers 2: The Royal Library & The Monster Seal,PSP,2013,Role-Playing,Aqua Plus,0,0,0.08,0,0.08 +Ultimate Party Challenge,Wii,2009,Misc,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +Assassin's Creed Chronicles,PS4,2016,Action,Ubisoft,0.01,0.05,0.01,0.01,0.08 +Scooby-Doo! Who's Watching Who?,PSP,2006,Adventure,THQ,0.07,0.01,0,0.01,0.08 +Sub Rebellion,PS2,2002,Simulation,Metro 3D,0.04,0.03,0,0.01,0.08 +Legend of the Guardians: The Owls of Ga'Hoole,PS3,2010,Action,Warner Bros. Interactive Entertainment,0.06,0.01,0,0.01,0.08 +Striker 96,PS,1995,Sports,Time Warner Interactive,0.04,0.03,0,0.01,0.08 +Tokimeki Memorial 4,PSP,2009,Adventure,Konami Digital Entertainment,0,0,0.08,0,0.08 +Bleach: Heat the Soul 4,PSP,2007,Fighting,Sony Computer Entertainment,0,0,0.08,0,0.08 +Pocket Dogs,GBA,2004,Misc,Agatsuma Entertainment,0.06,0.02,0,0,0.08 +Real Robots Final Attack,PS,1998,Shooter,Banpresto,0,0,0.07,0.01,0.08 +Minecraft: Story Mode,PC,2015,Adventure,Mojang,0.02,0.05,0,0.01,0.08 +P.N.03 - Product Number Three,GC,2003,Shooter,Capcom,0.06,0.02,0,0,0.08 +Samurai Warriors 2,X360,2006,Action,Tecmo Koei,0.07,0.01,0,0.01,0.08 +Boku no Natsuyasumi 3: Hokkoku Hen: Chiisana Boku no Dai Sougen,PS3,2007,Adventure,Sony Computer Entertainment,0,0,0.08,0,0.08 +Ape Escape: Pumped & Primed,PS2,2004,Misc,Sony Computer Entertainment,0.04,0.03,0,0.01,0.08 +Alien Syndrome,PSP,2007,Role-Playing,Sega,0.07,0,0,0.01,0.08 +Monster Trucks DS,DS,2005,Racing,Majesco Entertainment,0.07,0,0,0.01,0.08 +FabStyle,DS,2011,Strategy,Tecmo Koei,0,0,0.08,0,0.08 +Outlaw Tennis,PS2,2005,Sports,Global Star,0.04,0.03,0,0.01,0.08 +Grease Dance,PS3,2011,Misc,505 Games,0.05,0.02,0,0.01,0.08 +The Golf Club,PS4,2014,Sports,Unknown,0.05,0.02,0,0.01,0.08 +Mission Runway,DS,2008,Simulation,Eidos Interactive,0.07,0.01,0,0.01,0.08 +Agatha Christie: And Then There Were None,Wii,2008,Adventure,The Adventure Company,0.06,0.01,0,0.01,0.08 +Rayman Origins,PC,2012,Platform,Ubisoft,0,0.06,0,0.01,0.08 +Medabots Dual: Kabuto / Kuwagata,3DS,2013,Role-Playing,Rocket Company,0,0,0.08,0,0.08 +We Sing Rock!,Wii,2011,Misc,Nordic Games,0,0.07,0,0.01,0.08 +LEGO Soccer Mania,GBA,2002,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Gunblade NY & L.A. Machineguns Arcade Hits Pack,Wii,2010,Shooter,Sega,0.06,0.01,0,0.01,0.08 +Dawn of Heroes,DS,2010,Role-Playing,Majesco Entertainment,0.07,0,0,0,0.08 +Imagine: My Restaurant,DS,2009,Simulation,Ubisoft,0,0.07,0,0.01,0.08 +Gadget Racers,PS2,2000,Racing,Midas Interactive Entertainment,0.04,0.03,0,0.01,0.08 +Phantasy Star Online Episode III: C.A.R.D. Revolution,GC,2003,Role-Playing,Sega,0.06,0.02,0,0,0.08 +Nanashi no Game,DS,2008,Adventure,Square Enix,0,0,0.08,0,0.08 +Bleach: Heat the Soul 7,PSP,2010,Fighting,Sony Computer Entertainment,0,0,0.08,0,0.08 +Cosmic Family,Wii,2007,Misc,Ubisoft,0.07,0,0,0.01,0.08 +Whac-A-Mole,DS,2005,Puzzle,Zoo Digital Publishing,0.07,0,0,0.01,0.08 +Auto Destruct,PS,1998,Action,Electronic Arts,0.04,0.03,0,0.01,0.08 +Backyard NFL Football '09,DS,2008,Sports,Atari,0.07,0,0,0.01,0.08 +Terraria,3DS,2016,Action,505 Games,0,0.03,0.04,0,0.08 +GOTHA: Ismailia Seneki,SAT,1995,Strategy,Sega,0,0,0.08,0,0.08 +Dangerous Ji-San to 1000-nin no Otomodachi Yokoshima,3DS,2012,Action,Namco Bandai Games,0,0,0.08,0,0.08 +MLB Front Office Manager,PS3,2009,Sports,Take-Two Interactive,0.07,0,0,0.01,0.08 +Ultimate Fighting Championship: Throwdown,GC,2002,Fighting,Ubisoft,0.06,0.02,0,0,0.08 +Deep Fear,SAT,1998,Adventure,Sega,0,0,0.08,0,0.08 +Skeleton Warriors,PS,1996,Platform,Virgin Interactive,0.04,0.03,0,0.01,0.08 +Ford vs. Chevy,XB,2005,Racing,Global Star,0.06,0.02,0,0,0.08 +Endgame,PS2,2002,Shooter,Empire Interactive,0.04,0.03,0,0.01,0.08 +Dragon's Dogma Online,PS4,2015,Role-Playing,Capcom,0,0,0.08,0,0.08 +The Dukes of Hazzard: Return of the General Lee,XB,2004,Racing,Ubisoft,0.06,0.02,0,0,0.08 +Criminal Girls: Invite Only,PSP,2010,Role-Playing,Nippon Ichi Software,0,0,0.08,0,0.08 +Ultimate Duck Hunting,Wii,2009,Sports,Zoo Digital Publishing,0.07,0,0,0.01,0.08 +Virus,SAT,1997,Shooter,Hudson Soft,0,0,0.08,0,0.08 +Jikkyou Powerful Pro Yakyuu Next,Wii,2009,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +WWE Crush Hour,GC,2003,Racing,THQ,0.06,0.02,0,0,0.08 +Emily the Strange: Strangerous,DS,2011,Action,DTP Entertainment,0.04,0.03,0,0.01,0.08 +Aliens in the Attic,Wii,2009,Action,Playlogic Game Factory,0.07,0,0,0.01,0.08 +Dragon Shadow Spell,PS2,2007,Role-Playing,Flight-Plan,0,0,0.08,0,0.08 +Daniel X: The Ultimate Power,DS,2010,Action,THQ,0.07,0,0,0.01,0.08 +Sound Novel Tsukuru,SNES,1996,Misc,ASCII Entertainment,0,0,0.08,0,0.08 +World Championship Poker: Deluxe Series,DS,2005,Misc,505 Games,0.07,0,0,0.01,0.08 +Dragon Slayer: The Legend of Heroes,GEN,1994,Role-Playing,Sega,0,0,0.08,0,0.08 +NHL Hitz 20-03,GC,2002,Sports,Midway Games,0.06,0.02,0,0,0.08 +Momotarou Dentetsu 11,GC,2002,Misc,Hudson Soft,0,0,0.07,0,0.08 +The Idolm@ster,X360,2007,Simulation,Namco Bandai Games,0,0,0.08,0,0.08 +Infernal: Hell's Vengeance,X360,2009,Shooter,Playlogic Game Factory,0.06,0.01,0,0.01,0.08 +Guilty Gear XX Slash,PS2,2006,Fighting,Sammy Corporation,0,0,0.08,0,0.08 +Salon Superstar,DS,2009,Simulation,505 Games,0.07,0,0,0,0.08 +Urban Reign,PS2,2005,Action,Namco Bandai Games,0.04,0.03,0,0.01,0.08 +Super Robot Taisen Z Special Disc,PS2,2009,Misc,Namco Bandai Games,0,0,0.08,0,0.08 +Slayers Royal 2,SAT,1998,Role-Playing,Kadokawa Shoten,0,0,0.08,0,0.08 +Family Game Night 4: The Game Show,X360,2011,Misc,Electronic Arts,0.07,0,0,0.01,0.08 +Resident Evil 3: Nemesis,GC,2003,Action,Capcom,0.06,0.02,0,0,0.08 +All-Star Baseball 2004,GC,2003,Sports,Acclaim Entertainment,0.06,0.02,0,0,0.08 +Madden NFL 08,GC,2007,Sports,Electronic Arts,0.06,0.02,0,0,0.08 +Ro-Kyu-Bu!,PSP,2011,Adventure,Kadokawa Shoten,0,0,0.08,0,0.08 +Frogger Beyond,XB,2002,Platform,Konami Digital Entertainment,0.06,0.02,0,0,0.08 +Man vs. Wild,Wii,2011,Action,Crave Entertainment,0.07,0,0,0,0.08 +Katekyoo Hitman Reborn! DS: Flame Rumble Kaien Ring Soudatsuen!,DS,2007,Fighting,Takara Tomy,0,0,0.08,0,0.08 +Stuart Little 3: Big Photo Adventure,PS2,2005,Platform,Sony Computer Entertainment,0.04,0.03,0,0.01,0.08 +"Ni Hao, Kai-lan: Super Game Day",PS2,2009,Misc,Take-Two Interactive,0.04,0.03,0,0.01,0.08 +Katekyoo Hitman Reborn! DS: Flame Rumble Hyper - Moeyo Mirai,DS,2008,Fighting,Takara Tomy,0,0,0.08,0,0.08 +Pro Yakyuu Famista DS 2010,DS,2010,Sports,Namco Bandai Games,0,0,0.08,0,0.08 +Captain Tsubasa,PS2,2006,Sports,Namco Bandai Games,0,0,0.08,0,0.08 +Pitfall: The Lost Expedition,GC,2004,Platform,Activision,0.06,0.02,0,0,0.08 +Need for Speed Underground 2,PC,2004,Racing,Electronic Arts,0,0.06,0,0.01,0.08 +No One Can Stop Mr. Domino!,PS,1998,Misc,JVC,0.04,0.03,0,0,0.08 +Legend of the Guardians: The Owls of Ga'Hoole,X360,2010,Action,Warner Bros. Interactive Entertainment,0.06,0.01,0,0.01,0.08 +GT Advance 3: Pro Concept Racing,GBA,2002,Racing,THQ,0.05,0.02,0,0,0.08 +PQ: Practical Intelligence Quotient,PSP,2005,Puzzle,D3Publisher,0.07,0,0,0.01,0.08 +Duke Nukem: Land of the Babes,PS,2000,Shooter,Atari,0.04,0.03,0,0,0.08 +Majin Tensei,SNES,1994,Role-Playing,Atlus,0,0,0.08,0,0.08 +Dragon Force II: Kamisarishi Daichi ni,SAT,1998,Strategy,Sega,0,0,0.08,0,0.08 +Pac-Man World 3,PSP,2005,Platform,Namco Bandai Games,0.07,0,0,0.01,0.08 +Monkey Hero,PS,1998,Action,Take-Two Interactive,0.04,0.03,0,0,0.08 +Tokyo Beat Down,DS,2008,Action,Success,0.07,0,0,0.01,0.08 +Krazy Ivan,PS,1995,Simulation,Psygnosis,0.04,0.03,0,0,0.08 +Need for Speed: Most Wanted,PC,2012,Racing,Electronic Arts,0,0.06,0,0.02,0.08 +Quo Vadis,SAT,1995,Strategy,Glams,0,0,0.08,0,0.08 +The Lord of the Rings: The Battle for Middle-Earth,PC,2004,Strategy,Electronic Arts,0.01,0.06,0,0.01,0.08 +The Legend of Kage 2,DS,2008,Action,Square Enix,0.07,0,0,0,0.08 +Fate/Tiger Colosseum,PSP,2007,Fighting,Capcom,0,0,0.08,0,0.08 +World Party Games,Wii,2009,Misc,505 Games,0.07,0,0,0.01,0.08 +Samurai Warriors Chronicles 3,3DS,2014,Action,Tecmo Koei,0,0,0.08,0,0.08 +Open Season,PSP,2006,Platform,Ubisoft,0.07,0,0,0.01,0.08 +Animal Kingdom: Wildlife Expedition,Wii,2009,Adventure,Natsume,0.07,0,0,0.01,0.08 +Brothers in Arms: Furious 4,PS3,2012,Shooter,Ubisoft,0.01,0.05,0,0.02,0.08 +Rogue Trooper: Quartz Zone Massacre,Wii,2009,Shooter,Reef Entertainment,0.07,0,0,0.01,0.08 +Dragon Ball Z: The Legacy of Goku I & II,GBA,2005,Role-Playing,Atari,0.05,0.02,0,0,0.08 +R: Racing Evolution,GC,2003,Racing,Namco Bandai Games,0.06,0.02,0,0,0.08 +Crayola: Colorful Journey,Wii,2009,Misc,Crave Entertainment,0.07,0,0,0.01,0.08 +Storybook Workshop,Wii,2009,Misc,Konami Digital Entertainment,0.07,0,0,0.01,0.08 +World Tour Soccer 06,PSP,2006,Sports,Sony Computer Entertainment,0.07,0,0,0.01,0.08 +Stella Deus: The Gate of Eternity,PS2,2004,Strategy,505 Games,0.04,0.03,0,0.01,0.08 +Vietcong: Purple Haze,XB,2004,Shooter,Gathering of Developers,0.06,0.02,0,0,0.08 +Conflict: Desert Storm,GC,2003,Shooter,SCi,0.06,0.02,0,0,0.08 +One Piece: Gear Spirit,DS,2007,Fighting,Namco Bandai Games,0,0,0.08,0,0.08 +Tales of Fandom Vol.2,PS2,2007,Role-Playing,Namco Bandai Games,0,0,0.08,0,0.08 +Titanic Mystery,DS,2010,Puzzle,PlayV,0.05,0.02,0,0.01,0.08 +Minna no Joushiki Ryoku TV,Wii,2008,Misc,Nintendo,0,0,0.08,0,0.08 +P.T.O. IV: Pacific Theater of Operations,PS2,2002,Strategy,Tecmo Koei,0.04,0.03,0,0.01,0.08 +WipEout HD Fury,PS3,2009,Racing,Sony Computer Entertainment,0,0.06,0,0.02,0.08 +Genkai Totsuki Moero Chronicle,PSV,2014,Role-Playing,Compile Heart,0,0,0.08,0,0.08 +Metal Gear Solid V: The Phantom Pain,PC,2015,Action,Konami Digital Entertainment,0,0.07,0,0,0.08 +Tears to Tiara: Garland of the Earth,PS3,2008,Strategy,Aqua Plus,0,0,0.08,0,0.08 +Madden NFL 17,PS3,2016,Sports,Electronic Arts,0.05,0.01,0,0.01,0.08 +Mind Quiz: Your Brain Coach,DS,2006,Misc,Ubisoft,0,0,0.08,0,0.08 +WRC 2: FIA World Rally Championship,X360,2011,Racing,Ubisoft,0,0.06,0,0.01,0.08 +The Hustle: Detroit Streets,PSP,2005,Sports,Deep Silver,0.07,0,0,0.01,0.08 +Codename: Kids Next Door: Operation S.O.D.A.,GBA,2004,Platform,Global Star,0.05,0.02,0,0,0.08 +Far Cry Instincts Evolution,XB,2006,Shooter,Ubisoft,0.06,0.02,0,0,0.08 +Pinball Hall of Fame: The Gottlieb Collection,XB,2004,Misc,Crave Entertainment,0.06,0.02,0,0,0.08 +Conception: Please Give Birth to My Child!,PSP,2012,Role-Playing,Spike,0,0,0.08,0,0.08 +WRC 5: FIA World Rally Championship,PSV,2015,Sports,Bigben Interactive,0,0.06,0,0.02,0.08 +Winter Sports 2011,Wii,2011,Sports,DTP Entertainment,0,0.06,0,0.01,0.08 +Medal of Honor: Underground,GBA,2002,Shooter,Zoo Digital Publishing,0.05,0.02,0,0,0.08 +Baroque,Wii,2008,Role-Playing,Rising Star Games,0.07,0,0,0,0.08 +Super Football,2600,1987,Sports,Atari,0.07,0,0,0,0.08 +The Idolmaster: Gravure For You! Vol. 3,PS3,2011,Misc,Namco Bandai Games,0,0,0.08,0,0.08 +Learn Geography,DS,2009,Misc,DreamCatcher Interactive,0.07,0,0,0.01,0.08 +Divinity II: Ego Draconis,PC,2009,Role-Playing,DTP Entertainment,0.01,0.05,0,0.01,0.08 +Disaster: Day of Crisis,Wii,2008,Action,Nintendo,0,0.03,0.04,0,0.08 +Scooby-Doo! Unmasked,XB,2005,Platform,THQ,0.06,0.02,0,0,0.08 +Shovel Knight,PS4,2015,Platform,Yacht Club Games,0.03,0.03,0,0.01,0.08 +SCORE International Baja 1000: The Official Game,PS3,2008,Racing,Activision,0.07,0,0,0.01,0.08 +Driven,GC,2002,Racing,BAM! Entertainment,0.06,0.02,0,0,0.08 +Dynasty Warriors 3,XB,2002,Action,THQ,0.06,0.02,0,0,0.08 +My Fun Facts Coach,DS,2008,Misc,Ubisoft,0.07,0,0,0.01,0.08 +Superman Returns,DS,2006,Action,Electronic Arts,0.07,0,0,0.01,0.08 +Tennis no Oji-Sama Gyutto! DokiDoki Survival - Umi to Yama no Love Passion,DS,2011,Sports,Konami Digital Entertainment,0,0,0.08,0,0.08 +Nicola Kanshuu: Model Oshare * Audition Platina,3DS,2012,Action,Alchemist,0,0,0.08,0,0.08 +Kung Fu Panda: Legendary Warriors,Wii,2008,Action,Activision,0.07,0,0,0,0.08 +MTV Music Generator 3: This Is the Remix,XB,2004,Misc,Codemasters,0.06,0.02,0,0,0.08 +Fairy Tail: Portable Guild 2,PSP,2011,Fighting,Konami Digital Entertainment,0,0,0.08,0,0.08 +Yoru no Nai Kuni,PS4,2015,Role-Playing,Tecmo Koei,0,0,0.08,0,0.08 +Backyard NBA Basketball,DS,2007,Sports,Atari,0.07,0,0,0.01,0.07 +Wizardry: Llylgamyn Saga,PS,1998,Role-Playing,Locus,0,0,0.07,0,0.07 +Party Pigs: Farmyard Games,Wii,2009,Misc,Data Design Interactive,0.07,0,0,0,0.07 +Kinnikuman Muscle Grand Prix Max 2: Tokumori,PS2,2008,Fighting,Namco Bandai Games,0,0,0.07,0,0.07 +Gale Racer,SAT,1994,Racing,Sega,0,0,0.07,0,0.07 +In The Groove,PS2,2005,Misc,RedOctane,0.04,0.03,0,0.01,0.07 +Myst,PS,1995,Adventure,Psygnosis,0,0,0.07,0,0.07 +Beat City,DS,2010,Misc,THQ,0.07,0,0,0.01,0.07 +Mega Man Legacy Collection,PS4,2016,Platform,Capcom,0.06,0,0,0.01,0.07 +AKB1/149: Love Election,PSV,2012,Adventure,Namco Bandai Games,0,0,0.07,0,0.07 +Naruto Shippuden: Gekito Ninja Taisen! EX 3,Wii,2008,Fighting,Takara Tomy,0,0,0.07,0,0.07 +Boku no Natsuyasumi Portable 2: Nazo Nazo Shimai to Chinbotsusen no Himitsu,PSP,2010,Adventure,Sony Computer Entertainment,0,0,0.07,0,0.07 +Torchlight,PC,2009,Role-Playing,JoWood Productions,0,0.06,0,0.02,0.07 +Winter Sports 2: The Next Challenge,X360,2008,Sports,RTL,0.06,0.01,0,0.01,0.07 +Magic Pengel: The Quest for Color,PS2,2002,Role-Playing,Taito,0.04,0.03,0,0.01,0.07 +Super Baseball,2600,1987,Sports,Atari,0.07,0,0,0,0.07 +Jikkyou Powerful Pro Yakyuu 2011 Ketteiban,PS3,2011,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Formula One World Championship: Beyond the Limit,SCD,1994,Racing,Sega,0,0,0.07,0,0.07 +Hakuouki DS,DS,2010,Adventure,Idea Factory,0,0,0.07,0,0.07 +Buster Bros. Collection,PS,1997,Puzzle,Capcom,0.04,0.03,0,0,0.07 +Sony Computer Science Kenkyuujo Mogi Kenichirou Hakase Kanshuu: Nou ni Kaikan Aha Taiken!,PSP,2006,Misc,Sega,0,0,0.07,0,0.07 +Mega Man Battle Network: Operation Shooting Star,DS,,Role-Playing,Capcom,0,0,0.07,0,0.07 +Futurama,PS2,2003,Platform,SCi,0.04,0.03,0,0.01,0.07 +Medabots 8,3DS,2014,Role-Playing,Rocket Company,0,0,0.07,0,0.07 +The History Channel: Battle for the Pacific,PS3,2008,Shooter,Activision,0.07,0,0,0.01,0.07 +Famicom Mini: Hikari Shinwa: Palutena no Kagami,GBA,2004,Platform,Nintendo,0,0,0.07,0,0.07 +Rayman 3: Hoodlum Havoc,XB,2003,Platform,Ubisoft,0.06,0.02,0,0,0.07 +Again,DS,2009,Adventure,Ackkstudios,0.07,0,0,0,0.07 +Momotarou Dentetsu Tag Match: Yuujou - Doryoku - Shouri no Maki!,PSP,2010,Misc,Hudson Soft,0,0,0.07,0,0.07 +Zumba Fitness Core,Wii,2012,Misc,505 Games,0,0.07,0,0.01,0.07 +Yoru no Nai Kuni,PSV,2015,Role-Playing,Tecmo Koei,0,0,0.07,0,0.07 +Generator Rex: Agent of Providence,PS3,2011,Action,Activision,0.05,0.01,0,0.01,0.07 +Jimmie Johnson's Anything With an Engine,PS3,2011,Racing,Konami Digital Entertainment,0.07,0,0,0.01,0.07 +Super Ghouls 'n Ghosts,GBA,2002,Platform,Capcom,0.05,0.02,0,0,0.07 +Boxing,PS,2000,Fighting,Midas Interactive Entertainment,0.04,0.03,0,0,0.07 +NHL Open Ice,PS,1996,Sports,Midway Games,0.04,0.03,0,0,0.07 +Jewel Link Chronicles: Legend of Athena,DS,2011,Puzzle,GSP,0,0.06,0,0.01,0.07 +Gundam Battle Tactics,PSP,2005,Action,Namco Bandai Games,0,0,0.07,0,0.07 +Touch Detective: Nameko Shigeru,3DS,2013,Adventure,Success,0,0,0.07,0,0.07 +Aikatsu! My No.1 Stage!,3DS,2015,Misc,Namco Bandai Games,0,0,0.07,0,0.07 +Sky Gunner,PS2,2001,Action,Sony Computer Entertainment,0.04,0.03,0,0.01,0.07 +Santa Claus Is Comin' to Town!,DS,2011,Puzzle,Crave Entertainment,0.07,0,0,0.01,0.07 +And1 Streetball,XB,2006,Action,Ubisoft,0.06,0.02,0,0,0.07 +Gladius,GC,2003,Strategy,Activision,0.06,0.01,0,0,0.07 +Adventure Time: Finn & Jake Investigations,3DS,2015,Action,Little Orbit,0.02,0.05,0,0.01,0.07 +Kenka Banchou 6: Soul & Blood,3DS,2015,Fighting,Screenlife,0,0,0.07,0,0.07 +Jewel Time Deluxe,DS,2011,Puzzle,O-Games,0.04,0.03,0,0.01,0.07 +Picture Perfect Hair Salon,DS,2009,Simulation,505 Games,0.07,0,0,0.01,0.07 +Warriors Orochi 3,PSV,2013,Action,Tecmo Koei,0,0,0.07,0,0.07 +PhotoKano,PSV,2013,Adventure,Kadokawa Shoten,0,0,0.07,0,0.07 +Real Sound: Kaze no Riguretto,SAT,1997,Adventure,Warp,0,0,0.07,0,0.07 +Soccer Tsuku: Pro Soccer Club o Tsukurou!,PSV,2013,Sports,Sega,0,0,0.07,0,0.07 +Summon Night 4,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +Record of Agarest War,PS3,2007,Role-Playing,Ghostlight,0,0.03,0.03,0.01,0.07 +Overlord: Minions,DS,2009,Puzzle,Codemasters,0.07,0,0,0.01,0.07 +The Rub Rabbits!,DS,2005,Puzzle,Sega,0.03,0,0.04,0,0.07 +Margot's Word Brain,DS,2008,Puzzle,Zoo Games,0.07,0,0,0.01,0.07 +Saint Seiya: Brave Soldiers,PS3,2013,Fighting,Namco Bandai Games,0,0.01,0.06,0,0.07 +The Sims 3: Barnacle Bay,PC,2011,Simulation,Electronic Arts,0.07,0,0,0.01,0.07 +Winx Club,GBA,2005,Shooter,Konami Digital Entertainment,0.05,0.02,0,0,0.07 +Classic Road,PS,1995,Sports,Victor Interactive,0,0,0.07,0,0.07 +Hero Bank,3DS,2014,Role-Playing,Sega,0,0,0.07,0,0.07 +The Idolm@ster: Live for You!,X360,2008,Misc,Namco Bandai Games,0,0,0.07,0,0.07 +Tokimeki Memorial Girl's Side Premium: 3rd Story,PSP,2012,Adventure,Konami Digital Entertainment,0,0,0.07,0,0.07 +Smashing Drive,GC,,Racing,Unknown,0.06,0.01,0,0,0.07 +Mega Man Xtreme,GB,2000,Platform,Capcom,0,0,0.07,0,0.07 +ZhuZhu Pets: Quest for Zhu,DS,2011,Misc,Activision,0.07,0,0,0.01,0.07 +SimCity 4: Deluxe Edition,PC,2003,Simulation,Electronic Arts,0,0.06,0,0.01,0.07 +Bomberman Max 2: Red Advance,GBA,2002,Puzzle,Vivendi Games,0.05,0.02,0,0,0.07 +Resident Evil Zero,XOne,2016,Action,Capcom,0.05,0.02,0,0.01,0.07 +Tropico 5,X360,2014,Simulation,Kalypso Media,0.03,0.04,0,0.01,0.07 +CSI: Dark Motives,DS,2007,Adventure,Ubisoft,0.05,0.01,0,0.01,0.07 +Speed Zone,Wii,2009,Racing,Bethesda Softworks,0.01,0.05,0,0.01,0.07 +Tomb Raider: Legend,DS,2006,Action,Eidos Interactive,0.04,0.02,0,0.01,0.07 +Godai: Elemental Force,PS2,2002,Action,3DO,0.04,0.03,0,0.01,0.07 +OK! Puzzle Stars,DS,2010,Puzzle,Ubisoft,0,0.06,0,0.01,0.07 +Still Life,XB,2005,Adventure,Microids,0.05,0.02,0,0,0.07 +Big Mutha Truckers 2,XB,2005,Racing,Empire Interactive,0.05,0.02,0,0,0.07 +Hang On GP,SAT,1995,Racing,Sega,0,0,0.07,0,0.07 +Goodbye Deponia,PC,2013,Adventure,Daedalic Entertainment,0,0.06,0,0.01,0.07 +Uprising X,PS,1998,Action,3DO,0.04,0.03,0,0,0.07 +SpongeBob's Truth or Square,X360,2009,Action,THQ,0.03,0.04,0,0,0.07 +Mega Man Xtreme 2,GB,2001,Platform,Capcom,0,0,0.07,0,0.07 +I-Ninja,XB,2003,Platform,Namco Bandai Games,0.05,0.02,0,0,0.07 +Kengo: Legend of The 9,X360,2006,Fighting,Majesco Entertainment,0.06,0.01,0,0.01,0.07 +Sigma Harmonics,DS,2008,Role-Playing,Square Enix,0,0,0.07,0,0.07 +Kessen III,PS2,2004,Strategy,Tecmo Koei,0.04,0.03,0,0.01,0.07 +Harlem Globetrotters: World Tour,DS,2006,Sports,Zoo Digital Publishing,0.07,0,0,0.01,0.07 +Summon Night,DS,2008,Role-Playing,Banpresto,0,0,0.07,0,0.07 +The King of Fighters Collection: The Orochi Saga,PSP,2008,Fighting,Ignition Entertainment,0.07,0,0,0,0.07 +Aero Elite: Combat Academy,PS2,2002,Simulation,Sega,0.04,0.03,0,0.01,0.07 +You Don't Know Jack,DS,2011,Misc,THQ,0.07,0,0,0.01,0.07 +Damage Inc.: Pacific Squadron WWII,X360,2012,Simulation,Mad Catz,0.07,0,0,0.01,0.07 +Cartoon Network: Punch Time Explosion XL,X360,2011,Fighting,Crave Entertainment,0.07,0,0,0,0.07 +Wrath Unleashed,PS2,2004,Strategy,LucasArts,0.04,0.03,0,0.01,0.07 +Beyond Good & Evil,GC,2003,Adventure,Ubisoft,0.06,0.01,0,0,0.07 +Pong / Asteroids / Yars' Revenge,GBA,2005,Misc,Zoo Digital Publishing,0.05,0.02,0,0,0.07 +Commandos 2: Men of Courage,XB,2002,Strategy,Eidos Interactive,0.05,0.02,0,0,0.07 +NO?L: La Neige,PS,1998,Adventure,Pioneer LDC,0,0,0.07,0,0.07 +Busou Shinki: Battle Masters,PSP,2010,Action,Konami Digital Entertainment,0,0,0.07,0,0.07 +Roll Away,PS,1998,Puzzle,Sony Computer Entertainment,0.04,0.03,0,0,0.07 +Derby Jockey: Kishou e no Michi,SNES,1994,Sports,Asmik Corp,0,0,0.07,0,0.07 +Harukanaru Toki no Naka de 4,PS2,2008,Adventure,Tecmo Koei,0,0,0.07,0,0.07 +Maximum Chase,XB,2002,Racing,Microsoft Game Studios,0.05,0.02,0,0,0.07 +Mugen Souls Z,PS3,2013,Role-Playing,Nippon Ichi Software,0.02,0.01,0.04,0.01,0.07 +Winning Post 7 2012,PS3,2012,Sports,Ackkstudios,0,0,0.07,0,0.07 +Spot Goes to Hollywood,PS,1996,Platform,Virgin Interactive,0.04,0.03,0,0,0.07 +Teenage Mutant Ninja Turtles: Mutants in Manhattan,PS4,2016,Action,Activision,0.04,0.02,0,0.01,0.07 +G Darius,PS,1997,Shooter,THQ,0.04,0.03,0,0,0.07 +Utawarerumono: Itsuwari no Kamen,PSV,2015,Adventure,Aqua Plus,0,0,0.07,0,0.07 +The Wolf Among Us,XOne,2014,Adventure,Telltale Games,0.05,0.02,0,0.01,0.07 +Mucha Lucha! Mascaritas of the Lost Code,GBA,2003,Fighting,Ubisoft,0.05,0.02,0,0,0.07 +Invizimals: The Alliance,PSV,2013,Action,Sony Computer Entertainment,0,0.05,0,0.02,0.07 +Roogoo Attack!,DS,2009,Puzzle,SouthPeak Games,0.07,0,0,0,0.07 +Disney's Planes,3DS,2013,Simulation,Disney Interactive Studios,0.04,0.03,0,0.01,0.07 +Rugby League 3,Wii,2010,Sports,Alternative Software,0,0.06,0,0.01,0.07 +SD Gundam: Gashapon Wars,GC,2005,Strategy,Namco Bandai Games,0,0,0.07,0,0.07 +Alvin and the Chipmunks,PS2,2007,Misc,Brash Entertainment,0.04,0.03,0,0.01,0.07 +Backyard Hockey,DS,2007,Sports,Atari,0.07,0,0,0.01,0.07 +River King: Mystic Valley (US sales),DS,2007,Sports,Rising Star Games,0.07,0,0,0,0.07 +Romance of the Three Kingdoms XI,PS2,2007,Strategy,Tecmo Koei,0,0,0.07,0,0.07 +Digimon World Championship,DS,2008,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +Lupin Sansei: Shijou Saidai no Zunousen,DS,2010,Adventure,Namco Bandai Games,0,0,0.07,0,0.07 +Blood Drive,PS3,2010,Racing,Activision,0.07,0,0,0,0.07 +Model * Oshare Audition: Dream Girl,3DS,2013,Misc,Alchemist,0,0,0.07,0,0.07 +Let's Paint,Wii,2010,Simulation,Zoo Games,0.07,0,0,0,0.07 +Squishy Tank,DS,2010,Puzzle,Natsume,0.07,0,0,0,0.07 +Discovery Kids: Parrot Pals,DS,2009,Simulation,505 Games,0.07,0,0,0,0.07 +Let's Ride! Friends Forever,DS,2008,Adventure,THQ,0.07,0,0,0,0.07 +Archer Maclean's 3D Pool,GBA,2003,Misc,Crave Entertainment,0.05,0.02,0,0,0.07 +Tak: The Great Juju Challenge,XB,2005,Platform,THQ,0.05,0.02,0,0,0.07 +Just Dance: Disney Party 2,X360,2015,Action,Ubisoft,0.05,0.01,0,0.01,0.07 +TMNT: Mutant Melee,GC,2005,Fighting,Konami Digital Entertainment,0.06,0.01,0,0,0.07 +Pro Farm 1,PC,2011,Simulation,Excalibur Publishing,0,0.06,0,0.01,0.07 +Combat: Task Force 121,XB,2005,Shooter,Zoo Digital Publishing,0.05,0.02,0,0,0.07 +Winning Eleven Playmaker 2010: Aoki Samurai no Chousen,Wii,2010,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Goosebumps HorrorLand,PS2,2008,Adventure,Scholastic Inc.,0.04,0.03,0,0.01,0.07 +Rugby World Cup 2015,PS3,2015,Sports,Ubisoft,0,0.06,0,0.01,0.07 +Exhibition Volume 4,XB,2003,Misc,Microsoft Game Studios,0.05,0.02,0,0,0.07 +Petz Fantasy 3D,3DS,2011,Simulation,Ubisoft,0.07,0,0,0,0.07 +Viewpoint,PS,1995,Shooter,Electronic Arts,0.04,0.03,0,0,0.07 +Code Geass: Hangyaku no Lelouch - Lost Colors,PSP,2008,Adventure,Namco Bandai Games,0,0,0.07,0,0.07 +Disney's Donald Duck Advance,GBA,2001,Platform,Ubisoft,0.05,0.02,0,0,0.07 +Dark Souls,PC,2012,Role-Playing,Namco Bandai Games,0,0.06,0,0.01,0.07 +Stacked with Daniel Negreanu,PS2,2006,Misc,Myelin Media,0.04,0.03,0,0.01,0.07 +Hakuouki: Yuugi Roku,PSP,2010,Adventure,Idea Factory,0,0,0.07,0,0.07 +Circus Maximus: Chariot Wars,XB,2002,Racing,THQ,0.05,0.02,0,0,0.07 +Mega Man Battle Network 5: Double Team DS (US sales),DS,2005,Role-Playing,Nintendo,0.07,0,0,0,0.07 +Kenyuu Densetsu Yaiba,SNES,1994,Action,Banpresto,0,0,0.07,0,0.07 +SNK Arcade Classics Vol. 1,Wii,2008,Misc,Ignition Entertainment,0.06,0,0,0.01,0.07 +Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui V,PS2,2009,Strategy,Namco Bandai Games,0,0,0.07,0,0.07 +Fantasia: Music Evolved,X360,2014,Misc,Disney Interactive Studios,0.05,0.01,0,0.01,0.07 +Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui V,PSP,2009,Strategy,Namco Bandai Games,0,0,0.07,0,0.07 +Elements of Destruction,DS,2007,Strategy,THQ,0.07,0,0,0.01,0.07 +Serious Sam: Next Encounter,PS2,2004,Shooter,Global Star,0.04,0.03,0,0.01,0.07 +Speed,Wii,2010,Racing,Unknown,0.04,0.02,0,0.01,0.07 +Eiken DS,DS,2007,Misc,Rocket Company,0,0,0.07,0,0.07 +Game Center CX: Arino no Chousenjou 2,DS,2009,Action,Namco Bandai Games,0,0,0.07,0,0.07 +Tom Clancy's Ghost Recon 2,GC,2005,Shooter,Ubisoft,0.06,0.01,0,0,0.07 +E.X. Troopers,3DS,2012,Shooter,Capcom,0,0,0.07,0,0.07 +Robocalypse,DS,2008,Strategy,Tecmo Koei,0.07,0,0,0,0.07 +Guilty Gear Xrd -Revelator-,PS4,2016,Fighting,PQube,0.02,0,0.05,0,0.07 +Grand Kingdom,PSV,2015,Role-Playing,Nippon Ichi Software,0.01,0.02,0.04,0.01,0.07 +J Legend Retsuden,3DS,2013,Misc,Namco Bandai Games,0,0,0.07,0,0.07 +The Testament of Sherlock Holmes,PC,2012,Adventure,Focus Home Interactive,0,0.06,0,0.01,0.07 +Monster Racers,DS,2009,Racing,Tecmo Koei,0.05,0,0.02,0,0.07 +The King of Fighters: Evolution,DC,2000,Fighting,SNK,0,0,0.07,0,0.07 +DS Uranai Seikatsu,DS,2009,Misc,Nintendo,0,0,0.07,0,0.07 +SpongeBob's Truth or Square,PSP,2009,Action,THQ,0.02,0.04,0,0.01,0.07 +Pitfall: The Lost Expedition,GBA,2003,Platform,Activision,0.05,0.02,0,0,0.07 +All-Star Baseball 2004,GBA,2003,Sports,Acclaim Entertainment,0.05,0.02,0,0,0.07 +Pac-Man and the Ghostly Adventures 2,WiiU,2014,Adventure,Namco Bandai Games,0.05,0.02,0,0.01,0.07 +Tom Clancy's Splinter Cell: Chaos Theory,DS,2005,Action,Ubisoft,0.06,0,0,0.01,0.07 +Cho~ricchi! Tamagotchi no Puchi Puchi Omisecchi,3DS,2012,Action,Namco Bandai Games,0,0,0.07,0,0.07 +"Flower, Sun, and Rain",DS,2008,Adventure,Rising Star Games,0.07,0,0,0.01,0.07 +James Cameron's Dark Angel,XB,2002,Action,Vivendi Games,0.05,0.02,0,0,0.07 +The Legend of Heroes: Trails in the Sky Third Chapter,PSP,2008,Role-Playing,Falcom Corporation,0,0,0.07,0,0.07 +Moxie Girlz,DS,2011,Misc,GameMill Entertainment,0.07,0,0,0,0.07 +Dave Mirra BMX Challenge,PSP,2006,Sports,Oxygen Interactive,0.06,0,0,0.01,0.07 +Hannspree Ten Kate Honda: SBK Superbike World Championship,PS2,2007,Racing,Black Bean Games,0.03,0.03,0,0.01,0.07 +Aqua Teen Hunger Force: Zombie Ninja Pro-Am,PS2,2007,Racing,Midway Games,0.03,0.03,0,0.01,0.07 +Alexi Lalas International Soccer,PS,1998,Sports,Take-Two Interactive,0.04,0.03,0,0,0.07 +Operation Flashpoint: Red River,PC,2011,Shooter,Codemasters,0.01,0.04,0,0.01,0.07 +F.E.A.R. 2: Project Origin,PC,2009,Shooter,Warner Bros. Interactive Entertainment,0.01,0.05,0,0.01,0.07 +NCAA College Football 2K3,GC,2002,Sports,Sega,0.05,0.01,0,0,0.07 +Monster Rancher Battle Card: Episode II,PS,2000,Action,Tecmo Koei,0.04,0.03,0,0,0.07 +Karaoke Revolution Party,GC,2005,Misc,Konami Digital Entertainment,0.05,0.01,0,0,0.07 +Dream Trigger 3D,3DS,,Shooter,D3Publisher,0.04,0.02,0,0.01,0.07 +Make 10: A Journey of Numbers,DS,2007,Puzzle,Nintendo,0,0,0.07,0,0.07 +Itoi Shigesato no Bass Tsuri No. 1 Ketteihan!,N64,2000,Sports,Nintendo,0,0,0.07,0,0.07 +Jumper: Griffin's Story,PS2,2008,Action,Eidos Interactive,0.03,0.03,0,0.01,0.07 +Vampire Legends: Power of Three,DS,2010,Adventure,THQ,0.07,0,0,0,0.07 +Famicom Mini: Nazo no Murasame-Jou,GBA,2004,Action,Nintendo,0,0,0.07,0,0.07 +Galerians: Ash,PS2,2002,Adventure,Sammy Corporation,0.03,0.03,0,0.01,0.07 +Mahjong Fight Club DS: Wi-Fi Taiou,DS,2006,Misc,Konami Digital Entertainment,0,0,0.07,0,0.07 +Haunting Ground,PS2,2005,Action,Capcom,0.03,0.03,0,0.01,0.07 +"Horrid Henry: The Good, The Bad and The Bugly",3DS,2011,Platform,Asylum Entertainment,0,0.06,0,0.01,0.07 +Kane & Lynch 2: Dog Days,PC,2010,Shooter,Square Enix,0,0.06,0,0.01,0.07 +Vampire Knight DS,DS,2009,Adventure,D3Publisher,0,0,0.07,0,0.07 +Disney Sports Skateboarding,GBA,2002,Sports,Konami Digital Entertainment,0.05,0.02,0,0,0.07 +Homie Rollerz,DS,2008,Racing,Destineer,0.07,0,0,0.01,0.07 +Operation Darkness,X360,2007,Role-Playing,Success,0.07,0,0,0,0.07 +Magi: The Labyrinth of Beginning,3DS,2013,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +The Wolf Among Us,PSV,2014,Adventure,Telltale Games,0.05,0,0,0.02,0.07 +Tornado,DS,,Action,Ignition Entertainment,0.07,0,0,0,0.07 +Fantasy Aquarium by DS,DS,2008,Simulation,Mercury Games,0.07,0,0,0.01,0.07 +"Hi! Hamtaro - Little Hamsters,big Adventures: Ham-Ham Challenge",DS,2005,Misc,505 Games,0.07,0,0,0,0.07 +Damnation,X360,2009,Shooter,Codemasters,0.06,0.01,0,0.01,0.07 +I Don't Have Many Friends Portable,PSP,2012,Adventure,Namco Bandai Games,0,0,0.07,0,0.07 +Rock Band Country Track Pack 2,PS3,2011,Misc,MTV Games,0.07,0,0,0.01,0.07 +Fable: The Lost Chapters,PC,2005,Role-Playing,Microsoft Game Studios,0.01,0.05,0,0.01,0.07 +Loons: The Fight For Fame,XB,2002,Action,Atari,0.05,0.02,0,0,0.07 +Romance of the Three Kingdoms IX,PS2,2003,Strategy,Tecmo Koei,0.03,0.03,0,0.01,0.07 +Second Sight,XB,2004,Adventure,Codemasters,0.05,0.02,0,0,0.07 +Metal Gear Solid,GB,2000,Action,Konami Digital Entertainment,0,0,0.07,0,0.07 +Totaled!,XB,2002,Racing,Rage Software,0.05,0.02,0,0,0.07 +Bleach: Heat the Soul 3,PSP,2006,Fighting,Sony Computer Entertainment,0,0,0.07,0,0.07 +Ecco: The Tides of Time,GEN,1993,Adventure,Sega,0,0,0.07,0,0.07 +Showtime Championship Boxing,Wii,2007,Fighting,Zoo Digital Publishing,0.06,0,0,0.01,0.07 +Rock Band Track Pack: Classic Rock,X360,2009,Misc,MTV Games,0.07,0,0,0.01,0.07 +Open Season,Wii,2006,Platform,Ubisoft,0.06,0,0,0.01,0.07 +Football Manager 2010,PC,2009,Sports,Sega,0,0.06,0,0.01,0.07 +Dave Mirra BMX Challenge,Wii,2007,Sports,505 Games,0.06,0,0,0.01,0.07 +Machine Head,PS,1996,Shooter,Eidos Interactive,0.04,0.03,0,0,0.07 +Vanguard Bandits,PS,1998,Strategy,Human Entertainment,0.04,0.03,0,0,0.07 +Lost Heroes,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +The Legend of Heroes VII: The Trail of Zero,PSV,2012,Role-Playing,Falcom Corporation,0,0,0.07,0,0.07 +Bionicle Heroes,X360,2006,Shooter,Eidos Interactive,0.05,0.01,0,0.01,0.07 +Shin Chan Contra ?Los Plastas!,DS,2009,Platform,505 Games,0,0,0.07,0,0.07 +Inversion,PS3,2012,Shooter,Namco Bandai Games,0.03,0.03,0,0.01,0.07 +Silent Hill: Origins,PS2,2008,Action,Konami Digital Entertainment,0.03,0.03,0,0.01,0.07 +Blast Radius,PS,1998,Action,Psygnosis,0.04,0.03,0,0,0.07 +Zumba Fitness Core,X360,2012,Misc,505 Games,0,0.06,0,0.01,0.07 +ESPN National Hockey Night,PS2,2001,Sports,Konami Digital Entertainment,0.03,0.03,0,0.01,0.07 +Rec Room Games,DS,2011,Sports,Destineer,0.07,0,0,0,0.07 +Theme Park,DS,2007,Simulation,Electronic Arts,0,0.03,0.03,0,0.07 +Yamaha Supercross,Wii,2009,Racing,Zoo Digital Publishing,0.05,0.01,0,0.01,0.07 +Pro Yaky? Spirits 2011,3DS,2011,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Microsoft Flight Simulator 2004: A Century of Flight,PC,2003,Simulation,Microsoft Game Studios,0,0.06,0,0.01,0.07 +Taz Wanted,XB,2002,Platform,Atari,0.05,0.02,0,0,0.07 +Harry Potter and the Sorcerer's Stone,XB,2003,Action,Electronic Arts,0.05,0.02,0,0,0.07 +Shounen Sunday x Shounen Magazine: Nettou! Dream Nine,DS,2009,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +McFarlane's Evil Prophecy,PS2,,Action,Konami Digital Entertainment,0.03,0.03,0,0.01,0.07 +Emergency 2012,PC,2010,Simulation,Deep Silver,0.01,0.04,0,0.01,0.07 +Haikyuu!! Tsunage! Itadaki no Keshiki!!,3DS,2014,Adventure,Namco Bandai Games,0,0,0.07,0,0.07 +Wallace & Gromit in Project Zoo,GC,2003,Platform,BAM! Entertainment,0.05,0.01,0,0,0.07 +John Madden Football,SNES,1991,Sports,Imagineer,0,0,0.07,0,0.07 +Aero Gauge,N64,1997,Racing,ASCII Entertainment,0.06,0.01,0,0,0.07 +Battlezone: Rise of the Black Dogs,N64,2000,Strategy,Crave Entertainment,0.06,0.01,0,0,0.07 +Caesars Palace Advance: Millennium Gold Edition,GBA,2001,Misc,Majesco Entertainment,0.05,0.02,0,0,0.07 +Shadowgate 64: Trials of the Four Towers,N64,1999,Adventure,Kemco,0.06,0.01,0,0,0.07 +Teenage Mutant Ninja Turtles: Tournament Fighters,NES,1992,Fighting,Konami Digital Entertainment,0.04,0.01,0.02,0,0.07 +Super Robot Spirits,N64,1998,Fighting,Banpresto,0,0,0.04,0.03,0.07 +Mia Hamm Soccer 64,N64,2000,Sports,THQ,0.06,0.01,0,0,0.07 +MLB Front Office Manager,X360,2009,Sports,Take-Two Interactive,0.06,0,0,0.01,0.07 +Samurai Warriors,XB,2004,Action,Tecmo Koei,0.05,0.02,0,0,0.07 +GunParade Orchestra: Shiro no Shou,PS2,2006,Adventure,Sony Computer Entertainment,0,0,0.07,0,0.07 +Hearts of Iron III,PC,2009,Strategy,Paradox Interactive,0.01,0.04,0,0.01,0.07 +Zettai Zetsumei Toshi 3: Kowareyuku Machi to Kanojyo no Uta,PSP,2009,Action,Irem Software Engineering,0,0,0.07,0,0.07 +BlazBlue: Chrono Phantasma Extend,PSV,2015,Action,PQube,0,0.05,0,0.01,0.07 +Crime Lab: Body of Evidence,DS,2010,Adventure,City Interactive,0.05,0.01,0,0,0.07 +Ant Nation,DS,2009,Simulation,Konami Digital Entertainment,0.06,0.01,0,0.01,0.07 +FIFA Soccer 2004,GC,2003,Sports,Electronic Arts,0.05,0.01,0,0,0.07 +MotoGP 15,PS3,2015,Racing,Milestone S.r.l.,0,0.03,0.03,0.01,0.07 +Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice,PS3,2013,Strategy,Namco Bandai Games,0,0,0.07,0,0.07 +The Sims 2: Seasons,PC,2007,Simulation,Electronic Arts,0.01,0.04,0,0.01,0.07 +Rayman 3: Hoodlum Havoc,GC,2003,Platform,Ubisoft,0.05,0.01,0,0,0.07 +NHL 2K9,Wii,2008,Sports,Take-Two Interactive,0.06,0,0,0.01,0.07 +Tales of Rebirth,PSP,2008,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +The Guy Game,XB,2004,Misc,Gathering of Developers,0.05,0.02,0,0,0.07 +Ultimate Marvel vs. Capcom 3,X360,2011,Fighting,Capcom,0,0.03,0.04,0,0.07 +Battleborn,PC,2016,Shooter,Take-Two Interactive,0.03,0.03,0,0.01,0.07 +Let's Ride! Dreamer,GBA,2005,Adventure,DTP Entertainment,0.05,0.02,0,0,0.07 +Tecmo's Deception,PS,1996,Role-Playing,Sunsoft,0.04,0.03,0,0,0.07 +Reader Rabbit 1st Grade,Wii,2010,Misc,Graffiti,0.07,0,0,0,0.07 +Anubis II,Wii,2007,Platform,Metro 3D,0.06,0,0,0,0.07 +Point Blank DS (JP sales),DS,2006,Shooter,Atari,0,0,0.07,0,0.07 +Ghost in the Shell: Stand Alone Complex,PSP,2005,Adventure,Atari,0.06,0,0,0.01,0.07 +Guilty Gear Xrd -Revelator-,PS3,2016,Fighting,PQube,0.01,0.02,0.02,0.01,0.07 +G-Saviour,PS2,2000,Action,Sunrise Interactive,0,0,0.07,0,0.07 +Gintama DS: Yorozuya Daisoudou,DS,2006,Action,Namco Bandai Games,0,0,0.07,0,0.07 +Drake of the 99 Dragons,XB,,Shooter,Unknown,0.05,0.01,0,0,0.07 +Heavenly Guardian,Wii,2007,Shooter,505 Games,0.06,0,0,0,0.07 +Cut the Rope,3DS,2014,Puzzle,Activision,0.06,0,0,0.01,0.07 +Crayon Shin-Chan: Obaka Daininden - Susume! Kasukabe Ninja Tai!,DS,2010,Action,Namco Bandai Games,0,0,0.07,0,0.07 +Crimson Sea 2,PS2,2004,Action,Tecmo Koei,0.03,0.03,0,0.01,0.07 +The Legend of Heroes: Trails in the Sky First Chapter,PSV,2015,Role-Playing,Kadokawa Shoten,0,0,0.07,0,0.07 +Pizza Delivery Boy,Wii,2010,Simulation,Majesco Entertainment,0.06,0,0,0,0.07 +Doraemon: Nobita to Himitsu Dougu Hakubutsukan,3DS,2013,Action,FuRyu,0,0,0.07,0,0.07 +Higurashi no Nakukoru ni Kizuna: Dai-Ichi-Kan - Tatari,DS,2008,Adventure,Alchemist,0,0,0.07,0,0.07 +IA/VT Colorful,PSV,2015,Misc,Marvelous Entertainment,0,0,0.07,0,0.07 +AMF Bowling Pinbusters!,DS,2008,Sports,Vir2L Studios,0.06,0,0,0,0.07 +Operation: Vietnam,DS,2007,Shooter,Majesco Entertainment,0.06,0,0,0,0.07 +Alpha and Omega,DS,2010,Action,Unknown,0.06,0,0,0,0.07 +Port Royale 3,PS3,,Simulation,Kalypso Media,0.06,0,0,0.01,0.07 +RayStorm,PS,1997,Shooter,Sony Computer Entertainment,0.04,0.03,0,0,0.07 +Disney's Winnie the Pooh's Rumbly Tumbly Adventure,GC,2005,Platform,Ubisoft,0.05,0.01,0,0,0.07 +Jake Power: Handyman,DS,2008,Adventure,Ubisoft,0.06,0,0,0,0.07 +My Dress-Up,DS,2008,Misc,Oxygen Interactive,0.06,0.01,0,0.01,0.07 +Circuit Breakers,PS,1998,Racing,Mindscape,0.04,0.03,0,0,0.07 +Trick DS-han: Kakushi Kami no Sumukan,DS,2010,Misc,Konami Digital Entertainment,0,0,0.07,0,0.07 +Catwoman,GC,2004,Action,Electronic Arts,0.05,0.01,0,0,0.07 +Colosseum: Road to Freedom,PS2,2005,Role-Playing,Tecmo Koei,0.03,0.03,0,0.01,0.07 +Ultimate Board Game Collection,PSP,2007,Misc,Xplosiv,0.06,0,0,0.01,0.07 +Target: Terror,Wii,2008,Shooter,Konami Digital Entertainment,0.06,0,0,0.01,0.07 +BeatMania,PS2,2006,Simulation,Konami Digital Entertainment,0.03,0.03,0,0.01,0.07 +Crayon Shin-Chan: Densetsu o Yobu Omake no To Shukkugaan!,GBA,2006,Action,Banpresto,0,0,0.07,0,0.07 +Sprint Cars: Road to Knoxville,PS2,2005,Racing,THQ,0.03,0.03,0,0.01,0.07 +Shrek's Carnival Craze Party Games,PS2,2008,Misc,Activision,0.03,0.03,0,0.01,0.07 +Real Time Conflict: Shogun Empires,DS,2005,Strategy,Namco Bandai Games,0.06,0,0,0,0.07 +Dream Dance & Cheer,Wii,2009,Misc,Zoo Games,0.06,0,0,0,0.07 +Silpheed: The Lost Planet,PS2,2000,Shooter,Swing! Entertainment,0.03,0.03,0,0.01,0.07 +Enemy Front,PS3,2014,Shooter,City Interactive,0.01,0.05,0,0.01,0.07 +Assassin's Creed: Rogue,PC,2015,Action,Ubisoft,0.04,0.02,0,0.01,0.07 +Billy's Boot Camp: Wii de Enjoy Diet!,Wii,2011,Sports,Rocket Company,0,0,0.07,0,0.07 +Spartan: Total Warrior,GC,2005,Action,Sega,0.05,0.01,0,0,0.07 +Pitfall: The Lost Expedition,XB,2004,Platform,Activision,0.05,0.01,0,0,0.07 +Fantastic Four,PS,1997,Action,Acclaim Entertainment,0.04,0.03,0,0,0.07 +Higurashi no Naku Koro ni Matsuri: Kakera Asobi,PS2,2007,Adventure,Alchemist,0,0,0.07,0,0.07 +Tournament of Legends,Wii,2010,Fighting,Sega,0.04,0.02,0,0.01,0.07 +Xbox Live Arcade Unplugged Volume 1,X360,2006,Misc,Microsoft Game Studios,0.05,0.01,0,0.01,0.07 +River City Ransom EX,GBA,2004,Action,Atlus,0.05,0.02,0,0,0.07 +San Goku Shi Taisen Ten,DS,2008,Strategy,Sega,0,0,0.07,0,0.07 +Generator Rex: Agent of Providence,DS,2011,Action,Activision,0.05,0.01,0,0.01,0.07 +Dynasty Warriors 8: Empires,XOne,2014,Action,Tecmo Koei,0.04,0.02,0,0.01,0.07 +Fairy Tail: Zelef Kakusei,PSP,2012,Action,Unknown,0,0,0.07,0,0.07 +Strike Point,PS,1996,Simulation,Elite,0.04,0.03,0,0,0.07 +Crazy Taxi 2,DC,2001,Racing,Sega,0,0,0.07,0,0.07 +Dragon Slayer: The Legend of Heroes,SNES,1992,Role-Playing,Epoch,0,0,0.07,0,0.07 +Tank! Tank! Tank!,WiiU,2012,Action,Namco Bandai Games,0.02,0.01,0.05,0,0.07 +My Horse & Me: Riding for Gold,DS,2008,Sports,Atari,0.05,0.01,0,0.01,0.07 +Street Fighter II': Special Champion Edition (JP weekly sales),GEN,1993,Action,Capcom,0,0,0.07,0,0.07 +Command & Conquer 3: Tiberium Wars,PC,2007,Strategy,Electronic Arts,0,0.06,0,0.01,0.07 +Tom and Jerry in War of the Whiskers,GC,2003,Fighting,NewKidCo,0.05,0.01,0,0,0.07 +Keroro RPG: Kishi to Musha to Densetsu no Kaizoku,DS,2010,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +Famicom Mini: Wrecking Crew,GBA,2004,Puzzle,Nintendo,0,0,0.07,0,0.07 +Hoppechan: Minna de Odekake! Waku Waku Hoppe Land!!,3DS,2014,Action,Nippon Columbia,0,0,0.07,0,0.07 +Divinity: Original Sin,XOne,2015,Role-Playing,Focus Home Interactive,0.04,0.02,0,0.01,0.07 +Suzumiya Haruhi no Gekidou,Wii,2009,Adventure,Kadokawa Shoten,0,0,0.07,0,0.07 +Classic Action: Devilish,DS,2005,Misc,505 Games,0.06,0,0,0,0.07 +Jackass the Game DS,DS,2008,Action,Empire Interactive,0.06,0,0,0.01,0.07 +Space Hulk: Vengeance of the Blood Angels,PS,1995,Shooter,Electronic Arts,0.04,0.03,0,0,0.07 +Toy Soldiers: War Chest,PS4,2015,Action,Ubisoft,0.06,0,0,0.01,0.07 +Robot Alchemic Drive,PS2,2002,Action,Enix Corporation,0.03,0.03,0,0.01,0.07 +Motor Toon Grand Prix (Japan),PS,1994,Racing,Sony Computer Entertainment,0,0,0.06,0,0.07 +Dino Master: Dig Discover Duel,DS,2005,Strategy,Majesco Entertainment,0.06,0,0,0,0.07 +Ken to Mahou to Gakuen Mono. 3,PS3,2010,Role-Playing,Acquire,0,0,0.07,0,0.07 +Hikaru no Go: Heian Gensou Ibunroku,PS,2002,Adventure,Konami Digital Entertainment,0,0,0.06,0,0.07 +Godzilla (2014),PS3,2014,Action,Namco Bandai Games,0,0.01,0.06,0,0.07 +Dynasty Warriors DS: Fighter's Battle,DS,2007,Action,Tecmo Koei,0.04,0,0.03,0,0.07 +Samurai Shodown,NG,1993,Fighting,SNK,0,0,0.07,0,0.07 +OverBlood 2,PS,1998,Action,Evolution Games,0,0,0.06,0,0.07 +Fighter Maker 2,PS2,2002,Fighting,Enterbrain,0.03,0.03,0,0.01,0.07 +Lifeline,PS2,2003,Adventure,Sony Computer Entertainment,0.03,0.03,0,0.01,0.07 +Dragon Valor,PS,1999,Role-Playing,Sony Computer Entertainment,0.04,0.03,0,0,0.07 +Judie no Atelier: Guramnat no Renkinjutsushi,PS2,2002,Role-Playing,Gust,0,0,0.07,0,0.07 +NHL 2005,GC,2004,Sports,Electronic Arts,0.05,0.01,0,0,0.07 +Midway Arcade Treasures 3,GC,2005,Misc,Midway Games,0.05,0.01,0,0,0.07 +Moshi Monsters: Katsuma Unleashed,3DS,2013,Action,Activision,0.03,0.04,0,0,0.07 +Firefighter F.D.18,PS2,2004,Action,Konami Digital Entertainment,0.03,0.03,0,0.01,0.07 +Resident Evil 5,PC,2009,Action,Capcom,0.01,0.04,0,0.01,0.07 +Secret Files: Tunguska,Wii,2008,Adventure,Koch Media,0.05,0.02,0,0.01,0.07 +DS Nishimura Kyotaro Suspense 2 Shin Tantei Series: Kanazawa Hakodate - Gokkan no Kyoukoku - Fukushuu no Kage,DS,2008,Adventure,Tecmo Koei,0,0,0.07,0,0.07 +Pro Yaky? Spirits 2014,PSV,2014,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Mega Man X4,SAT,1997,Action,Capcom,0,0,0.07,0,0.07 +Family Trainer: Treasure Adventure,Wii,2010,Sports,Namco Bandai Games,0,0.06,0,0.01,0.07 +GRID 2,PC,2013,Racing,Codemasters,0,0.06,0,0.01,0.07 +Power Pro GB,GB,1998,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Sudoku Fever,GBA,2006,Puzzle,Take-Two Interactive,0.05,0.02,0,0,0.07 +Grand Ages: Medieval,PS4,2015,Strategy,Kalypso Media,0,0.05,0.01,0.01,0.07 +The Putter Golf,PS,2001,Sports,D3Publisher,0.04,0.03,0,0,0.07 +Monster High: New Ghoul in School,PS3,2015,Action,Little Orbit,0,0.06,0,0.01,0.07 +The Powerpuff Girls: Relish Rampage,GC,2002,Action,BAM! Entertainment,0.05,0.01,0,0,0.07 +Super Real Mahjong Graffiti,SAT,1995,Misc,Seta Corporation,0,0,0.07,0,0.07 +Alan Wake,PC,2012,Action,Nordic Games,0,0.06,0,0.01,0.07 +Ninja Warriors,SNES,1993,Action,Titus,0,0,0.07,0,0.07 +Army Men: RTS,GC,2004,Strategy,Global Star,0.05,0.01,0,0,0.07 +Zettai Onkan Otoda Master,DS,2007,Role-Playing,Hudson Soft,0,0,0.07,0,0.07 +Basketball Hall of Fame Ultimate Hoops Challenge,Wii,2010,Sports,Zoo Games,0.06,0,0,0,0.07 +Dragoneer's Aria,PSP,2007,Role-Playing,Tecmo Koei,0.02,0,0.05,0,0.07 +TigerShark,PS,1997,Simulation,GT Interactive,0.04,0.03,0,0,0.07 +Lost Heroes 2,3DS,2015,Action,Namco Bandai Games,0,0,0.07,0,0.07 +Norse by Norsewest: The Return of the Lost Vikings,PS,1997,Action,Interplay,0.04,0.03,0,0,0.07 +Just Dance: Disney Party 2,XOne,2015,Action,Ubisoft,0.05,0.01,0,0.01,0.07 +N+,DS,2007,Platform,Atari,0.06,0,0,0,0.07 +Sega Soccer Slam,GC,2002,Sports,Sega,0.05,0.01,0,0,0.07 +Obscure,PS2,2004,Adventure,Microids,0.03,0.03,0,0.01,0.07 +Katekyoo Hitman Reborn! DS: Fate of Heat - Hono no Unmei,DS,2008,Role-Playing,Takara Tomy,0,0,0.07,0,0.07 +Shin Lucky * Star: Moe Drill ~Tabidachi~,DS,2007,Action,Kadokawa Shoten,0,0,0.07,0,0.07 +Mario Tennis,Wii,2010,Sports,Nintendo,0,0.06,0,0.01,0.07 +Cartoon Network: Punch Time Explosion XL,PS3,2011,Fighting,Crave Entertainment,0.06,0,0,0,0.07 +DefCon 5,PS,1995,Shooter,Psygnosis,0.04,0.03,0,0,0.07 +Lost in Blue 2,DS,2007,Adventure,Konami Digital Entertainment,0.01,0.01,0.05,0,0.07 +Build-A-Bear Workshop: Friendship Valley,Wii,,Misc,Unknown,0.06,0,0,0,0.07 +Secret Service: Ultimate Sacrifice,PS2,2008,Action,Activision,0.03,0.03,0,0.01,0.07 +Alex Rider: Stormbreaker,DS,,Action,THQ,0.06,0,0,0,0.07 +Deep Labyrinth,DS,2006,Action,505 Games,0.06,0,0,0,0.07 +Tropix,DS,2008,Puzzle,Capcom,0.06,0,0,0,0.07 +Nichibeikan Pro Yakyuu: Final League,PS2,2002,Sports,SquareSoft,0,0,0.07,0,0.07 +Resident Evil 6,PS4,2016,Shooter,Capcom,0.05,0,0,0.01,0.07 +Hammerin' Hero,PSP,2008,Action,Irem Software Engineering,0.06,0,0,0.01,0.07 +Yoostar on MTV,X360,,Misc,Unknown,0.06,0,0,0,0.07 +Spawn: Armageddon,GC,2003,Action,Electronic Arts,0.05,0.01,0,0,0.07 +God Hand,PS2,2006,Action,Capcom,0,0,0.07,0,0.07 +Shin Chan: Las Nuevas Aventuras Para Wii!,Wii,2006,Action,505 Games,0,0,0.07,0,0.07 +Challenge Me: Brain Puzzles 2,Wii,2010,Puzzle,O-Games,0,0.06,0,0.01,0.07 +The Tale of Despereaux,DS,2008,Platform,Brash Entertainment,0.06,0,0,0,0.07 +Legends of Wrestling II,GBA,2002,Fighting,Acclaim Entertainment,0.05,0.02,0,0,0.07 +Tony Hawk's Pro Skater 5,X360,2015,Sports,Activision,0.06,0,0,0.01,0.07 +Fatal Fury: Battle Archives Volume 2,PS2,2007,Fighting,SNK Playmore,0.03,0.03,0,0.01,0.07 +Jurassic Park: Operation Genesis,XB,2003,Simulation,Konami Digital Entertainment,0.05,0.01,0,0,0.07 +Transformer: Rise of the Dark Spark (3DS),3DS,2014,Role-Playing,Activision,0.05,0.01,0,0.01,0.07 +Freddi Fish: Kelp Seed Mystery,Wii,2008,Adventure,Majesco Entertainment,0.06,0,0,0,0.07 +Ragnarok: Hikari to Yami no Koujo,PSP,2011,Role-Playing,GungHo,0.02,0,0.05,0,0.07 +FIFA Soccer 06,GBA,2005,Sports,Electronic Arts,0.05,0.02,0,0,0.07 +RedCard 20-03,PS2,2002,Sports,Midway Games,0.03,0.03,0,0.01,0.07 +James Bond 007: Blood Stone,DS,2010,Shooter,Activision,0.05,0.01,0,0,0.07 +Imagine: Gymnast,DS,2008,Simulation,Ubisoft,0.05,0.01,0,0,0.07 +Kanji Sonomama DS Rakubiki Jiten,DS,2006,Misc,Nintendo,0,0,0.07,0,0.07 +Future Tactics: The Uprising,PS2,2004,Strategy,Crave Entertainment,0.03,0.03,0,0.01,0.07 +Driver: Parallel Lines,XB,2006,Racing,Atari,0.05,0.01,0,0,0.07 +Cities XL 2012,PC,2011,Strategy,Focus Home Interactive,0.01,0.05,0,0.01,0.07 +Pipe Mania,PSP,2008,Puzzle,Empire Interactive,0.06,0,0,0.01,0.07 +everGirl,GBA,2005,Adventure,THQ,0.05,0.02,0,0,0.07 +Heroes Phantasia,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.07,0,0.07 +Prince of Persia: The Fallen King,DS,2008,Action,Ubisoft,0.06,0.01,0,0.01,0.07 +Jewels of the Ages,DS,2011,Puzzle,City Interactive,0.03,0.03,0,0.01,0.07 +The Book of Unwritten Tales 2,PS4,2015,Adventure,Nordic Games,0,0.06,0,0.01,0.07 +Batman: Rise of Sin Tzu,GBA,2003,Action,Ubisoft,0.05,0.02,0,0,0.07 +Chuugaku Eitango Target 1800 DS,DS,2006,Misc,IE Institute,0,0,0.07,0,0.07 +Future Card Buddy Fight: Yuujou no Bakunetsu Fight,3DS,2015,Action,FuRyu,0,0,0.07,0,0.07 +World Racing,XB,2003,Racing,TDK Mediactive,0.05,0.01,0,0,0.07 +Major League Baseball 2K10,PSP,2010,Sports,Take-Two Interactive,0.06,0,0,0,0.07 +Penguins of Madagascar,3DS,2014,Action,Namco Bandai Games,0,0.06,0,0,0.07 +Disney's Party,GBA,2003,Misc,Hudson Entertainment,0.05,0.02,0,0,0.07 +Rapala Pro Bass Fishing 2010,PSP,2010,Sports,Activision,0.06,0,0,0.01,0.07 +X-Men: The Official Game,GBA,2006,Action,Activision,0.05,0.02,0,0,0.07 +Dreamer Series: Pop Star,DS,2009,Misc,Tivola,0.04,0.02,0,0.01,0.07 +Card Games,PS,2000,Misc,D3Publisher,0.04,0.03,0,0,0.07 +My Amusement Park,DS,2010,Misc,Scholastic Inc.,0.06,0,0,0,0.07 +Mega Man: Battle & Chase,PS,1997,Racing,Capcom,0,0,0.06,0,0.07 +Winning Post 7 2010,PS3,2010,Sports,Tecmo Koei,0,0,0.07,0,0.07 +R-Type Command,PSP,2007,Strategy,Rising Star Games,0.05,0,0.01,0.01,0.07 +Age of Empires III: The Asian Dynasties,PC,2007,Strategy,Microsoft Game Studios,0,0.05,0,0.01,0.07 +Destrega,PS,1998,Fighting,Sony Computer Entertainment,0.04,0.03,0,0,0.07 +Dungeon Maker II: The Hidden War,PSP,2007,Role-Playing,Global A Entertainment,0.06,0,0,0.01,0.07 +The Final Round,PS,1996,Sports,Konami Digital Entertainment,0.04,0.03,0,0,0.07 +Nobunaga no Yabou: Tendou with Power-Up Kit,PS3,2011,Strategy,Tecmo Koei,0,0,0.07,0,0.07 +Transformer: Rise of the Dark Spark,WiiU,2014,Action,Activision,0.05,0.01,0,0.01,0.07 +MAPLUS: Portable Navi,PSP,2006,Misc,Edia,0,0,0.07,0,0.07 +Rayman Arena,XB,,Racing,Unknown,0.05,0.01,0,0,0.07 +Brain Quest: Grades 3 & 4,DS,2008,Misc,Electronic Arts,0.06,0,0,0.01,0.07 +Petz: Hamsterz Bunch,PSP,2009,Simulation,Ubisoft,0.06,0,0,0.01,0.07 +The King of Fighters 02/03,PS2,2005,Fighting,SNK,0.03,0.03,0,0.01,0.07 +Kamen Rider: Dragon Knight,Wii,2009,Fighting,D3Publisher,0.06,0,0,0,0.07 +Army Men: Green Rogue,PS,2001,Action,3DO,0.04,0.02,0,0,0.07 +Centipede / Breakout / Warlords,GBA,2005,Misc,Zoo Digital Publishing,0.05,0.02,0,0,0.07 +Lucian Bee's: Justice Yellow / Evil Violet,PS2,2010,Adventure,5pb,0,0,0.07,0,0.07 +Sly 2: Band of Thieves,PS3,2010,Platform,Sony Computer Entertainment,0,0.05,0,0.02,0.07 +Hyperdimension Neptunia Victory,PSV,2014,Role-Playing,Compile Heart,0,0,0.07,0,0.07 +Armored Core: Nine Breaker,PS2,2004,Simulation,505 Games,0.03,0.03,0,0.01,0.07 +Doraemon: Nobita no Shin Makai Daibouken DS,DS,2007,Role-Playing,Sega,0,0,0.07,0,0.07 +SBK 2011: FIM Superbike World Championship,X360,2011,Racing,Black Bean Games,0,0.06,0,0.01,0.07 +Fairy Fencer F: Advent Dark Force,PS4,2015,Role-Playing,Idea Factory International,0.02,0,0.05,0,0.07 +Cabela's Big Game Hunter 2005 Adventures,GC,2004,Sports,Activision,0.05,0.01,0,0,0.07 +Worms 3D,GC,2003,Strategy,Sega,0.05,0.01,0,0,0.07 +Fantasy Aquarium World,Wii,2009,Simulation,Destineer,0.06,0,0,0,0.07 +Monster Tale,DS,2011,Platform,Majesco Entertainment,0.06,0,0,0,0.07 +Tokobot,PSP,2005,Platform,Take-Two Interactive,0.06,0,0,0.01,0.07 +TRON: Evolution,PC,2010,Action,Disney Interactive Studios,0.06,0,0,0,0.07 +Gambler Densetsu Tetsuya,PS2,2001,Adventure,Athena,0,0,0.07,0,0.07 +The Guided Fate Paradox,PS3,2013,Role-Playing,Nippon Ichi Software,0,0,0.06,0,0.07 +Bleach: Hanatareshi Yabou,PS2,2006,Role-Playing,Sony Computer Entertainment,0,0,0.07,0,0.07 +Karaoke Revolution Party,XB,2005,Misc,Konami Digital Entertainment,0.05,0.01,0,0,0.07 +Cold Stone Creamery: Scoop It Up,Wii,2009,Misc,Zoo Games,0.06,0,0,0,0.07 +Yoake Yori Ruriiro na: Brighter than Dawning Blue,PS2,2006,Adventure,Aria,0,0,0.07,0,0.07 +Pandemonium 2,PS,1997,Platform,BMG Interactive Entertainment,0.04,0.02,0,0,0.07 +MotorStorm RC,PSV,2012,Racing,Sony Computer Entertainment,0,0.05,0,0.02,0.07 +National Geographic Challenge!,X360,,Misc,Unknown,0.06,0,0,0,0.07 +Fallout: Brotherhood of Steel,PS2,2004,Role-Playing,Avalon Interactive,0.03,0.03,0,0.01,0.07 +Touch 'N' Play Collection,DS,2010,Misc,O-Games,0.04,0.02,0,0.01,0.07 +Mayhem 3D,X360,2011,Racing,Evolved Games,0.06,0,0,0,0.07 +One Piece: Unlimited World Red,WiiU,2014,Action,Namco Bandai Games,0,0.04,0.02,0,0.07 +Parlor! Mini 2,SNES,1996,Misc,Nippon Telenet,0,0,0.07,0,0.07 +Gundam Try Age SP,3DS,2014,Strategy,Namco Bandai Games,0,0,0.07,0,0.07 +Top Gun,PS3,2011,Simulation,505 Games,0.06,0,0,0.01,0.07 +Gunstar Super Heroes,GBA,2005,Shooter,Sega,0.05,0.02,0,0,0.07 +Insecticide,DS,2008,Action,Gamecock,0.06,0,0,0,0.07 +C: The Contra Adventure,PS,1998,Shooter,Konami Digital Entertainment,0.04,0.02,0,0,0.07 +Interactive Storybook DS Series 1,DS,2007,Misc,Tommo,0.06,0,0,0,0.07 +Frogger Advance: The Great Quest,GBA,2002,Action,Konami Digital Entertainment,0.05,0.02,0,0,0.07 +Worms Forts: Under Siege,XB,2004,Strategy,Sega,0.05,0.01,0,0,0.07 +Dream C Club,X360,2009,Simulation,D3Publisher,0,0,0.07,0,0.07 +Pro Evolution Soccer 2015,PC,2014,Sports,Konami Digital Entertainment,0,0.06,0,0.01,0.07 +Disney Infinity,PSV,2013,Action,Disney Interactive Studios,0.05,0,0,0.02,0.07 +Pocky & Rocky with Becky,GBA,2001,Shooter,Altron,0.05,0.02,0,0,0.07 +Full Spectrum Warrior: Ten Hammers,PS2,2006,Strategy,THQ,0.03,0.02,0,0.01,0.07 +Streets of Rage 3,GEN,1993,Action,Sega,0,0,0.07,0,0.07 +Chocolatier,DS,2010,Misc,Zoo Games,0.06,0,0,0,0.07 +Cosmos Chaos!,DS,2010,Misc,Mentor Interactive,0.06,0,0,0,0.07 +Lego Star Wars: The Force Awakens,3DS,2016,Action,Warner Bros. Interactive Entertainment,0.02,0.04,0,0,0.07 +12-Sai. Honto no Kimochi,3DS,2014,Adventure,Happinet,0,0,0.07,0,0.07 +"Warhammer 40,000: Squad Command",DS,2007,Strategy,THQ,0.05,0.01,0,0.01,0.07 +Hasbro Family Game Night Fun Pack,X360,2011,Misc,Electronic Arts,0.06,0,0,0,0.07 +Port Royale 3,X360,,Simulation,Kalypso Media,0.06,0,0,0,0.07 +Pro Yaky? Spirits 4,PS3,2007,Sports,Konami Digital Entertainment,0,0,0.07,0,0.07 +Speed Racer,PS,1996,Racing,Tomy Corporation,0.04,0.02,0,0,0.07 +NHL Hitz Pro,XB,2003,Sports,Midway Games,0.05,0.01,0,0,0.07 +Walt Disney Pictures Presents Enchanted,DS,2007,Platform,Disney Interactive Studios,0.04,0.01,0,0.01,0.07 +Cardfight!! Vanguard: Lock On Victory!!,3DS,2014,Misc,FuRyu,0,0,0.07,0,0.07 +Jewel Quest IV: Heritage,DS,2011,Puzzle,iWin,0,0.05,0,0.01,0.06 +Atelier Meruru: Alchemist of Arland 3,PSV,2013,Role-Playing,Gust,0,0,0.06,0,0.06 +Hot Wheels: Burnin' Rubber,GBA,2001,Racing,THQ,0.05,0.02,0,0,0.06 +Ojyousama Express,PS,1998,Strategy,Media Works,0,0,0.06,0,0.06 +Jewel Link Chronicles: Mountains of Madness,DS,,Puzzle,Avanquest,0,0.06,0,0.01,0.06 +Chrysler Classic Racing,Wii,2008,Racing,Zoo Games,0.06,0,0,0,0.06 +Wings of War,XB,2004,Simulation,Take-Two Interactive,0.05,0.01,0,0,0.06 +Jam Sessions 2,DS,2009,Misc,Ubisoft,0.06,0,0,0,0.06 +Orcs & Elves,DS,2007,Role-Playing,Electronic Arts,0.06,0,0,0.01,0.06 +187: Ride or Die,XB,2005,Racing,Ubisoft,0.05,0.01,0,0,0.06 +RPG Maker 3,PS2,2004,Role-Playing,Enterbrain,0.03,0.02,0,0.01,0.06 +Zatch Bell! Mamodo Battles,GC,2005,Fighting,Namco Bandai Games,0.05,0.01,0,0,0.06 +Motion Explosion!,X360,2011,Misc,505 Games,0.05,0.01,0,0,0.06 +Genkai Tokki Monster Monpiece,PSV,2013,Strategy,Idea Factory,0,0,0.06,0,0.06 +Desert Strike Advance,GBA,2002,Simulation,Electronic Arts,0.05,0.02,0,0,0.06 +Kabuki Warriors,XB,2001,Action,Genki,0.05,0.01,0,0,0.06 +Gradius Collection,PSP,2006,Shooter,Konami Digital Entertainment,0.04,0,0.02,0,0.06 +Disney's Chicken Little: Ace In Action,DS,2006,Shooter,Disney Interactive Studios,0.06,0,0,0,0.06 +IL-2 Sturmovik: Birds of Prey,DS,2009,Simulation,505 Games,0.06,0,0,0,0.06 +Discworld,PS,1994,Adventure,Psygnosis,0.04,0.02,0,0,0.06 +The LEGO Movie Videogame,PC,2014,Action,Warner Bros. Interactive Entertainment,0.02,0.04,0,0.01,0.06 +Escape from Bug Island,Wii,2006,Action,Eidos Interactive,0.04,0.01,0.01,0,0.06 +World Poker Tour,XB,2005,Misc,Take-Two Interactive,0.05,0.01,0,0,0.06 +Pirates: The Legend of Black Kat,XB,2002,Adventure,Electronic Arts,0.05,0.01,0,0,0.06 +Elite Forces: Unit 77,DS,2009,Strategy,Deep Silver,0.06,0,0,0,0.06 +July,DC,1998,Adventure,Fortyfive,0,0,0.06,0,0.06 +ESPN Winter X-Games: Snowboarding 2002,GBA,2000,Sports,Konami Digital Entertainment,0.05,0.02,0,0,0.06 +Bleach: Versus Crusade,Wii,2008,Fighting,Sega,0,0,0.06,0,0.06 +Kanon,DC,2000,Adventure,NEC Interchannel,0,0,0.06,0,0.06 +NanoBreaker,PS2,2005,Action,Konami Digital Entertainment,0.03,0.02,0,0.01,0.06 +Bionicle,XB,2003,Action,Electronic Arts,0.05,0.01,0,0,0.06 +My Pet Shop,DS,2008,Simulation,Square Enix,0.06,0,0,0,0.06 +Guitar Freaks 3rdMIX & DrumMania 2ndMIX,PS2,2000,Simulation,Konami Digital Entertainment,0,0,0.06,0,0.06 +Miami Vice: The Game,PSP,2006,Shooter,Activision,0.06,0,0,0,0.06 +Santa Claus Is Comin' to Town!,Wii,2011,Puzzle,Crave Entertainment,0.06,0,0,0,0.06 +BMX XXX,GC,2002,Sports,Acclaim Entertainment,0.05,0.01,0,0,0.06 +Broken Sword 5: The Serpent's Curse,PS4,2015,Adventure,Revolution Software,0,0.06,0,0.01,0.06 +Disney's Magical Quest 2 Starring Mickey and Minnie,GBA,2003,Action,Capcom,0.05,0.02,0,0,0.06 +Aggressive Inline,XB,2002,Sports,Acclaim Entertainment,0.05,0.01,0,0,0.06 +Western Riding Academy,DS,2010,Simulation,Destineer,0.06,0,0,0,0.06 +My Pet Chimp,DS,2010,Simulation,505 Games,0.06,0,0,0,0.06 +Frogger: Helmet Chaos,DS,2005,Platform,Konami Digital Entertainment,0.06,0,0,0,0.06 +Ikki Tousen: Xross Impact,PSP,2010,Action,Marvelous Interactive,0,0,0.06,0,0.06 +Bullet Girls,PSV,2014,Action,D3Publisher,0,0,0.06,0,0.06 +Paws & Claws: Marine Rescue,DS,2011,Simulation,THQ,0.06,0,0,0,0.06 +Super Mahjong 2: Honkaku 4Jin Uchi,SNES,1993,Misc,Imax,0,0,0.06,0,0.06 +XGRA: Extreme G Racing Association,PS2,2003,Racing,Acclaim Entertainment,0.03,0.02,0,0.01,0.06 +Cabela's Trophy Bucks,Wii,2008,Sports,Activision Value,0.06,0,0,0,0.06 +Mitsukete! Keroro Gunsou: Machigai Sagashi Daisakusen de Arimasu!,DS,2007,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Pop'n Music Portable 2,PSP,2011,Misc,Konami Digital Entertainment,0,0,0.06,0,0.06 +Fist of the North Star: Ken's Rage 2,X360,2012,Fighting,Tecmo Koei,0.03,0.01,0.02,0,0.06 +Smart Boy's Toys Club,DS,2008,Misc,505 Games,0.06,0,0,0,0.06 +Ys vs. Sora no Kiseki: Alternative Saga,PSP,2010,Fighting,Falcom Corporation,0,0,0.06,0,0.06 +Naruto: Ultimate Ninja Heroes (JP sales),PSP,2006,Fighting,Namco Bandai Games,0,0,0.06,0,0.06 +Max & the Magic Marker,DS,2011,Platform,Unknown,0,0.06,0,0,0.06 +Legend of the Dragon,Wii,2007,Fighting,Game Factory,0.06,0,0,0,0.06 +Akagawa Jirou Mystery: Yasoukyoku - Hon ni Manekareta Satsujin,DS,2008,Adventure,Marvelous Interactive,0,0,0.06,0,0.06 +Ray Tracers,PS,1997,Racing,Sony Computer Entertainment,0.04,0.02,0,0,0.06 +Monster Madness: Grave Danger,PS3,2008,Shooter,SouthPeak Games,0.05,0.01,0,0.01,0.06 +Sprung - A Game Where Everyone Scores,DS,2004,Adventure,Ubisoft,0.06,0,0,0,0.06 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 14: CR Shinseiki Evangelion: Saigo no Mono,PS2,2009,Misc,D3Publisher,0,0,0.06,0,0.06 +Nicola Kanshuu: Model * Oshare Audition,DS,2010,Misc,Alchemist,0,0,0.06,0,0.06 +Rugby 15,PSV,2015,Sports,Bigben Interactive,0,0.05,0,0.01,0.06 +Kururin Paradise,GBA,2002,Puzzle,Unknown,0,0,0.06,0,0.06 +Kiniro no Corda 2,PS2,2007,Role-Playing,Tecmo Koei,0,0,0.06,0,0.06 +Fast Food Panic,Wii,2009,Simulation,Nobilis,0.06,0,0,0,0.06 +Samurai Warriors Chronicles 3,PSV,2014,Action,Tecmo Koei,0,0,0.06,0,0.06 +Dynasty Warriors Vs,3DS,2012,Action,Ackkstudios,0,0,0.06,0,0.06 +Another Code R: A Journey into Lost Memories,Wii,2009,Adventure,Nintendo,0,0.03,0.03,0,0.06 +Gallop Racer 2004,PS2,2004,Sports,Zoo Digital Publishing,0.03,0.02,0,0.01,0.06 +Rayman: Hoodlum's Revenge,GBA,2005,Platform,Ubisoft,0.05,0.02,0,0,0.06 +Sunrise Eiyuutan R,PS2,2000,Role-Playing,Sunrise Interactive,0,0,0.06,0,0.06 +Mobile Suit Gundam Seed: Never Ending Tomorrow,PS2,2004,Shooter,Namco Bandai Games,0.03,0.02,0,0.01,0.06 +The Book of Unwritten Tales: The Critter Chronicles,PC,2011,Action,Crimson Cow,0,0.05,0,0.01,0.06 +Octomania,Wii,2007,Puzzle,Midas Interactive Entertainment,0.06,0,0,0,0.06 +F1 2001,XB,2001,Racing,Electronic Arts,0.05,0.01,0,0,0.06 +Fishing Master (jp sales),Wii,2007,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +Zill O'll Infinite Plus,PSP,2009,Role-Playing,Tecmo Koei,0,0,0.06,0,0.06 +Pawly Pets: My Vet Practice,DS,2007,Strategy,Ubisoft,0,0.06,0,0.01,0.06 +Tonka Rescue Patrol,GC,2003,Action,TDK Mediactive,0.05,0.01,0,0,0.06 +GunGriffon II,SAT,1998,Simulation,ESP,0,0,0.06,0,0.06 +Crimson Gem Saga,PSP,2008,Role-Playing,Sega,0.06,0,0,0,0.06 +Legend of Kay,PS4,2015,Action,Nordic Games,0.02,0.03,0,0.01,0.06 +Order Up!!,PS3,2011,Action,Funbox Media,0.04,0.01,0,0.01,0.06 +Steambot Chronicles: Battle Tournament,PSP,2008,Fighting,Irem Software Engineering,0.05,0,0.01,0,0.06 +Bomberman Land,PSP,2007,Misc,Hudson Entertainment,0.06,0,0,0.01,0.06 +Spy Fox in Dry Cereal,Wii,2008,Adventure,Majesco Entertainment,0.06,0,0,0,0.06 +Cel Damage,GC,2002,Racing,Electronic Arts,0.05,0.01,0,0,0.06 +Lego Batman 3: Beyond Gotham,PC,2014,Action,Warner Bros. Interactive Entertainment,0,0.06,0,0.01,0.06 +Killer Instinct (2013),XOne,2013,Fighting,Microsoft Game Studios,0.03,0.03,0,0.01,0.06 +Famicom Mini: Balloon Fight,GBA,2004,Action,Nintendo,0,0,0.06,0,0.06 +"Steins,Gate: Senkei Kousoku no Phonogram",PS3,2013,Adventure,5pb,0,0,0.06,0,0.06 +Seaman 2: Peking Genjin Ikusei Kit,PS2,2007,Simulation,Sega,0,0,0.06,0,0.06 +Chou Gekijouban Keroro Gunsou 3: Tenkuu Daibouken de Arimasu!,DS,2008,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Bionicle Heroes,DS,2006,Shooter,Eidos Interactive,0.06,0,0,0,0.06 +Ratchet & Clank Collection,PSV,2014,Action,Sony Computer Entertainment,0,0.05,0,0.01,0.06 +The Pinball of the Dead,GBA,2002,Misc,Sega,0.05,0.02,0,0,0.06 +Growlanser IV: Over Reloaded,PSP,2011,Role-Playing,Atlus,0,0,0.06,0,0.06 +Arc the Lad: End of Darkness,PS2,2004,Role-Playing,Sony Computer Entertainment,0.03,0.02,0,0.01,0.06 +Tom Clancy's Splinter Cell: Pandora Tomorrow,GBA,2004,Action,Ubisoft,0.05,0.02,0,0,0.06 +The King of Route 66,PS2,2003,Racing,Sega,0.03,0.02,0,0.01,0.06 +Sherlock Holmes: Crimes & Punishments,X360,2014,Adventure,Focus Home Interactive,0.03,0.03,0,0.01,0.06 +Bubble Bobble also featuring Rainbow Islands,PS,1995,Puzzle,Acclaim Entertainment,0.04,0.02,0,0,0.06 +Intellivision Lives!,GC,2004,Misc,Crave Entertainment,0.05,0.01,0,0,0.06 +Star Wars Knights of the Old Republic II: The Sith Lords,PC,2005,Role-Playing,LucasArts,0.01,0.04,0,0.01,0.06 +Panzer Tactics,DS,2007,Strategy,10TACLE Studios,0.06,0,0,0,0.06 +Pro Yaky? Spirits 2013,PSV,2013,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +Robotica,SAT,1994,Shooter,Sega,0,0,0.06,0,0.06 +Deathrow: Underground Team Combat,XB,2002,Sports,Ubisoft,0.05,0.01,0,0,0.06 +Land of the Dead: Road to Fiddler's Green,XB,2005,Shooter,Groove Games,0.05,0.01,0,0,0.06 +R-Types,PS,1998,Shooter,Virgin Interactive,0.04,0.02,0,0,0.06 +Star Fighter,PS,1995,Shooter,Telstar,0.04,0.02,0,0,0.06 +Kuukan * Zukei: Hirameki Training - KuuTore,DS,2008,Misc,Benesse,0,0,0.06,0,0.06 +Osu! Tatakae! Ouendan,DS,2005,Misc,Nintendo,0,0,0.06,0,0.06 +Dissidia: Final Fantasy Universal Tuning,PSP,2009,Fighting,Square Enix,0,0,0.06,0,0.06 +Game Center CX: 3-Choume no Arino,3DS,2014,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Age of Empires Online,PC,2011,Strategy,Microsoft Game Studios,0.01,0.04,0,0.01,0.06 +Alien Syndrome,Wii,2007,Role-Playing,Sega,0.06,0,0,0,0.06 +Meitantei Conan: Aoki Houseki no Rinbukyoku,DS,2011,Adventure,Namco Bandai Games,0,0,0.06,0,0.06 +The Legend of Heroes: Trails in the Sky Second Chapter,PSP,2007,Role-Playing,Falcom Corporation,0,0,0.06,0,0.06 +Challenge Me: Brain Puzzles,DS,2009,Puzzle,Oxygen Interactive,0.06,0,0,0,0.06 +Legend of Kay,DS,2010,Action,JoWood Productions,0.06,0,0,0,0.06 +Mystic Heroes,PS2,2002,Action,Tecmo Koei,0.03,0.02,0,0.01,0.06 +From The Abyss,DS,2008,Role-Playing,Nobilis,0.06,0,0,0,0.06 +The Amazing Spider-Man 2 (2014),3DS,2014,Action,Activision,0.03,0.03,0,0,0.06 +Tron 2.0: Killer App,GBA,2004,Action,Disney Interactive Studios,0.04,0.02,0,0,0.06 +Samurai Shodown Anthology,Wii,2008,Fighting,Ignition Entertainment,0.06,0,0,0,0.06 +Mega Minis Volume 3,PSP,2011,Misc,Sony Computer Entertainment,0,0.05,0,0.02,0.06 +Jurassic Park III: Park Builder,GBA,2001,Simulation,Konami Digital Entertainment,0.04,0.02,0,0,0.06 +Mario vs. Donkey Kong: Tipping Stars,3DS,2015,Puzzle,Nintendo,0,0,0.06,0,0.06 +Unchained Blades,PSP,2011,Role-Playing,FuRyu,0,0,0.06,0,0.06 +Rurouni Kenshin: Meiji Kenkaku Romantan Saisen,PSP,2011,Fighting,Namco Bandai Games,0,0,0.06,0,0.06 +Di-Gata Defenders,DS,2008,Role-Playing,Game Factory,0.06,0,0,0,0.06 +Star Trek: Tactical Assault,DS,2006,Strategy,Ubisoft,0.05,0.01,0,0,0.06 +Code Geass: Hangyaku no Lelouch - Lost Colors,PS2,2008,Adventure,Namco Bandai Games,0,0,0.06,0,0.06 +Warhammer: Battle For Atluma,PSP,2006,Action,Namco Bandai Games,0.05,0,0,0.01,0.06 +Sudoku Ball Detective,DS,2009,Puzzle,Playlogic Game Factory,0.06,0,0,0,0.06 +LEGO Bionicle,GBA,2001,Platform,LEGO Media,0.04,0.02,0,0,0.06 +Power Shovel,PS,2000,Action,JVC,0.03,0.02,0,0,0.06 +Blur,PC,2010,Racing,Activision,0.01,0.04,0,0.01,0.06 +Generator Rex: Agent of Providence,X360,2011,Action,Activision,0.05,0.01,0,0,0.06 +A llI S.V.: A Ressha de Gyoukou 3 Super Version,SNES,1995,Simulation,Pack-In-Video,0,0,0.06,0,0.06 +Spy Games: Elevator Mission,Wii,2007,Shooter,Tommo,0.06,0,0,0,0.06 +Strike Force Bowling,GC,2005,Sports,Crave Entertainment,0.05,0.01,0,0,0.06 +Song of the Deep,PS4,2016,Action,Insomniac Games,0.05,0,0,0.01,0.06 +Earth Defense Force 2017 Portable,PSV,2012,Action,D3Publisher,0,0,0.06,0,0.06 +Atelier Iris 2: The Azoth Of Destiny,PS2,2005,Role-Playing,Tecmo Koei,0.03,0.02,0,0.01,0.06 +There,PS,2002,Simulation,Infogrames,0.03,0.02,0,0,0.06 +Atari's Greatest Hits: Volume 2,DS,2011,Misc,Atari,0.06,0,0,0,0.06 +Chuck E. Cheese's Playhouse,DS,2010,Misc,UFO Interactive,0.06,0,0,0,0.06 +Tokimeki no Houkago,PS,1998,Misc,Konami Digital Entertainment,0,0,0.06,0,0.06 +Championship Surfer,PS,2000,Sports,Mattel Interactive,0.03,0.02,0,0,0.06 +Unreal Tournament III,PC,2007,Shooter,Midway Games,0,0.05,0,0.01,0.06 +Monster Garage,XB,2004,Strategy,Activision Value,0.05,0.01,0,0,0.06 +Taiko no Tatsujin: Atsumete Tomodachi Daisakusen!,WiiU,2015,Misc,Namco Bandai Games,0,0,0.06,0,0.06 +The Next BIG Thing,PC,2011,Adventure,Focus Home Interactive,0,0.05,0,0.01,0.06 +Tecmo Classic Arcade,XB,2005,Misc,Microsoft Game Studios,0.05,0.01,0,0,0.06 +2 Games in 1: Sonic Pinball Party & Columns Crown,GBA,2005,Misc,Sega,0.04,0.02,0,0,0.06 +Valentino Rossi: The Game,PS4,2016,Racing,Namco Bandai Games,0.01,0.05,0,0.01,0.06 +Monkey Island: Special Edition Collection,X360,2011,Adventure,Activision,0,0.05,0,0.01,0.06 +Mad Maestro!,PS2,2001,Misc,Eidos Interactive,0.03,0.02,0,0.01,0.06 +A-Train: City Simulator,3DS,2014,Simulation,ArtDink,0,0,0.06,0,0.06 +Densha De Go! 3 Tsuukinhen,PS2,2001,Simulation,Taito,0,0,0.06,0,0.06 +Biker Mice From Mars,PS2,2006,Racing,Game Factory,0.03,0.02,0,0.01,0.06 +Call of Duty 2,PC,2005,Shooter,Activision,0,0.05,0,0.01,0.06 +Paws & Claws: Pampered Pets 2,DS,2011,Simulation,THQ,0.06,0,0,0,0.06 +Daito Giken Koushiki Pachi-Slot Simulator: Ossu! Banchou Portable,PSP,2006,Misc,Daito,0,0,0.06,0,0.06 +SpongeBob SquarePants: Plankton's Robotic Revenge,3DS,2013,Shooter,Activision,0,0.06,0,0,0.06 +Pro Evolution Soccer 2017,PS3,2016,Sports,Konami Digital Entertainment,0,0.01,0.04,0,0.06 +Giants: Citizen Kabuto,PS2,2001,Shooter,Interplay,0.03,0.02,0,0.01,0.06 +"Steins,Gate",X360,2009,Adventure,5pb,0,0,0.06,0,0.06 +A New Beginning,PC,2010,Adventure,Deep Silver,0,0.05,0,0.01,0.06 +MotoGP 10/11,X360,2011,Racing,Capcom,0,0.05,0,0.01,0.06 +Alone in the Dark,PS2,2008,Adventure,Atari,0.03,0.02,0,0.01,0.06 +Guilty Gear XX Accent Core Plus,PS2,2008,Fighting,PQube,0.03,0.02,0,0.01,0.06 +Muppets Party Cruise,PS2,2003,Misc,TDK Mediactive,0.03,0.02,0,0.01,0.06 +Higurashi Daybreak Portable,PSP,2008,Adventure,Alchemist,0,0,0.06,0,0.06 +Crayon Shin-chan: Arashi o Yobu Kasukabe Eiga Stars!,3DS,2014,Adventure,Namco Bandai Games,0,0,0.06,0,0.06 +Shonen Jump's One Piece: Grand Battle,GC,2005,Fighting,Namco Bandai Games,0.05,0.01,0,0,0.06 +Barbie Horse Adventures: Wild Horse Rescue,XB,2003,Sports,Vivendi Games,0.05,0.01,0,0,0.06 +Winx Club: Quest for the Codex,DS,2006,Action,Konami Digital Entertainment,0.03,0.02,0,0.01,0.06 +Blast Lacrosse,PS,2001,Sports,Acclaim Entertainment,0.03,0.02,0,0,0.06 +Devil's Third,WiiU,2015,Action,Nintendo,0.04,0.02,0,0.01,0.06 +DreamWorks Super Star Kartz,X360,2011,Racing,Activision,0.05,0.01,0,0,0.06 +Arkanoid DS,DS,2007,Puzzle,Square Enix,0.06,0,0,0,0.06 +Kikou Heidan J-Phoenix,PS2,2001,Action,Takara,0,0,0.06,0,0.06 +Backyard NFL Football '10,PS2,2009,Sports,Atari,0.03,0.02,0,0.01,0.06 +Barbie and Her Sisters Puppy Rescue,Wii,2015,Action,Namco Bandai Games,0,0.06,0,0,0.06 +Zero Escape: Zero Time Dilemma,3DS,2016,Adventure,Aksys Games,0.04,0,0.01,0.01,0.06 +Shonen Jump's Shaman King: Legacy of the Spirits - Soaring Hawk/Sprinting Wolf,GBA,2005,Action,Konami Digital Entertainment,0.04,0.02,0,0,0.06 +Bubble Bobble: Old & New,GBA,2002,Puzzle,Empire Interactive,0.04,0.02,0,0,0.06 +Puzzler Collection,Wii,2008,Puzzle,Ubisoft,0.05,0.01,0,0,0.06 +Naruto Shippuden: Gekito Ninja Taisen! Special,Wii,2010,Fighting,Takara Tomy,0,0,0.06,0,0.06 +Jissen Pachislot Secrets! Fist of the North Star F - Seikimatsu Kyuuseishu Densetsu,PS3,2012,Action,Sega,0,0,0.06,0,0.06 +Akai Katana Shin,X360,2011,Shooter,Cave,0.04,0,0.01,0,0.06 +Kekkon: Marriage,SAT,1995,Adventure,Shogakukan,0,0,0.06,0,0.06 +Terraria,PS4,2014,Action,505 Games,0,0.05,0.01,0.01,0.06 +Nicola Kanshuu: Model * Oshare Audition 2,3DS,2011,Action,Alchemist,0,0,0.06,0,0.06 +KimiKiss,PS2,2006,Adventure,Enterbrain,0,0,0.06,0,0.06 +Cold Fear,XB,2005,Action,Ubisoft,0.05,0.01,0,0,0.06 +World Cup of Pool,DS,2009,Sports,Midas Interactive Entertainment,0.06,0,0,0,0.06 +Chevrolet Camaro: Wild Ride,Wii,2010,Racing,Storm City Games,0.06,0,0,0,0.06 +Imagine: Cheerleader,DS,2009,Simulation,Ubisoft,0.06,0,0,0,0.06 +Risen 3: Titan Lords,PS4,2015,Role-Playing,Deep Silver,0,0.05,0,0.01,0.06 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Portable Vol. 1: Shinseiki Evangelion - Tamashii no Kiseki,PSP,2010,Misc,D3Publisher,0,0,0.06,0,0.06 +Busy Scissors,DS,2010,Simulation,Little Orbit,0.06,0,0,0,0.06 +Zero Escape: Zero Time Dilemma,PSV,2016,Adventure,Aksys Games,0.03,0,0.02,0.01,0.06 +Shining Force Feather,DS,2009,Strategy,Sega,0,0,0.06,0,0.06 +S.T.A.L.K.E.R.: Call of Pripyat,PC,2009,Shooter,Namco Bandai Games,0,0.05,0,0.01,0.06 +Champion Jockey: G1 Jockey & Gallop Racer,X360,2011,Sports,Tecmo Koei,0,0.05,0,0.01,0.06 +Disney's Kim Possible: Global Gemini,DS,2007,Platform,Disney Interactive Studios,0.05,0.01,0,0,0.06 +Big Bang Mini,DS,2009,Shooter,SouthPeak Games,0.05,0,0,0,0.06 +Cocoto Kart Racer,Wii,2008,Racing,Conspiracy Entertainment,0.06,0,0,0,0.06 +Mobile Suit Gundam 00: Gundam Meisters,PS2,2008,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Call of Cthulhu: Dark Corners of the Earth,XB,2005,Adventure,Take-Two Interactive,0.05,0.01,0,0,0.06 +The Great Escape,XB,2003,Action,SCi,0.05,0.01,0,0,0.06 +Coded Arms: Contagion,PSP,2007,Shooter,Konami Digital Entertainment,0.05,0,0,0.01,0.06 +X-Men: Destiny,DS,2011,Action,Activision,0.05,0.01,0,0,0.06 +Metal Gear Solid: Social Ops,PS2,2002,Action,Konami Digital Entertainment,0.03,0.02,0,0.01,0.06 +Minna no DS Seminar: Kanpeki Eitango Ryoku,DS,2006,Misc,TDK Core,0,0,0.06,0,0.06 +Kurupoto Cool Cool Stars,DS,2007,Action,Starfish,0.06,0,0,0,0.06 +The Witcher,PC,2007,Role-Playing,Atari,0,0.05,0,0.01,0.06 +PenPen TriIceLon,DC,1998,Racing,Infogrames,0,0,0.06,0,0.06 +Kirarin * Revolution: Minna de Odorou Furi Furi Debut!,DS,2008,Simulation,Konami Digital Entertainment,0,0,0.06,0,0.06 +Grey's Anatomy: The Video Game,Wii,2009,Adventure,Ubisoft,0.05,0.01,0,0,0.06 +Salt Lake 2002,GBA,2002,Sports,Ubisoft,0.04,0.02,0,0,0.06 +Dreamer Series: Zoo Keeper,DS,2010,Simulation,DreamCatcher Interactive,0.06,0,0,0,0.06 +Warriors of the Lost Empire,PSP,2007,Role-Playing,Mercury Games,0.05,0,0,0.01,0.06 +Vexx,GC,2003,Platform,Acclaim Entertainment,0.05,0.01,0,0,0.06 +Crazy Chicken Tales,Wii,2009,Action,Conspiracy Entertainment,0.06,0,0,0,0.06 +Super Robot Wars OG Saga Masou Kishin F: Coffin of the End,PS3,2014,Strategy,Namco Bandai Games,0,0,0.06,0,0.06 +Hagane no Renkinjutsushi - Fullmetal Alchemist: Yakusoku no Hi e,PSP,2010,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Batman: Rise of Sin Tzu,GC,2003,Action,Ubisoft,0.05,0.01,0,0,0.06 +Sacred 2: Fallen Angel,PC,2008,Role-Playing,Ascaron Entertainment GmbH,0,0.05,0,0.01,0.06 +Winter Sports 2: The Next Challenge,DS,2008,Sports,RTL,0.04,0.02,0,0.01,0.06 +Dead Rising 2: Off the Record,PC,2011,Action,Capcom,0.04,0.02,0,0.01,0.06 +World Series of Poker 2008: Battle for the Bracelets,DS,2007,Misc,Activision,0.05,0,0,0,0.06 +Playmobil Knights,DS,2009,Action,Mindscape,0.04,0.01,0,0,0.06 +Disney Sports Skateboarding,GC,2002,Sports,Konami Digital Entertainment,0.05,0.01,0,0,0.06 +DropCast,DS,2008,Puzzle,THQ,0.06,0,0,0,0.06 +Nazotoki Battle Tore! Densetsu no Makyuu o Fukkatsu Saseyo!,3DS,2014,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Inversion,X360,2012,Shooter,Namco Bandai Games,0.03,0.02,0,0.01,0.06 +Summon Night 2,DS,2008,Role-Playing,Namco Bandai Games,0,0,0.06,0,0.06 +Chou Soujuu Mecha MG,DS,,Simulation,,0,0,0.06,0,0.06 +Odin Sphere: Leifthrasir,PS3,2016,Role-Playing,Nippon Ichi Software,0.01,0.02,0.03,0.01,0.06 +Pro Evolution Soccer 2012,PS2,2011,Action,Konami Digital Entertainment,0,0,0.06,0,0.06 +Terminator 3: The Redemption,XB,2004,Shooter,Atari,0.05,0.01,0,0,0.06 +Alvin and the Chipmunks,Wii,2007,Misc,Eidos Interactive,0.05,0,0,0,0.06 +EverQuest II: Destiny of Velious,PC,2011,Role-Playing,Sony Online Entertainment,0.06,0,0,0,0.06 +Rurouni Kenshin: Meiji Kenyaku Romantan - Kansen,PSP,2012,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Neon Genesis Evangelion,N64,1999,Adventure,Namco Bandai Games,0,0,0.06,0,0.06 +Serious Sam II,XB,2005,Shooter,Take-Two Interactive,0.05,0.01,0,0,0.06 +Remember Me,PC,2013,Action,Capcom,0,0.05,0,0.01,0.06 +ICO,PS3,2011,Action,Sony Computer Entertainment,0,0,0.06,0,0.06 +Flipnic: Ultimate Pinball,PS2,2003,Misc,Ubisoft,0.03,0.02,0,0.01,0.06 +Eigo de Tabisuru: Little Charo,DS,2011,Misc,Nintendo,0,0,0.06,0,0.06 +NBA Hangtime,PS,1996,Sports,Midway Games,0.03,0.02,0,0,0.06 +Cabela's Big Game Hunter (2008),X360,2007,Sports,Activision Value,0.06,0,0,0,0.06 +My Fitness Coach: Club,Wii,2011,Sports,Ubisoft,0,0.05,0,0.01,0.06 +D.C. II P.S.: Da Capo II Plus Situation,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.06,0,0.06 +Top Gear Hyper-Bike,N64,1999,Racing,Kemco,0.05,0.01,0,0,0.06 +Brunswick Circuit Pro Bowling,N64,1999,Sports,THQ,0.05,0.01,0,0,0.06 +Olympic Hockey 98,N64,1998,Sports,GT Interactive,0.05,0.01,0,0,0.06 +CyberTiger,N64,2000,Sports,Electronic Arts,0.05,0.01,0,0,0.06 +Penny Racers,N64,1998,Racing,THQ,0.05,0.01,0,0,0.06 +S.C.A.R.S,N64,1998,Racing,Ubisoft,0.05,0.01,0,0,0.06 +Virtual Chess 64,N64,1998,Misc,Titus,0.05,0.01,0,0,0.06 +Marvel Super Heroes,SAT,1997,Fighting,Capcom,0,0,0.06,0,0.06 +Mike Piazza's Strike Zone,N64,1998,Sports,GT Interactive,0.05,0.01,0,0,0.06 +Bust-A-Move '99,N64,1998,Puzzle,Acclaim Entertainment,0.05,0.01,0,0,0.06 +Star Soldier: Vanishing Earth,N64,1998,Shooter,Hudson Entertainment,0.05,0.01,0,0,0.06 +Polaris SnoCross,N64,2000,Racing,Vatical Entertainment,0.05,0.01,0,0,0.06 +Worms Blast,GC,2002,Puzzle,Ubisoft,0.05,0.01,0,0,0.06 +Prinny: Can I Really Be The Hero? (US sales),PSP,,Action,,0.06,0,0,0,0.06 +The Legend of Heroes VII: The Trail of Blue,PSV,2014,Role-Playing,Nihon Falcom Corporation,0,0,0.06,0,0.06 +BlazBlue: Chrono Phantasma Extend,XOne,2015,Action,PQube,0.05,0.01,0,0.01,0.06 +Smile PreCure! Let's Go! Marchen World,3DS,2012,Action,Namco Bandai Games,0,0,0.06,0,0.06 +IHRA Professional Drag Racing 2005,XB,2004,Racing,Bethesda Softworks,0.04,0.01,0,0,0.06 +Tokyo Xtreme Racer Advance,GBA,2005,Racing,Crave Entertainment,0.04,0.02,0,0,0.06 +Destiny: The Collection,PS4,2016,Shooter,Activision,0.01,0.04,0,0.01,0.06 +Gun Showdown,PSP,2006,Action,Activision,0.05,0.01,0,0.01,0.06 +Showtime Championship Boxing,DS,2007,Fighting,Zoo Digital Publishing,0.06,0,0,0,0.06 +Syndicate,PC,1992,Strategy,Electronic Arts,0,0.05,0,0.01,0.06 +Digimon All-Star Rumble,X360,2014,Fighting,Namco Bandai Games,0.04,0.01,0,0.01,0.06 +Foster's Home for Imaginary Friends: Imagination Invaders,DS,2007,Adventure,Midway Games,0.06,0,0,0,0.06 +I Love Beauty: Hollywood Makeover,DS,2009,Misc,City Interactive,0.06,0,0,0,0.06 +Power Pro Success Legends,PSP,2010,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +Combat Elite: WWII Paratroopers,PS2,,Shooter,Unknown,0.03,0.02,0,0.01,0.06 +Rock Blast,DS,2008,Puzzle,UFO Interactive,0.06,0,0,0,0.06 +Pheasants Forever Wingshooter,Wii,2010,Shooter,Unknown,0.03,0.02,0,0,0.06 +Ivy the Kiwi?,Wii,2010,Puzzle,Rising Star Games,0.04,0.02,0,0,0.06 +Killer Loop,PS,1999,Racing,Crave Entertainment,0.03,0.02,0,0,0.06 +Cabela's Dangerous Hunts: Ultimate Challenge,PSP,2006,Sports,Activision Value,0.06,0,0,0,0.06 +Xiaolin Showdown,PSP,2006,Action,Konami Digital Entertainment,0.05,0,0,0,0.06 +Worldwide Soccer,SAT,1994,Sports,Sega,0,0,0.06,0,0.06 +Toriko: Gourmet Battle!,3DS,2013,Role-Playing,Namco Bandai Games,0,0,0.06,0,0.06 +Need for Speed: Shift,PC,2009,Racing,Electronic Arts,0,0.05,0,0.01,0.06 +Zoo Tycoon: Complete Collection,PC,2003,Strategy,Microsoft Game Studios,0.03,0.02,0,0.01,0.06 +Little League World Series Baseball 2008,DS,2008,Sports,Activision,0.06,0,0,0,0.06 +Commandos: Strike Force,PS2,2006,Shooter,Eidos Interactive,0.03,0.02,0,0.01,0.06 +Mobile Suit Gundam: Gundam vs. Zeta Gundam,PS2,2004,Shooter,Namco Bandai Games,0.03,0.02,0,0.01,0.06 +Darksiders II,XOne,2015,Action,Nordic Games,0.03,0.02,0,0.01,0.06 +Rapala Pro Fishing,GBA,2004,Sports,Zoo Digital Publishing,0.04,0.02,0,0,0.06 +Create,PC,2010,Action,Electronic Arts,0.04,0.01,0,0.01,0.06 +Guilty Gear X: Advance Edition,GBA,2002,Fighting,Sammy Corporation,0.04,0.02,0,0,0.06 +Impossible Mission,PSP,2007,Platform,System 3 Arcade Software,0,0.04,0,0.02,0.06 +Zoo Tycoon 2,PC,2004,Strategy,Microsoft Game Studios,0,0.05,0,0.01,0.06 +Fate/Tiger Colosseum Upper,PSP,2008,Fighting,Capcom,0,0,0.06,0,0.06 +Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS3 Deluxe,DS,2009,Misc,Rocket Company,0,0,0.06,0,0.06 +Rooms: The Main Building,Wii,2010,Adventure,Hudson Soft,0.06,0,0,0,0.06 +Theresia...,DS,2008,Adventure,Arc System Works,0.06,0,0,0,0.06 +Pop Cutie! Street Fashion Simulation,DS,2008,Simulation,Tecmo Koei,0.06,0,0,0,0.06 +Top Gun: Hard Lock,X360,2012,Action,505 Games,0.03,0.02,0,0,0.06 +JoJo's Bizarre Adventure: All Star Battle,3DS,2012,Fighting,Take-Two Interactive,0.06,0,0,0,0.06 +Carol Vorderman's Sudoku,PSP,2006,Puzzle,Xplosiv,0.05,0,0,0.01,0.06 +Ford Racing 3,GBA,2005,Racing,Zoo Digital Publishing,0.04,0.02,0,0,0.06 +Genkai Tokki: Moero Crystal,PSV,2015,Role-Playing,Compile Heart,0,0,0.06,0,0.06 +PachiPara 13: Super Umi no Pachi-Pro Fuuunroku,PS2,2006,Misc,Irem Software Engineering,0,0,0.06,0,0.06 +Disney Planes Fire & Rescue,Wii,2014,Action,Disney Interactive Studios,0,0.05,0,0,0.06 +Attack on Titan (KOEI),PS3,2016,Action,Tecmo Koei,0,0,0.06,0,0.06 +Satisfashion,DS,2010,Misc,Destineer,0.06,0,0,0,0.06 +World Soccer Winning Eleven 9 (US sales),PSP,2005,Sports,Konami Digital Entertainment,0.05,0,0,0,0.06 +Winning Post 4 Maximum,PS2,2000,Sports,Tecmo Koei,0,0,0.06,0,0.06 +Oddworld: Munch's Oddysee,GBA,2003,Platform,THQ,0.04,0.02,0,0,0.06 +Match 3 Madness,DS,2010,Puzzle,Foreign Media Games,0,0.05,0,0.01,0.06 +Exhibition Volume 5,XB,2004,Misc,Microsoft Game Studios,0.04,0.01,0,0,0.06 +Record of Lodoss War: Eiyuu Sensou,SCD,1994,Role-Playing,Sega,0,0,0.06,0,0.06 +DuckTales: Remastered,WiiU,2013,Action,Capcom,0.05,0,0,0,0.06 +LEGO Batman: The Videogame,PC,2008,Action,Warner Bros. Interactive Entertainment,0.02,0.03,0,0.01,0.06 +Atelier Sophie: The Alchemist of the Mysterious Book,PSV,2015,Role-Playing,Tecmo Koei,0,0,0.06,0,0.06 +Starry ? Sky: In Summer,PSP,2010,Misc,Asgard,0,0,0.06,0,0.06 +Imagine: Resort Owner,DS,2010,Strategy,Ubisoft,0.05,0,0,0,0.06 +Pro Yakyuu Netsu Star 2007,PS2,2007,Sports,Namco Bandai Games,0,0,0.06,0,0.06 +Klonoa Beach Volleyball,PS,2002,Sports,Namco Bandai Games,0.03,0.02,0,0,0.06 +Melty Blood: Actress Again,PS2,2009,Fighting,Ecole,0,0,0.06,0,0.06 +TrackMania Turbo,XOne,2016,Action,Ubisoft,0.02,0.03,0,0,0.06 +Izuna 2: The Unemployed Ninja Returns,DS,2007,Role-Playing,Success,0.05,0,0,0,0.06 +Teenage Mutant Ninja Turtles 3: Mutant Nightmare,DS,2005,Action,Konami Digital Entertainment,0.05,0,0,0,0.06 +Centipede: Infestation,Wii,2011,Shooter,Atari,0.06,0,0,0,0.06 +Mercury Meltdown,PSP,2006,Action,Atari,0.05,0.01,0,0.01,0.06 +SingStar Mallorca Party,PS3,2009,Misc,Sony Computer Entertainment,0,0.04,0,0.02,0.06 +3D Lemmings,PS,1995,Puzzle,Psygnosis,0.03,0.02,0,0,0.06 +Hi Hi Puffy AmiYumi: Kaznapped,GBA,2005,Action,D3Publisher,0.04,0.02,0,0,0.06 +FIFA Soccer 07,DS,2006,Sports,Electronic Arts,0.05,0.01,0,0,0.06 +Resident Evil - Code: Veronica X,GC,2003,Action,Capcom,0.05,0.01,0,0,0.06 +Broken Sword: The Shadow of the Templars,GBA,2002,Adventure,BAM! Entertainment,0.04,0.02,0,0,0.06 +Back to the Future: The Game,Wii,2011,Adventure,Telltale Games,0.05,0,0,0,0.06 +Summon Night 6: Lost Borders,PSV,2016,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Tenchi Muyou! Ryoukouki Gokuraku,SAT,1995,Adventure,Yumedia,0,0,0.06,0,0.06 +Kelly Slater's Pro Surfer,GC,2002,Sports,Activision,0.05,0.01,0,0,0.06 +Jacqueline Wilson's Tracy Beaker: The Game,DS,2009,Misc,P2 Games,0,0.05,0,0,0.06 +Sacred 3,X360,2014,Role-Playing,Deep Silver,0.03,0.03,0,0.01,0.06 +I Am In The Movie,PSP,2012,Simulation,Namco Bandai Games,0,0,0.06,0,0.06 +Doraemon: Nobita no Uchuu Eiyuuki,3DS,2015,Action,FuRyu,0,0,0.06,0,0.06 +Trapt,PS2,2005,Action,Tecmo Koei,0.03,0.02,0,0.01,0.06 +Jewel Legends: Tree of Life,DS,2011,Puzzle,Rising Star Games,0,0.05,0,0.01,0.06 +Splat Renegade Paintball,XB,2005,Sports,Take-Two Interactive,0.04,0.01,0,0,0.06 +Zendoku,DS,2007,Puzzle,Eidos Interactive,0.05,0,0,0,0.06 +Metal Max 4: Gekkou no Diva,3DS,2013,Role-Playing,Kadokawa Shoten,0,0,0.06,0,0.06 +Jumper: Griffin's Story,X360,2008,Action,Eidos Interactive,0.05,0,0,0,0.06 +Worms 3D,XB,2003,Strategy,Sega,0.04,0.01,0,0,0.06 +pro evolution soccer 2011,PC,2010,Sports,Konami Digital Entertainment,0,0.05,0,0.01,0.06 +Crazy Chicken: Pharaoh's Treasure,DS,2007,Puzzle,Phenomedia,0.05,0,0,0,0.06 +Arcana Heart 3,PSV,2014,Fighting,Arc System Works,0.03,0,0.02,0.01,0.06 +Magi: Aratanaru Sekai,3DS,2014,Role-Playing,Namco Bandai Games,0,0,0.06,0,0.06 +PoPoLoCrois,PSP,2005,Role-Playing,Ignition Entertainment,0.05,0,0,0,0.06 +Mahouka Koukou no Rettousei: Out of Order,PSV,2014,Adventure,Namco Bandai Games,0,0,0.06,0,0.06 +Dragon Rage,PS2,2001,Shooter,3DO,0.03,0.02,0,0.01,0.06 +Lord of Magna: Maiden Heaven,3DS,2014,Role-Playing,Marvelous Entertainment,0,0,0.06,0,0.06 +Dig Dug: Digging Strike,DS,2005,Puzzle,Atari,0.05,0,0,0,0.06 +Dance Sensation!,Wii,2010,Misc,Majesco Entertainment,0.06,0,0,0,0.06 +Brave: A Warrior's Tale,Wii,2009,Action,SouthPeak Games,0.05,0,0,0,0.06 +Ansatsu Kyoushitsu: Assassin Ikusei Keikaku!!,3DS,2016,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Raw Danger! (JP sales),PS2,2006,Action,505 Games,0,0,0.06,0,0.06 +Archer Maclean Presents: Pool Paradise,PS2,2004,Sports,Ignition Entertainment,0.03,0.02,0,0.01,0.06 +Tabi no Yubisashi Kaiwachou DS: DS Series 3 Kankoku,DS,2006,Misc,Nintendo,0,0,0.06,0,0.06 +Winx Club: Mission Enchantix,DS,2008,Adventure,Konami Digital Entertainment,0.03,0.02,0,0,0.06 +Petz Bunnyz Bunch,DS,2011,Simulation,Ubisoft,0.05,0,0,0,0.06 +S.T.A.L.K.E.R.: Shadow of Chernobyl,PC,2007,Shooter,THQ,0.01,0.04,0,0.01,0.06 +Backyard Skateboarding 2006,GBA,2004,Sports,Atari,0.04,0.02,0,0,0.06 +Tron 2.0: Killer App,XB,2004,Action,Disney Interactive Studios,0.04,0.01,0,0,0.06 +"Steins,Gate: Hiyoku Renri no Darling",PSP,2012,Action,5pb,0,0,0.06,0,0.06 +Captain America: Super Soldier,Wii,,Action,Sega,0.05,0,0,0,0.06 +Gegege no Kitarou: Youkai Daigekisen,DS,2008,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Emblem of Gundam,DS,2008,Strategy,Namco Bandai Games,0,0,0.06,0,0.06 +The Fast and the Furious,PS2,2006,Racing,Namco Bandai Games,0.03,0.02,0,0.01,0.06 +Gem Smashers,Wii,2011,Platform,Crave Entertainment,0.05,0,0,0,0.06 +Super Robot Wars OG: The Moon Dwellers,PS3,2016,Misc,Namco Bandai Games,0,0,0.06,0,0.06 +G-Police: Weapons of Justice,PS,1999,Action,Psygnosis,0.03,0.02,0,0,0.06 +Killing Zone,PS,1996,Fighting,Acclaim Entertainment,0.03,0.02,0,0,0.06 +All Kamen Rider: Rider Generation 2,PSP,2012,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Policenauts,3DO,1995,Adventure,Konami Digital Entertainment,0,0,0.06,0,0.06 +Adventures of Lolo,NES,1989,Puzzle,HAL Laboratory,0.06,0,0,0,0.06 +Quiz! Hexagon II,DS,2010,Misc,Namco Bandai Games,0,0,0.06,0,0.06 +Game of Thrones (Telltale),PS3,2015,Adventure,Telltale Games,0.02,0.03,0,0.01,0.06 +Call of Duty: The War Collection,X360,2010,Shooter,Activision,0.05,0,0,0,0.06 +Warriors Orochi 2,X360,2008,Action,Tecmo Koei,0.04,0,0.01,0,0.06 +The History Channel: Battle for the Pacific,X360,2007,Shooter,Activision,0.05,0,0,0,0.06 +Racing Gears Advance,GBA,2004,Racing,Zoo Digital Publishing,0.04,0.02,0,0,0.06 +Jewel Master: Cradle of Persia,DS,2012,Puzzle,Rising Star Games,0,0.05,0,0.01,0.06 +Project Setsuna,PS4,2016,Role-Playing,Square Enix,0,0,0.06,0,0.06 +Syphon Filter: Logan's Shadow,PS2,2010,Shooter,Sony Computer Entertainment,0.03,0.02,0,0.01,0.06 +NTRA Breeders' Cup World Thoroughbred Championships,XB,2005,Simulation,Bethesda Softworks,0.04,0.01,0,0,0.06 +Tiger Woods PGA Tour 08,DS,2007,Sports,Electronic Arts,0.05,0,0,0,0.06 +Daito Giken Koushiki Pachi-Slot Simulator: Shin Yoshimune,PS2,2008,Misc,Paon,0,0,0.06,0,0.06 +Tanjou S Debut,SAT,1996,Simulation,NEC Interchannel,0,0,0.06,0,0.06 +Nendoroid Generation,PSP,2012,Role-Playing,Namco Bandai Games,0,0,0.06,0,0.06 +Brave: A Warrior's Tale,X360,2009,Action,SouthPeak Games,0.05,0.01,0,0,0.06 +Pop'n TwinBee: Rainbow Bell Adventure,SNES,1993,Platform,Konami Digital Entertainment,0,0,0.06,0,0.06 +Honeycomb Beat,DS,2006,Puzzle,Konami Digital Entertainment,0.05,0,0,0,0.06 +Broken Helix,PS,1997,Action,Konami Digital Entertainment,0.03,0.02,0,0,0.06 +The Saboteur,PC,2009,Action,Electronic Arts,0,0.05,0,0.01,0.06 +Katekyoo Hitman Reborn! DS Fate of Heat III - Yuki no Shugosha Raishuu!,DS,2010,Role-Playing,Marvelous Interactive,0,0,0.06,0,0.06 +Myst III: Exile,XB,2002,Adventure,Ubisoft,0.04,0.01,0,0,0.06 +Warriors: Legends of Troy,X360,2011,Action,Tecmo Koei,0,0.04,0.01,0.01,0.06 +Hajime no Ippo Portable: Victorious Spirits,PSP,2007,Fighting,Grand Prix Games,0,0,0.06,0,0.06 +Nanostray,DS,2005,Shooter,Majesco Entertainment,0.05,0,0,0,0.06 +CMT Presents: Karaoke Revolution Country,PS2,2006,Misc,Konami Digital Entertainment,0.03,0.02,0,0.01,0.06 +Katekyoo Hitman Reborn! DS: Flame Rumble Mukuro Kyoushuu,DS,2007,Fighting,Takara Tomy,0,0,0.06,0,0.06 +Cid to Chocobo no Fushigi na Dungeon: Toki Wasure no Meikyuu DS+,DS,2008,Role-Playing,Square Enix,0,0,0.06,0,0.06 +Vitamin X to Z,PSP,2011,Adventure,D3Publisher,0,0,0.06,0,0.06 +Fatal Frame,XB,2002,Action,Tecmo Koei,0.04,0.01,0,0,0.06 +Flip's Twisted World,Wii,,Platform,Unknown,0.05,0,0,0,0.06 +Tom Clancy's Ghost Recon: Advanced Warfighter,PS2,2006,Shooter,Ubisoft,0.03,0.02,0,0.01,0.06 +Urban Chaos: Riot Response,PS2,2006,Shooter,Eidos Interactive,0.03,0.02,0,0.01,0.06 +Generation of Chaos,PSP,2005,Role-Playing,Midas Interactive Entertainment,0.05,0,0,0,0.06 +Teenage Mutant Ninja Turtles II: Back from the Sewers,GB,1991,Action,Konami Digital Entertainment,0,0,0.06,0,0.06 +Gormiti: The Lords of Nature!,DS,2010,Adventure,Konami Digital Entertainment,0.05,0,0,0,0.06 +The Sims 2: University,PC,2005,Simulation,Electronic Arts,0.01,0.04,0,0.01,0.06 +Pucca Power Up,DS,2011,Platform,Rising Star Games,0.04,0.02,0,0,0.06 +Resident Evil 2,GC,2003,Action,Capcom,0.04,0.01,0,0,0.06 +MLB Power Pros 2008,DS,2008,Sports,Take-Two Interactive,0.05,0,0,0,0.06 +Real Soccer 2009,DS,2008,Sports,Ubisoft,0.05,0,0,0,0.06 +World Championship Athletics,Wii,2009,Sports,DTP Entertainment,0.04,0.01,0,0,0.06 +The Amazing Spider-Man 2 (2014),WiiU,2014,Action,Activision,0.03,0.02,0,0,0.06 +Yomawari,PSV,2015,Adventure,Nippon Ichi Software,0,0,0.06,0,0.06 +Real Bout Garou Densetsu Special: Dominated Mind,PS,1998,Fighting,SNK,0,0,0.05,0,0.06 +Jumble Madness,DS,2009,Puzzle,Destineer,0.06,0,0,0,0.06 +Vampire Rain: Altered Species,PS3,2008,Action,Ignition Entertainment,0.05,0,0,0,0.06 +Sumikko Gurashi: Mura o Tsukurundesu,3DS,2016,Misc,Nippon Columbia,0,0,0.06,0,0.06 +Harry Potter and the Sorcerer's Stone,PC,2001,Action,Electronic Arts,0.01,0.04,0,0.01,0.06 +Minna no Sukkiri,PSP,2009,Sports,Sony Computer Entertainment,0,0,0.06,0,0.06 +Scurge: Hive,DS,2006,Action,SouthPeak Games,0.05,0,0,0,0.06 +Catwoman,XB,2004,Action,Electronic Arts,0.04,0.01,0,0,0.06 +Murdered: Soul Suspect,PC,2014,Action,Square Enix,0,0.05,0,0.01,0.06 +Romance of the Three Kingdoms 13,PS4,2015,Action,Tecmo Koei,0.01,0,0.05,0,0.06 +Noddy in Toyland,DS,2011,Misc,GSP,0,0.05,0,0.01,0.06 +Aquarium by DS,DS,2008,Simulation,Mercury Games,0.05,0,0,0,0.06 +Utawarerumono: Itsuwari no Kamen,PS4,2015,Adventure,Aqua Plus,0,0,0.06,0,0.06 +Ride to Hell,X360,2013,Racing,Deep Silver,0.04,0.01,0,0,0.06 +Burning Rangers,SAT,1998,Platform,Sega,0,0,0.06,0,0.06 +Mana Khemia: Alchemists of Al-Revis,PS2,2007,Role-Playing,Nippon Ichi Software,0.03,0.02,0,0.01,0.06 +Katekyoo Hitman Reborn! DS Flame Rumble XX - Kessen! Shin 6 Chouka,DS,2010,Action,Takara Tomy,0,0,0.06,0,0.06 +Interplay Sports Baseball 2000,PS,1999,Sports,Interplay,0.03,0.02,0,0,0.06 +Zone of the Enders: The Fist of Mars,GBA,2001,Role-Playing,Konami Digital Entertainment,0.04,0.02,0,0,0.06 +Animorphs: Shattered Reality,PS,2000,Action,Infogrames,0.03,0.02,0,0,0.06 +Teenage Mutant Ninja Turtles: Tournament Fighters,SNES,1992,Fighting,Konami Digital Entertainment,0,0,0.06,0,0.06 +Eikan wa Kimini 2002: Koshien no Kodou,PS2,2002,Sports,DigiCube,0,0,0.06,0,0.06 +PopStar Guitar,Wii,2008,Misc,Midway Games,0.03,0.03,0,0.01,0.06 +Mirror's Edge,PC,2009,Platform,Electronic Arts,0,0.05,0,0.01,0.06 +Blade Dancer: Lineage of Light,PSP,2006,Role-Playing,Atari,0.05,0,0,0,0.06 +Terminator 3: Rise of the Machines,GBA,2003,Action,Atari,0.04,0.02,0,0,0.06 +Jissen Pachislot Hisshouhou! Hokuto no Ken Portable SE,PSP,2006,Misc,Sega,0,0,0.06,0,0.06 +Mayhem 3D,PS3,2011,Racing,Evolved Games,0.05,0,0,0.01,0.06 +G1 Jockey 2,PS2,2000,Sports,Tecmo Koei,0,0,0.06,0,0.06 +Mobile Ops: The One Year War,X360,,Simulation,Namco Bandai Games,0,0,0.06,0,0.06 +Constantine,XB,2005,Action,SCi,0.04,0.01,0,0,0.06 +Chaos Rings III,PSV,2014,Role-Playing,Square Enix,0,0,0.06,0,0.06 +Tom Clancy's Splinter Cell: Double Agent,GC,2006,Action,Ubisoft,0.04,0.01,0,0,0.06 +Senritsu no Stratus,PSP,2011,Role-Playing,Konami Digital Entertainment,0,0,0.06,0,0.06 +Katekyoo Hitman Reborn! DS Flame Rumble X - Mirai Chou-Bakuhatsu!!,DS,2009,Fighting,Takara Tomy,0,0,0.06,0,0.06 +Rhapsody: A Musical Adventure,DS,2008,Role-Playing,Nippon Ichi Software,0.05,0,0,0,0.06 +Titan Quest,PC,2006,Role-Playing,THQ,0.01,0.04,0,0.01,0.06 +Wantame Fortune Channel,DS,2007,Misc,Capcom,0,0,0.06,0,0.06 +Evangelion: Jo,PSP,2009,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Bleach: Blade Battlers 2nd,PS2,2007,Fighting,Sony Computer Entertainment,0,0,0.06,0,0.06 +Samurai Jack: The Shadow of Aku,PS2,2004,Action,Sega,0.03,0.02,0,0.01,0.06 +Kamen Rider Kabuto,PS2,2006,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Men in Black The Series: Crashdown,PS,2001,Shooter,Infogrames,0.03,0.02,0,0,0.06 +Zero Divide,PS,1995,Fighting,Ocean,0.03,0.02,0,0,0.06 +FIFA Street,GC,2005,Sports,Electronic Arts,0.04,0.01,0,0,0.06 +Tsugunai: Atonement,PS2,2001,Role-Playing,Sony Computer Entertainment,0.02,0.01,0.02,0,0.06 +Rugby World Cup 2015,PS4,2015,Sports,Ubisoft,0,0.05,0,0.01,0.06 +Lost Kingdoms II,GC,2003,Role-Playing,Activision,0.04,0.01,0,0,0.06 +Aggressive Inline,GC,2002,Sports,Acclaim Entertainment,0.04,0.01,0,0,0.06 +Nights of Azure,PS4,2015,Action,Tecmo Koei,0.03,0.02,0,0.01,0.06 +Dungeon Keeper 2,PC,1999,Action,Electronic Arts,0,0.05,0,0.01,0.06 +Viewtiful Joe: Red Hot Rumble,GC,2005,Action,Capcom,0.04,0.01,0,0,0.06 +The Lord of the Rings: The Battle for Middle-Earth II,X360,2006,Strategy,Electronic Arts,0,0.05,0,0.01,0.06 +Kaite Shabette Hajimeyou! Monster Farm DS,DS,2007,Role-Playing,Tecmo Koei,0,0,0.06,0,0.06 +Dungeon Explorer: Warriors of Ancient Arts,DS,2007,Role-Playing,Rising Star Games,0.05,0,0,0,0.06 +Pro Yaky? Spirits 2012,PSV,2012,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +Samurai Warriors 4: Empires,PS3,2015,Action,Tecmo Koei,0,0,0.06,0,0.06 +Point Blank DS (US sales),DS,2006,Shooter,Atari,0.05,0,0,0,0.06 +FIFA Soccer 06,DS,2005,Sports,Electronic Arts,0.05,0,0,0,0.06 +SD Gundam G Generation Wars,Wii,2009,Strategy,Namco Bandai Games,0,0,0.06,0,0.06 +Broken Sword II: The Smoking Mirror,PS,1997,Adventure,Sony Computer Entertainment,0.03,0.02,0,0,0.06 +Pump It Up: Exceed,PS2,2005,Misc,Mastiff,0.03,0.02,0,0.01,0.06 +Hakuouki: Yuugi Roku Ni - Matsuri Hayashi to Taishitachi,PSP,2012,Action,Idea Factory,0,0,0.06,0,0.06 +Wreckless: ThE YaKuza MisSiOns,GC,2002,Racing,Activision,0.04,0.01,0,0,0.06 +Doki-Doki Universe,PSV,2013,Adventure,Sony Computer Entertainment,0.01,0.04,0,0.01,0.06 +"Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 11: Shinseiki Evangelion - Magokoro o, Kimi ni",PS2,2007,Misc,D3Publisher,0,0,0.06,0,0.06 +TOCA Race Driver 2: Ultimate Racing Simulator,PS2,2004,Racing,Codemasters,0.03,0.02,0,0.01,0.06 +Girls RPG: Cinderellife,3DS,2012,Role-Playing,Level 5,0,0,0.06,0,0.06 +Dr. Muto,XB,2002,Platform,Midway Games,0.04,0.01,0,0,0.06 +Tom Clancy's Rainbow Six: Critical Hour,XB,,Shooter,Unknown,0.04,0.01,0,0,0.06 +Gothic 3,PC,2006,Role-Playing,JoWood Productions,0,0.05,0,0.01,0.06 +Tokyo Twilight Ghost Hunters,PS3,2014,Role-Playing,Aksys Games,0.03,0,0.02,0.01,0.06 +Scrabble Blast!,GBA,2005,Misc,Zoo Digital Publishing,0.04,0.01,0,0,0.06 +Dino Pets,DS,2009,Simulation,Avanquest,0.05,0,0,0,0.06 +Fate/Stay Night [R?alta Nua],PSV,2012,Adventure,Kadokawa Shoten,0,0,0.06,0,0.06 +The Mysterious Case of Dr. Jekyll and Mr. Hyde,DS,2010,Adventure,O-Games,0.02,0.03,0,0.01,0.06 +Gintama no Sugoroku,PSP,2013,Action,Namco Bandai Games,0,0,0.06,0,0.06 +Kid Fit Island Resort,Wii,2010,Sports,Avanquest,0.05,0,0,0,0.06 +The Lord of the Rings: Aragorn's Quest,PS2,2010,Action,Warner Bros. Interactive Entertainment,0.03,0.02,0,0.01,0.06 +Roogoo Twisted Towers,Wii,2009,Puzzle,SouthPeak Games,0.05,0,0,0,0.06 +Doraemon 4: Nobita to Toki no Okoku,SNES,1995,Platform,Epoch,0,0,0.06,0,0.06 +Myst,SAT,1994,Adventure,Sunsoft,0,0,0.06,0,0.06 +F1 2010,PC,2010,Racing,Codemasters,0,0.05,0,0.01,0.06 +Toaru Kagaku no Chou Denjihou,PSP,2011,Adventure,Kadokawa Shoten,0,0,0.06,0,0.06 +Starwinder: The Ultimate Space Race,PS,1996,Racing,Mindscape,0.03,0.02,0,0,0.06 +The Lost Chronicles of Zerzura,PC,2012,Adventure,DTP Entertainment,0,0.05,0,0.01,0.06 +Ski Region Simulator,PC,2011,Simulation,Excalibur Publishing,0,0.05,0,0.01,0.06 +Angelique Trois,PS2,2000,Adventure,Tecmo Koei,0,0,0.06,0,0.06 +Dreamer Series: Babysitter,DS,2009,Simulation,Deep Silver,0.05,0,0,0,0.06 +Diva Girls: Divas on Ice,DS,2009,Sports,505 Games,0.05,0,0,0,0.06 +Dance Dance Revolution: Mario Mix (JP sales),GC,2005,Simulation,Nintendo,0,0,0.05,0,0.06 +A-Train 6,PS2,2000,Strategy,Midas Interactive Entertainment,0,0,0.06,0,0.06 +Meitantei Conan: Tantei Ryoku Trainer,DS,2007,Misc,Namco Bandai Games,0,0,0.06,0,0.06 +MotoGP,GBA,2002,Racing,THQ,0.04,0.01,0,0,0.06 +ESPN International Winter Sports 2002,PS2,2002,Sports,Konami Digital Entertainment,0.03,0.02,0,0.01,0.06 +"Tennis no Oji-Sama: Doubles no Oji-Sama - Girls, Be Gracious!",DS,2009,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +KimiKiss (ebKore+),PS2,2008,Adventure,Enterbrain,0,0,0.06,0,0.06 +Gold and Glory: The Road to El Dorado,PS,2000,Adventure,Ubisoft,0.03,0.02,0,0,0.06 +NBA Live 07,XB,2006,Sports,Electronic Arts,0.04,0.01,0,0,0.06 +Choro Q Marine: Q Boat,PS,1998,Racing,Takara,0,0,0.05,0,0.06 +GunPey,PSP,2006,Puzzle,Atari,0.05,0,0,0.01,0.06 +BattleBots: Beyond the BattleBox,GBA,2002,Action,Vivendi Games,0.04,0.01,0,0,0.06 +MX vs. ATV Supercross Encore,PS4,2015,Sports,Nordic Games,0,0.05,0,0.01,0.06 +Yuugen Gaisha Brave Company,3DS,2011,Strategy,Namco Bandai Games,0,0,0.06,0,0.06 +Mighty Beanz: Pocket Puzzles,GBA,2004,Puzzle,Majesco Entertainment,0.04,0.01,0,0,0.06 +Ken to Mahou to Gakuen Mono. 3D,3DS,2011,Role-Playing,Acquire,0,0,0.06,0,0.06 +History Great Empires: Rome,DS,2009,Strategy,Black Bean Games,0.05,0,0,0,0.06 +The King of Fighters '96,NG,1996,Fighting,SNK,0,0,0.06,0,0.06 +Friends: The One with All the Trivia,PS2,2005,Misc,Warner Bros. Interactive Entertainment,0.03,0.02,0,0.01,0.06 +Mame Goma 2: Uchi no Ko ga Ichiban!,DS,2008,Simulation,Creative Core,0,0,0.06,0,0.06 +Backyard NFL Football '08,PS2,2007,Sports,Atari,0.03,0.02,0,0.01,0.06 +Coraline,Wii,2009,Action,D3Publisher,0.05,0,0,0,0.06 +Gunbird,SAT,1995,Shooter,Atlus,0,0,0.06,0,0.06 +Imagine: Party Planner,DS,2009,Simulation,Ubisoft,0.05,0,0,0,0.06 +Dream C Club Portable,PSP,2010,Simulation,D3Publisher,0,0,0.06,0,0.06 +Tom Clancy's Rainbow Six 3,GC,2004,Shooter,Ubisoft,0.04,0.01,0,0,0.06 +Elemental Gearbolt,PS,1997,Shooter,Sony Computer Entertainment,0.03,0.02,0,0,0.06 +Space Chimps,DS,2008,Platform,Brash Entertainment,0.05,0,0,0,0.06 +Tony Hawk's Pro Skater 5,PS3,2015,Sports,Activision,0.04,0,0,0.01,0.06 +WWF Wrestlemania: The Arcade Game,PS,1995,Fighting,Acclaim Entertainment,0.03,0.02,0,0,0.06 +Handball 16,PS4,2015,Sports,Bigben Interactive,0,0.05,0,0.01,0.06 +Cabela's Big Game Hunter 2005 Adventures,GBA,2004,Sports,Activision,0.04,0.01,0,0,0.06 +Grand Kingdom,PS4,2015,Role-Playing,Nippon Ichi Software,0.02,0,0.03,0,0.06 +Mega Man 8 Anniversary Collector's Edition,SAT,1997,Platform,Capcom,0,0,0.06,0,0.06 +V-Rally 3,PS2,2002,Racing,Atari,0.03,0.02,0,0.01,0.06 +Nobunaga no Yabou: Souzou,PS4,2014,Strategy,Tecmo Koei,0,0,0.06,0,0.06 +Whiplash,XB,2003,Racing,Eidos Interactive,0.04,0.01,0,0,0.06 +GRID,DS,,Racing,Codemasters,0.04,0.01,0,0,0.06 +Pro Yakyuu Famista 2011,3DS,2011,Sports,Namco Bandai Games,0,0,0.06,0,0.06 +Impact Racing,PS,1996,Racing,JVC,0.03,0.02,0,0,0.06 +My Horse & Me: Riding for Gold,Wii,2008,Sports,Atari,0.04,0.02,0,0,0.06 +Sled Shred featuring the Jamaican Bobsled Team,Wii,2010,Sports,SouthPeak Games,0.05,0,0,0,0.06 +Amazing Island,GC,2004,Strategy,Sega,0.04,0.01,0,0,0.06 +SeaBlade,XB,2002,Shooter,TDK Mediactive,0.04,0.01,0,0,0.06 +Jikkyou Powerful Pro Yakyuu DreamCast Edition,DC,2000,Sports,Konami Digital Entertainment,0,0,0.06,0,0.06 +Carmen Sandiego: The Secret of the Stolen Drums,PS2,2004,Action,BAM! Entertainment,0.03,0.02,0,0.01,0.06 +Tokyo Mono Harashi: Karasu no Mori Gakuen Kitan,PSP,2010,Role-Playing,Atlus,0,0,0.06,0,0.06 +Activision Hits: Remixed,PSP,2006,Misc,Activision,0.05,0,0,0,0.06 +Death Jr. II: Root of Evil,PSP,2006,Platform,Konami Digital Entertainment,0.05,0,0,0,0.06 +Hail to the Chimp,X360,2008,Misc,Gamecock,0.05,0,0,0,0.06 +MotoGP 4 - Official Game of MotoGP,PS2,2005,Racing,Sony Computer Entertainment,0.03,0.02,0,0.01,0.06 +Legend of Kay,WiiU,2015,Action,Nordic Games,0.03,0.02,0,0,0.05 +Kyoukai Senjou no Horizon Portable,PSP,2013,Adventure,Kadokawa Shoten,0,0,0.05,0,0.05 +4 Elements,PC,2009,Puzzle,Mastertronic,0,0.04,0,0.01,0.05 +Shining Force III: Scenario 2,SAT,1998,Strategy,Sega,0,0,0.05,0,0.05 +Captain America: Super Soldier,DS,,Action,Sega,0.05,0,0,0,0.05 +Airline Tycoon 2,PC,2011,Simulation,Kalypso Media,0,0.04,0,0.01,0.05 +Worms World Party,GBA,2002,Strategy,Ubisoft,0.04,0.01,0,0,0.05 +Medabots: Metabee,GBA,2002,Role-Playing,Natsume,0.04,0.01,0,0,0.05 +Medal of Honor: Airborne,PC,2007,Shooter,Electronic Arts,0,0.04,0,0.01,0.05 +NHL Legacy,X360,2015,Action,Electronic Arts,0.05,0,0,0.01,0.05 +Final Fight: Streetwise,PS2,2006,Action,Capcom,0.03,0.02,0,0.01,0.05 +Speed Kings,XB,2003,Racing,Acclaim Entertainment,0.04,0.01,0,0,0.05 +Drivers Ed Portable,DS,2008,Misc,JoWood Productions,0.05,0,0,0,0.05 +Rebelstar: Tactical Command,GBA,2005,Strategy,Atari,0.04,0.01,0,0,0.05 +Kamen Rider: Battride War Genesis,PS4,2016,Action,Namco Bandai Games,0,0,0.05,0,0.05 +IL-2 Sturmovik: Cliffs of Dover,PC,2011,Simulation,Ubisoft,0,0.04,0,0.01,0.05 +Gladiator: Sword of Vengeance,XB,2003,Action,Acclaim Entertainment,0.04,0.01,0,0,0.05 +Unsolved Crimes,DS,2008,Adventure,Empire Interactive,0.04,0.01,0,0,0.05 +Minna to Kimi no Piramekino!,DS,2010,Misc,Namco Bandai Games,0,0,0.05,0,0.05 +Virtua Tennis 3,PSP,2007,Sports,Sega,0.02,0.03,0,0.01,0.05 +Bombastic,PS2,2002,Puzzle,Capcom,0.03,0.02,0,0.01,0.05 +Xiaolin Showdown,DS,2006,Action,Konami Digital Entertainment,0.05,0,0,0,0.05 +NHL Powerplay 98,PS,1997,Sports,Virgin Interactive,0.03,0.02,0,0,0.05 +Olympic Soccer: Atlanta 1996,PS,1996,Sports,U.S. Gold,0.03,0.02,0,0,0.05 +Lernerfolg Vorschule: Capt'n Sharky,DS,2009,Misc,Tivola,0,0.05,0,0.01,0.05 +Samurai Dou Portable,PSP,2008,Action,Spike,0,0,0.05,0,0.05 +Princess on Ice,DS,2008,Sports,505 Games,0.04,0.01,0,0,0.05 +Countdown: The Game,Wii,2009,Puzzle,Mindscape,0,0.05,0,0,0.05 +Phantasy Star Online Episode I & II Plus,GC,2003,Role-Playing,Sega,0.04,0.01,0,0,0.05 +Samurai Warriors 4: Empires,PSV,2015,Action,Tecmo Koei,0,0,0.05,0,0.05 +DuckTales: Remastered,PS3,2013,Action,Capcom,0.01,0.04,0,0.01,0.05 +Front Mission 2089: Border of Madness,DS,2008,Strategy,Square Enix,0,0,0.05,0,0.05 +Miracle Girls Festival,PSV,2015,Misc,Sega,0,0,0.05,0,0.05 +Dual Hearts,PS2,2002,Role-Playing,Sony Computer Entertainment,0.03,0.02,0,0.01,0.05 +7 Wonders: Treasures of Seven,DS,2011,Puzzle,Avanquest,0.02,0.03,0,0.01,0.05 +NFL Quarterback Club 2002,GC,2001,Sports,Acclaim Entertainment,0.04,0.01,0,0,0.05 +Saki: Zenkoku-hen,PSV,2015,Misc,Kaga Create,0,0,0.05,0,0.05 +Mister Slime,DS,2008,Action,SouthPeak Games,0.05,0,0,0,0.05 +Shiren the Wanderer 5 Plus: Fortune Tower and the Dice of Fate,PSV,2015,Action,Aksys Games,0.01,0,0.04,0,0.05 +"Murder, She Wrote",PC,2009,Adventure,Focus Home Interactive,0,0.04,0,0.01,0.05 +Virtual Villagers: A New Home,DS,2010,Simulation,PQube,0.04,0.01,0,0,0.05 +Wing Commander: Prophecy,GBA,2003,Simulation,"Destination Software, Inc",0.04,0.01,0,0,0.05 +Marc Ecko's Getting Up: Contents Under Pressure,PS2,2006,Action,Atari,0.03,0.02,0,0.01,0.05 +Learn Science,DS,2010,Misc,DreamCatcher Interactive,0.05,0,0,0,0.05 +Sega Soccer Slam,XB,2002,Sports,Sega,0.04,0.01,0,0,0.05 +Hakuouki: Reimeiroku,PS2,2010,Adventure,Idea Factory,0,0,0.05,0,0.05 +Vertigo,Wii,2009,Strategy,Playlogic Game Factory,0.05,0,0,0,0.05 +Blood Omen 2,GC,2002,Action,Eidos Interactive,0.04,0.01,0,0,0.05 +NBA 2K17,X360,2016,Sports,Take-Two Interactive,0.04,0,0,0.01,0.05 +Shin Sangoku Musou 5 Empires,PSP,2010,Action,Tecmo Koei,0,0,0.05,0,0.05 +Front Mission Evolved,PC,2010,Shooter,Square Enix,0.05,0,0,0,0.05 +Carve,XB,2004,Racing,Global Star,0.04,0.01,0,0,0.05 +BlowOut,XB,2003,Shooter,Zoo Digital Publishing,0.04,0.01,0,0,0.05 +McDROID,PSP,2011,Strategy,Namco Bandai Games,0,0,0.05,0,0.05 +GachiTora! Abarenbou Kyoushi in High School,PSP,2011,Action,Spike,0,0,0.05,0,0.05 +WTA Tour Tennis,PS2,2001,Sports,Konami Digital Entertainment,0.03,0.02,0,0.01,0.05 +Bottom of the 9th '99,PS,1998,Sports,Konami Digital Entertainment,0.03,0.02,0,0,0.05 +Dynasty Warriors 5,XB,2005,Action,Tecmo Koei,0.04,0.01,0,0,0.05 +Reader Rabbit 2nd Grade,Wii,,Misc,Unknown,0.05,0,0,0,0.05 +Famicom Mini: Dig Dug,GBA,2004,Puzzle,Namco Bandai Games,0,0,0.05,0,0.05 +FIFA Soccer 2003,GBA,2002,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Naval Ops: Commander,PS2,2004,Simulation,Tecmo Koei,0.03,0.02,0,0.01,0.05 +Adventure Time: Finn & Jake Investigations,WiiU,2015,Action,Little Orbit,0.03,0.02,0,0,0.05 +Defendin' De Penguin,Wii,2008,Strategy,Zushi Games,0.05,0,0,0,0.05 +Bleach: Blade Battlers,PS2,2006,Fighting,Sony Computer Entertainment,0,0,0.05,0,0.05 +Rez,PS2,2001,Shooter,Sony Computer Entertainment,0.03,0.02,0,0.01,0.05 +Goosebumps: The Game,3DS,2015,Adventure,WayForward Technologies,0.05,0,0,0.01,0.05 +MLB SlugFest 2006,XB,2006,Sports,Midway Games,0.04,0.01,0,0,0.05 +Rockin' Pretty,DS,2009,Misc,Arc System Works,0.05,0,0,0,0.05 +Jake Power: Policeman,DS,2008,Adventure,Ubisoft,0.05,0,0,0,0.05 +Samurai Warriors 4-II,PSV,2015,Action,Tecmo Koei,0,0,0.05,0,0.05 +Jissen Pachislot Hisshouhou! Hokuto no Ken DS SE,DS,2006,Misc,Sega,0,0,0.05,0,0.05 +UEFA Euro 2004: Portugal,XB,2004,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Lufia: The Ruins of Lore,GBA,2002,Role-Playing,Taito,0.04,0.01,0,0,0.05 +Major Minor's Majestic March,Wii,2009,Misc,Majesco Entertainment,0.05,0,0,0,0.05 +Shaman King: Soul Fight,GC,2003,Platform,Namco Bandai Games,0,0,0.05,0,0.05 +Samurai Deeper Kyo,PS,2002,Fighting,Namco Bandai Games,0,0,0.05,0,0.05 +Samantha Swift and the Hidden Roses of Athena,DS,2010,Adventure,Unknown,0.04,0.01,0,0,0.05 +Dark Souls III,PC,2016,Role-Playing,Namco Bandai Games,0,0.05,0,0,0.05 +Medabots: Infinity,GC,2003,Role-Playing,Ubisoft,0.04,0.01,0,0,0.05 +Tom Clancy's HAWX 2,PC,2010,Action,Ubisoft,0,0.04,0,0.01,0.05 +Zapper: One Wicked Cricket!,XB,2002,Platform,Infogrames,0.04,0.01,0,0,0.05 +Jirou Akagawa: Majotachi no Nemuri,SNES,1995,Adventure,Pack-In-Video,0,0,0.05,0,0.05 +Arcana Heart 3,X360,2011,Fighting,PQube,0,0.03,0.02,0,0.05 +Bust-A-Bloc,PS2,2002,Puzzle,Midas Interactive Entertainment,0,0,0.05,0,0.05 +Sitting Ducks,PS2,2003,Platform,LSP Games,0.03,0.02,0,0.01,0.05 +Puyo Puyo 7,Wii,2009,Puzzle,Sega,0,0,0.05,0,0.05 +Animal Planet: Vet Collection,DS,2010,Simulation,Activision,0.05,0,0,0,0.05 +Imagine Animal Doctor Care Center,DS,2010,Simulation,Ubisoft,0.05,0,0,0,0.05 +Rugby 15,X360,2015,Sports,Bigben Interactive,0,0.05,0,0,0.05 +NFL Blitz Pro,XB,2003,Sports,Midway Games,0.04,0.01,0,0,0.05 +Major League Baseball 2K11,PSP,2011,Sports,Take-Two Interactive,0.05,0,0,0,0.05 +Uta no Prince-Sama: Music 3,PSV,2016,Action,Broccoli,0,0,0.05,0,0.05 +Pretty Cure All Stars Everyone Gather ? Let's Dance!,Wii,2013,Misc,Namco Bandai Games,0,0,0.05,0,0.05 +Mountain Bike Adrenaline,PS2,,Sports,Unknown,0.03,0.02,0,0.01,0.05 +New Prince of Tennis: Go to the Top,3DS,2015,Action,FuRyu,0,0,0.05,0,0.05 +Zyuden Sentai Kyoryuger: Game de Gaburincho!!,3DS,2013,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Nobunaga's Ambition: Sphere of Influence,PSV,2014,Strategy,Tecmo Koei,0,0,0.05,0,0.05 +Hi-Octane: The Track Fights Back!,PS,1995,Racing,Electronic Arts,0.03,0.02,0,0,0.05 +Venetica,PC,2009,Role-Playing,DTP Entertainment,0,0.04,0,0.01,0.05 +Black Sigil: Blade of the Exiled,DS,2009,Role-Playing,Graffiti,0.05,0,0,0,0.05 +Tour de France 2011,X360,,Racing,Focus Home Interactive,0,0.05,0,0.01,0.05 +Wakeboarding Unleashed Featuring Shaun Murray,XB,2003,Sports,Activision,0.04,0.01,0,0,0.05 +TrackMania Turbo: Build to Race,DS,2010,Racing,Ubisoft,0.03,0.02,0,0.01,0.05 +ZombiU,PS4,2016,Action,Ubisoft,0,0.04,0.01,0.01,0.05 +Domino Rally,Wii,2007,Action,Nordcurrent,0.05,0,0,0,0.05 +Doraemon 2: Nobita no Toizurando Daibouken,SNES,1993,Role-Playing,Epoch,0,0,0.05,0,0.05 +Samurai Champloo: Sidetracked,PS2,2006,Action,Namco Bandai Games,0.03,0.02,0,0.01,0.05 +Drill Dozer,GBA,,Platform,Unknown,0.04,0.01,0,0,0.05 +Teenage Mutant Ninja Turtles: Mutants in Manhattan,PS3,2016,Action,Activision,0.01,0.03,0,0.01,0.05 +Katekyoo Hitman Reborn! DS: Shinuki Max! Vongola Carnival!!,DS,2007,Action,Takara Tomy,0,0,0.05,0,0.05 +Utawarerumono: Futari no Hakuoro,PSV,2016,Misc,Aqua Plus,0,0,0.05,0,0.05 +"Chaos,Child",PSV,2015,Adventure,5pb,0,0,0.05,0,0.05 +Fatal Fury: Wild Ambition,PS,1999,Fighting,SNK Playmore,0.03,0.02,0,0,0.05 +Metal Fight Beyblade: Bakugami Susanoh Shuurai!,DS,2010,Action,Hudson Soft,0,0,0.05,0,0.05 +Dengeki Gakuen RPG: Cross of Venus,DS,2009,Role-Playing,ASCII Media Works,0,0,0.05,0,0.05 +Judge Dredd,PS,1997,Platform,Gremlin Interactive Ltd,0.03,0.02,0,0,0.05 +FIFA 17,PC,2016,Sports,Electronic Arts,0,0.05,0,0,0.05 +Minna no Ennichi,3DS,2012,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Winning Post 8,PS3,2014,Racing,Tecmo Koei,0,0,0.05,0,0.05 +King Arthur,XB,2004,Action,Konami Digital Entertainment,0.04,0.01,0,0,0.05 +DoDonPachi Resurrection,X360,2010,Shooter,Rising Star Games,0,0.05,0,0.01,0.05 +Bass Rise,PS,1999,Sports,Namco Bandai Games,0.03,0.02,0,0,0.05 +UEFA Champions League 2006-2007,X360,2007,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Dynamite Headdy,GEN,1993,Platform,Sega,0,0,0.05,0,0.05 +Hunted: The Demon's Forge,PC,2011,Action,Bethesda Softworks,0.03,0.01,0,0.01,0.05 +Choujikuu Yousai Macross: Do You Remember Love,PS3,2012,Shooter,Namco Bandai Games,0,0,0.05,0,0.05 +Arcania: Gothic 4,PS4,2015,Role-Playing,Nordic Games,0.04,0,0,0.01,0.05 +Persona 2: Eternal Punishment,PSP,2012,Role-Playing,Atlus,0,0,0.05,0,0.05 +Dragon's Lair 3D: Return to the Lair,XB,2002,Platform,Ubisoft,0.04,0.01,0,0,0.05 +Growlanser: Heritage of War (jp sales),PS2,2006,Role-Playing,Rising Star Games,0,0,0.05,0,0.05 +The Bureau: XCOM Declassified,PC,2013,Shooter,Take-Two Interactive,0,0.05,0,0.01,0.05 +Myst IV: Revelation,XB,2005,Adventure,Ubisoft,0.04,0.01,0,0,0.05 +Culdcept Revolt,3DS,2016,Strategy,Nintendo,0,0,0.05,0,0.05 +Sushi Go-Round,Wii,2010,Simulation,Asylum Entertainment,0.05,0,0,0,0.05 +Pachinko Wars II,SNES,1993,Misc,Coconuts Japan,0,0,0.05,0,0.05 +Myth Makers: Orbs of Doom,Wii,2007,Puzzle,Popcorn Arcade,0.05,0,0,0,0.05 +Toy Soldiers: War Chest,XOne,2015,Action,Ubisoft,0.05,0,0,0.01,0.05 +The Nightmare of Druaga: Fushigino Dungeon,PS2,2004,Role-Playing,Arika,0.03,0.02,0,0.01,0.05 +Omega Labyrinth,PSV,2015,Role-Playing,D3Publisher,0,0,0.05,0,0.05 +Air Conflicts: Aces of World War II,PSP,2009,Simulation,Graffiti,0.05,0,0,0,0.05 +Cities in Motion,PC,2011,Simulation,Paradox Interactive,0,0.04,0,0.01,0.05 +Aliens in the Attic,DS,2009,Action,Playlogic Game Factory,0.05,0,0,0,0.05 +Virtua Striker 2002,GC,2002,Sports,Sega,0.01,0,0.03,0,0.05 +Kamen Rider: Dragon Knight,DS,2009,Fighting,D3Publisher,0.05,0,0,0,0.05 +Code Lyoko,DS,2007,Action,Game Factory,0.03,0.01,0,0,0.05 +Taito Legends Power Up,PSP,2007,Action,Destineer,0.05,0,0,0,0.05 +Fate/Unlimited Codes Portable,PSP,2009,Fighting,Capcom,0,0,0.05,0,0.05 +Metal Slug Anthology,PSP,2007,Shooter,Ignition Entertainment,0.02,0,0.02,0.01,0.05 +Tenchu: Dark Secret,DS,2006,Action,From Software,0.03,0,0.01,0,0.05 +Game no Kanzume Vol 2,SCD,1994,Misc,Sega,0,0,0.05,0,0.05 +Disney's PK: Out of the Shadows,GC,2002,Platform,Ubisoft,0.04,0.01,0,0,0.05 +Zoo Quest: Puzzle Fun!,DS,2008,Puzzle,JoWood Productions,0.05,0,0,0,0.05 +JoJo no Kimy? na B?ken Fantomu Buraddo,PS2,2006,Action,Namco Bandai Games,0,0,0.05,0,0.05 +The Idolmaster 2,X360,2011,Simulation,Namco Bandai Games,0,0,0.05,0,0.05 +PQ2: Practical Intelligence Quotient,PSP,2006,Puzzle,D3Publisher,0.04,0,0,0,0.05 +Mr Bean's Wacky World of Wii,Wii,2009,Adventure,Blast! Entertainment Ltd,0,0.05,0,0,0.05 +Powerdrome,PS2,2004,Racing,Evolved Games,0.03,0.02,0,0.01,0.05 +Dreamer Series: Puppy Trainer,DS,2008,Simulation,DreamCatcher Interactive,0.05,0,0,0,0.05 +Pro Yakyuu Spirits 5 Kanzenban,PS2,2008,Sports,Konami Digital Entertainment,0,0,0.05,0,0.05 +Tsumiki: Block Drop Mania,DS,2007,Action,Nobilis,0.05,0,0,0,0.05 +Shin Sangoku Musou 5 Special,PSP,2009,Action,Tecmo Koei,0,0,0.05,0,0.05 +Pony Friends: Mini Breeds Edition,DS,2008,Simulation,Eidos Interactive,0.05,0,0,0,0.05 +Otogi 2: Immortal Warriors,XB,2003,Action,Sega,0.04,0.01,0,0,0.05 +Legend of Kay,PS2,2005,Action,JoWood Productions,0.03,0.02,0,0.01,0.05 +Piglet's Big Game,GC,2003,Platform,Gotham Games,0.04,0.01,0,0,0.05 +Dead or Alive Xtreme 3: Fortune,PS4,2016,Sports,Tecmo Koei,0,0,0.05,0,0.05 +Ivy the Kiwi?,DS,2010,Puzzle,Rising Star Games,0.04,0,0,0,0.05 +Fallout: Brotherhood of Steel,XB,2004,Role-Playing,Avalon Interactive,0.04,0.01,0,0,0.05 +Strawberry Shortcake: Strawberryland Games,DS,2006,Action,Game Factory,0.05,0,0,0,0.05 +Koi to Senkyo to Chocolate Portable,PSP,2012,Adventure,Kadokawa Shoten,0,0,0.05,0,0.05 +IndyCar Series,XB,2003,Racing,Codemasters,0.04,0.01,0,0,0.05 +Hysteria Hospital: Emergency Ward,Wii,2009,Action,Oxygen Interactive,0.05,0,0,0,0.05 +Dokapon Journey,DS,2008,Role-Playing,Sting,0.05,0,0,0,0.05 +Ultra Bust-A-Move,XB,2004,Puzzle,505 Games,0.04,0.01,0,0,0.05 +Rally Fusion: Race of Champions,XB,2002,Racing,Activision,0.04,0.01,0,0,0.05 +Piglet's Big Game,GBA,2003,Platform,THQ,0.04,0.01,0,0,0.05 +Lucha Libre AAA: Heroes del Ring,X360,2010,Fighting,Konami Digital Entertainment,0.05,0,0,0,0.05 +Pony Friends,DS,2007,Simulation,Eidos Interactive,0,0.05,0,0.01,0.05 +Natural Doctrine,PS3,2014,Role-Playing,Nippon Ichi Software,0.03,0.01,0.01,0.01,0.05 +Pinball Hall of Fame: The Gottlieb Collection,GC,2005,Misc,Crave Entertainment,0.04,0.01,0,0,0.05 +Ferrari F355 Challenge,PS2,2002,Racing,Sony Computer Entertainment,0.03,0.02,0,0.01,0.05 +MorphX,X360,2010,Shooter,505 Games,0.05,0,0,0,0.05 +Stranger of Sword City,PSV,2015,Role-Playing,Nippon Ichi Software,0.02,0.02,0,0.01,0.05 +Air Traffic Chaos,DS,2007,Simulation,Ertain,0.05,0,0,0,0.05 +Battleship / Connect Four / Sorry! / Trouble,DS,2006,Puzzle,"Destination Software, Inc",0.05,0,0,0,0.05 +Prism: Light the Way,DS,2007,Puzzle,Eidos Interactive,0.05,0,0,0,0.05 +Tiny Toon Adventures: Toonenstein - Dare to Scare,PS,1998,Action,Swing! Entertainment,0.03,0.02,0,0,0.05 +TV Anime: Fairy Tale Gekitou! Madoushi Kessen,DS,2010,Fighting,Hudson Soft,0,0,0.05,0,0.05 +Shifters,PS2,2002,Adventure,3DO,0.03,0.02,0,0.01,0.05 +RPG Tsukuru DS,DS,2010,Role-Playing,Enterbrain,0,0,0.05,0,0.05 +WRC 5: FIA World Rally Championship,PS4,2015,Sports,Bigben Interactive,0,0.04,0,0.01,0.05 +Earth Defense Force 4.1: The Shadow of New Despair,PS4,2015,Shooter,Xseed Games,0.02,0.02,0,0.01,0.05 +The BIGS 2,DS,2009,Sports,Take-Two Interactive,0.05,0,0,0,0.05 +Dramatic Dungeon: Sakura Wars - Kimi Arugatame,DS,2008,Role-Playing,Sega,0,0,0.05,0,0.05 +TNA iMPACT: Cross the Line,PSP,2010,Fighting,SouthPeak Games,0.05,0,0,0,0.05 +SpongeBob: HeroPants,PSV,2015,Platform,Activision,0.03,0.01,0,0.01,0.05 +Lagoon,SNES,1991,Role-Playing,Kemco,0,0,0.05,0,0.05 +Nanostray 2,DS,2008,Shooter,Codemasters,0.03,0.01,0,0,0.05 +Project Setsuna,PSV,2016,Role-Playing,Square Enix,0,0,0.05,0,0.05 +Microsoft Flight Simulator X Acceleration Expansion Pack,PC,2007,Simulation,Microsoft Game Studios,0,0.04,0,0.01,0.05 +Trick x Logic: Season 1,PSP,2010,Adventure,Sony Computer Entertainment,0,0,0.05,0,0.05 +Mortal Kombat X,PC,2015,Fighting,Warner Bros. Interactive Entertainment,0.01,0.04,0,0,0.05 +Mawashite Tsunageru Touch Panic,DS,2006,Puzzle,Nintendo,0,0,0.05,0,0.05 +Luminous Arc Infinity,PSV,2015,Action,Marvel Entertainment,0,0,0.05,0,0.05 +Monster! Bass Fishing,GBA,2003,Sports,Ignition Entertainment,0.04,0.01,0,0,0.05 +Sigma Star Saga,GBA,2005,Role-Playing,Atari,0.04,0.01,0,0,0.05 +Winning Post 7 2010,PSP,2010,Sports,Tecmo Koei,0,0,0.05,0,0.05 +Assetto Corsa,PS4,2016,Racing,505 Games,0,0.04,0,0.01,0.05 +Batman: Gotham City Racer,PS,2001,Racing,Ubisoft,0.03,0.02,0,0,0.05 +Sengoku Basara X,PS2,2008,Fighting,Capcom,0,0,0.05,0,0.05 +Plants vs. Zombies,PC,2009,Strategy,PopCap Games,0,0.04,0,0.01,0.05 +Top Spin 2,DS,2006,Sports,Take-Two Interactive,0.05,0,0,0,0.05 +Doraemon: Nobita no Kyouryuu 2006 DS,DS,2006,Role-Playing,Sega,0,0,0.05,0,0.05 +Ontamarama,DS,2007,Action,Atlus,0.05,0,0,0,0.05 +Hakuoki: Stories of the Shinsengumi,PS3,2010,Adventure,Idea Factory,0.02,0,0.03,0,0.05 +DokiDoki Majo Shinpan!,DS,2007,Adventure,SNK Playmore,0,0,0.05,0,0.05 +Star Wars: Republic Commando,PC,2005,Shooter,LucasArts,0,0.04,0,0.01,0.05 +Starry ? Sky: In Spring,PSP,2010,Misc,Asgard,0,0,0.05,0,0.05 +FIFA Soccer 2004,GBA,2003,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Armored Core: Formula Front Extreme Battle,PSP,2004,Simulation,505 Games,0.05,0,0,0,0.05 +Downforce,PS2,2002,Racing,Avalon Interactive,0.03,0.02,0,0.01,0.05 +Bejeweled Twist,PC,2008,Puzzle,PopCap Games,0.01,0.04,0,0.01,0.05 +Street Fighter V,PC,2016,Fighting,Capcom,0,0.05,0,0,0.05 +Little Busters! Converted Edition,PS2,2009,Adventure,Prototype,0,0,0.05,0,0.05 +Enemy Front,X360,2014,Shooter,Namco Bandai Games,0.02,0.03,0,0,0.05 +Dream Salon,Wii,2009,Misc,Zoo Games,0.05,0,0,0,0.05 +Disney's Party,GC,2002,Misc,Electronic Arts,0.04,0.01,0,0,0.05 +Tennis no Oji-Sama: 2005 Crystal Drive,DS,2004,Sports,Konami Digital Entertainment,0,0,0.05,0,0.05 +Sherlock Holmes: Crimes & Punishments,PC,2014,Adventure,Focus Home Interactive,0,0.05,0,0,0.05 +Jenga World Tour,Wii,2007,Misc,Atari,0.05,0,0,0,0.05 +Summon Night X: Tears Crown,DS,2009,Role-Playing,Namco Bandai Games,0,0,0.05,0,0.05 +Secret Files: Tunguska,DS,2008,Adventure,Deep Silver,0.04,0.01,0,0,0.05 +Taiho Shichauzo!,PS,2001,Adventure,Pioneer LDC,0,0,0.05,0,0.05 +Battle vs. Chess,PS3,,Misc,TopWare Interactive,0,0.04,0,0.01,0.05 +Phantom Crash,XB,2002,Simulation,Phantagram,0.03,0.01,0.01,0,0.05 +Men of War: Assault Squad,PC,2011,Strategy,1C Company,0.01,0.03,0,0.01,0.05 +Fishdom,DS,2011,Puzzle,Atari,0.05,0,0,0,0.05 +Yanya Caballista: City Skater,PS2,2001,Sports,Tecmo Koei,0.02,0.02,0,0.01,0.05 +Expendable,PS,1999,Action,Infogrames,0.03,0.02,0,0,0.05 +Imagine: Artist,DS,2009,Misc,Ubisoft,0.05,0,0,0,0.05 +Pet Pals: New Leash on Life,DS,2010,Simulation,Destineer,0.05,0,0,0,0.05 +SeaWorld Adventure Parks: Shamu's Deep Sea Adventure,DS,2005,Adventure,Activision,0.05,0,0,0,0.05 +The Idolmaster: Gravure For You! Vol. 2,PS3,2011,Misc,Namco Bandai Games,0,0,0.05,0,0.05 +Arthur! Ready to Race,PS,2000,Racing,The Learning Company,0.03,0.02,0,0,0.05 +Thunder Force V: Perfect System,PS,1998,Shooter,TechnoSoft,0.03,0.02,0,0,0.05 +The Typing of the Dead,DC,2000,Shooter,Sega,0,0,0.05,0,0.05 +The Idolm@ster: Dearly Stars,DS,2009,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +Kids Learn Music A+ Edition,DS,2011,Misc,Unknown,0.05,0,0,0,0.05 +Child of Light,PS4,2014,Role-Playing,Ubisoft,0,0.01,0.04,0,0.05 +Over the Hedge: Hammy Goes Nuts!,PSP,2006,Platform,Activision,0.05,0,0,0,0.05 +Kart Racer,Wii,2009,Racing,Nordic Games,0.03,0.01,0,0,0.05 +Bakemonogatari Portable,PSP,2012,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Sam & Max: Beyond Time and Space,Wii,2010,Adventure,Atari,0.05,0,0,0,0.05 +To Heart 2: Dungeon Travelers,PSV,2015,Adventure,Aqua Plus,0,0,0.05,0,0.05 +Tabi no Yubisashi Kaiwachou DS: DS Series 2 Chuugoku,DS,2006,Misc,Nintendo,0,0,0.05,0,0.05 +Shrek Super Party,GC,2003,Misc,TDK Mediactive,0.04,0.01,0,0,0.05 +Monster 4x4: Masters of Metal,GC,2003,Racing,Ubisoft,0.04,0.01,0,0,0.05 +Bakusou Kyoudai Let's & Go!! Eternal Wings,PS,1998,Racing,Jaleco,0,0,0.05,0,0.05 +Caligula,PSV,2016,Role-Playing,FuRyu,0,0,0.05,0,0.05 +"Steins,Gate 0",PSV,2015,Adventure,PQube,0,0,0.05,0,0.05 +Keroro Gunsou: Enshuu da Yo! Zenin Shuugou Part 2,DS,2007,Action,Namco Bandai Games,0,0,0.05,0,0.05 +NHL Blades of Steel '99,N64,1999,Sports,Konami Digital Entertainment,0.05,0,0,0,0.05 +Lips: Deutsche Partyknaller,X360,2009,Misc,Microsoft Game Studios,0,0.04,0,0.01,0.05 +Apassionata: Die Galanacht der Pferde,DS,2009,Simulation,RTL,0,0.04,0,0.01,0.05 +Dungeon Raiders,DS,2009,Role-Playing,Focus Home Interactive,0.05,0,0,0,0.05 +Second Sight,GC,2004,Adventure,Codemasters,0.04,0.01,0,0,0.05 +Philosoma,PS,1995,Shooter,Sony Computer Entertainment,0.03,0.02,0,0,0.05 +Virtua Fighter CG Portrait Series Vol.5: Wolf Hawkfield,SAT,1995,Misc,Sega,0,0,0.05,0,0.05 +Puyo Pop,GBA,2001,Puzzle,Sega,0.04,0.01,0,0,0.05 +Marriage Royale: Prism Story,PSP,2010,Adventure,ASCII Media Works,0,0,0.05,0,0.05 +Super Heroine Chronicle,PSV,2014,Role-Playing,Namco Bandai Games,0,0,0.05,0,0.05 +Kamiwaza,PS2,2006,Action,Acquire,0,0,0.05,0,0.05 +Rave Master,GC,2002,Fighting,Konami Digital Entertainment,0,0,0.05,0,0.05 +The Technomancer,PS4,2016,Role-Playing,Focus Home Interactive,0.01,0.03,0,0.01,0.05 +Ben 10 Galactic Racing,PSV,2012,Racing,D3Publisher,0.02,0.02,0,0.01,0.05 +Kinnikuman Muscle Grand Prix Max,PS2,2006,Fighting,Konami Digital Entertainment,0,0,0.05,0,0.05 +Hotel for Dogs,Wii,2009,Simulation,505 Games,0.04,0,0,0,0.05 +Suzuki Super-Bikes II: Riding Challenge,DS,2008,Racing,Valcon Games,0.05,0,0,0,0.05 +Mirror's Edge Catalyst,PC,2016,Platform,Electronic Arts,0.01,0.03,0,0.01,0.05 +Jim Henson's Muppets in Spy Muppets: License to Croak,GBA,2003,Action,TDK Mediactive,0.04,0.01,0,0,0.05 +Medal of Honor: European Assault (weekly JP sales),PS2,2005,Shooter,Electronic Arts,0,0,0.05,0,0.05 +LEGO The Hobbit,PC,2014,Action,Warner Bros. Interactive Entertainment,0,0.04,0,0.01,0.05 +Alias,XB,2004,Action,Acclaim Entertainment,0.04,0.01,0,0,0.05 +Super Robot Taisen Neo,Wii,2009,Strategy,Namco Bandai Games,0,0,0.05,0,0.05 +PAC-MAN and the Ghostly Adventures,WiiU,2013,Platform,Namco Bandai Games,0.04,0.01,0,0,0.05 +ESPN International Winter Sports 2002,GC,2002,Sports,Konami Digital Entertainment,0.04,0.01,0,0,0.05 +Winter Sports 2011,PS3,2011,Sports,DTP Entertainment,0,0.04,0,0.01,0.05 +OutRun 2006: Coast 2 Coast,PS2,2006,Racing,Sega,0.02,0.01,0.01,0,0.05 +Blues Brothers 2000,N64,2000,Platform,Virgin Interactive,0.04,0.01,0,0,0.05 +Metal Max 2 Reloaded,DS,2011,Role-Playing,Unknown,0,0,0.05,0,0.05 +All Star Tennis 99,N64,1999,Sports,Ubisoft,0.04,0.01,0,0,0.05 +Hercules: The Legendary Journeys,N64,2000,Role-Playing,Titus,0.04,0.01,0,0,0.05 +Dual Heroes,N64,1997,Fighting,Hudson Soft,0.04,0.01,0,0,0.05 +Fighter Destiny 2,N64,1999,Fighting,Imagineer,0.04,0.01,0,0,0.05 +Chameleon Twist 2,N64,1998,Platform,Infogrames,0.04,0.01,0,0,0.05 +Nounai Aeshe: IQ Suppli DS 2 - Sukkiri King Ketteisen,DS,2007,Misc,Spike,0,0,0.05,0,0.05 +PachiPara 14: Fuu to Kumo to Super Umi in Okinawa,PS2,2007,Misc,Irem Software Engineering,0,0,0.05,0,0.05 +Winning Post World,PS3,2009,Sports,Tecmo Koei,0,0,0.05,0,0.05 +Arx Fatalis,XB,2003,Role-Playing,Mindscape,0.04,0.01,0,0,0.05 +Slam Dunk SD Heat Up!!,SNES,1995,Sports,Namco Bandai Games,0,0,0.05,0,0.05 +My Body Coach,Wii,2009,Sports,Big Ben Interactive,0,0.04,0,0.01,0.05 +"Steins,Gate 0",PS4,2015,Adventure,PQube,0,0,0.05,0,0.05 +Adventure Time: Finn & Jake Investigations,XOne,2015,Action,Little Orbit,0.02,0.02,0,0,0.05 +Dead in the Water,PS,1999,Action,ASC Games,0.03,0.02,0,0,0.05 +Winning Post 7 2013,PS3,2013,Sports,Tecmo Koei,0,0,0.05,0,0.05 +DiRT 2,PC,2009,Racing,Codemasters,0,0.04,0,0.01,0.05 +Detective Conan: Prelude from the Past,DS,2012,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Dr. Seuss: Green Eggs and Ham,GBA,2003,Action,NewKidCo,0.04,0.01,0,0,0.05 +Sea Monsters: A Prehistoric Adventure,Wii,2007,Adventure,Zushi Games,0.04,0,0,0,0.05 +Atelier Rorona: Alchemist of Arland,PSV,2013,Role-Playing,Nippon Ichi Software,0,0,0.05,0,0.05 +Guilty Gear Dust Strikers,DS,2006,Fighting,Majesco Entertainment,0.05,0,0,0,0.05 +Dark Summit,GC,2002,Sports,THQ,0.04,0.01,0,0,0.05 +Singularity,PC,2010,Shooter,Mastertronic,0,0.04,0,0.01,0.05 +Odoru Daisousasen The Game: Sensuikan ni Sennyuu Seyo!,DS,2010,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +George of the Jungle and the Search for the Secret,DS,2008,Platform,Ignition Entertainment,0.05,0,0,0,0.05 +Turbo Turtle Adventure,GBA,2002,Puzzle,Majesco Entertainment,0.04,0.01,0,0,0.05 +Sengoku Basara 4: Sumeragi,PS4,2015,Action,Capcom,0,0,0.05,0,0.05 +"Warhammer 40,000: Dawn of War",PC,2004,Strategy,THQ,0.01,0.03,0,0.01,0.05 +Shinseiki Evangelion 2: Tsukurareshi Sekai - Another Cases,PSP,2006,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +Hisshou 777 Fighter: Pachi Slot Eiyu Densetsu,SNES,1994,Misc,Vap,0,0,0.05,0,0.05 +Corpse Party: Blood Covered - Repeated Fear,PSP,2010,Adventure,5pb,0,0,0.05,0,0.05 +The Lost Treasures of Alexandria,DS,2011,Puzzle,Unknown,0,0.04,0,0.01,0.05 +Chronicles of the Sword,PS,1996,Adventure,Psygnosis,0.03,0.02,0,0,0.05 +Hail to the Chimp,PS3,2008,Misc,Gamecock,0.05,0,0,0,0.05 +The Lost Vikings,GBA,2003,Puzzle,Activision,0.04,0.01,0,0,0.05 +Keiba Eight Special,SNES,1993,Sports,Misawa,0,0,0.05,0,0.05 +Yaiba: Ninja Gaiden Z,X360,2014,Action,Tecmo Koei,0.03,0.02,0,0,0.05 +Harukanaru Toki no Naka de 3,PS2,2004,Adventure,Tecmo Koei,0,0,0.05,0,0.05 +Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.,GC,2005,Platform,Global Star,0.04,0.01,0,0,0.05 +Need for Speed Carbon,PC,2006,Racing,Electronic Arts,0,0.04,0,0.01,0.05 +Reel Fishing: The Great Outdoors,PSP,2006,Sports,Natsume,0.05,0,0,0,0.05 +Assassin's Creed: Altair's Chronicles,DS,2008,Platform,Ubisoft,0.03,0.01,0,0,0.05 +Pirates vs Ninja Dodgeball,Wii,2009,Sports,SouthPeak Games,0.05,0,0,0,0.05 +Guild 01,3DS,2012,Action,Level 5,0,0,0.05,0,0.05 +The History Channel: Great Battles - Medieval,PS3,,Strategy,Slitherine Software,0,0.04,0,0.01,0.05 +Nike+ Kinect Training,X360,2012,Sports,Microsoft Game Studios,0.02,0.02,0,0,0.05 +Durarara!! 3-way Standoff,PSP,2010,Adventure,ASCII Media Works,0,0,0.05,0,0.05 +Ty the Tasmanian Tiger 3: Night of the Quinkan,GBA,2005,Action,Zoo Digital Publishing,0.04,0.01,0,0,0.05 +Cartoon Network Racing,DS,2006,Action,Game Factory,0.04,0,0,0,0.05 +Tokimeki Memorial Girl's Side 2nd Kiss,PS2,2006,Adventure,Konami Digital Entertainment,0,0,0.05,0,0.05 +Fushigi no Dungeon: Fuurai no Shiren 3 Portable,PSP,2010,Role-Playing,Spike,0,0,0.05,0,0.05 +Active Life: Magical Carnival,Wii,2011,Misc,Namco Bandai Games,0.04,0.01,0,0,0.05 +Hokuto no Ken,PS2,2007,Fighting,Sega,0,0,0.05,0,0.05 +Yu-Gi-Oh! GX: Spirit Caller (Japan Sales),DS,2006,Misc,Konami Digital Entertainment,0,0,0.05,0,0.05 +Stretch Panic,PS2,2001,Platform,Midas Interactive Entertainment,0.02,0.02,0,0.01,0.05 +Empire Earth,PC,2001,Strategy,Vivendi Games,0,0.04,0,0.01,0.05 +Chousoku Henkei Gyrozetter: Albatross no Tsubasa,3DS,2013,Role-Playing,Square Enix,0,0,0.05,0,0.05 +Baku Baku,SAT,1995,Puzzle,Sega,0,0,0.05,0,0.05 +Pro Cycling Manager 2016,PS4,2016,Sports,Focus Home Interactive,0,0.04,0,0.01,0.05 +SD Gundam: Over Galaxian,PS,1996,Shooter,Namco Bandai Games,0,0,0.05,0,0.05 +Rogue Ops,GC,2003,Action,Kemco,0.04,0.01,0,0,0.05 +Smart Kid's Party Fun Pak,DS,2008,Misc,UFO Interactive,0.05,0,0,0,0.05 +MXGP 2,XOne,2016,Racing,Milestone S.r.l.,0.02,0.02,0,0,0.05 +Virtua Tennis 3,X360,2007,Sports,Sega,0.03,0.02,0,0,0.05 +BeatMania IIDX 3rd Style,PS2,2000,Simulation,Konami Digital Entertainment,0,0,0.05,0,0.05 +Yu-Gi-Oh! World Championship 2007,DS,2007,Strategy,Konami Digital Entertainment,0,0.01,0.04,0,0.05 +Hummer Badlands,PS2,2006,Racing,Global Star,0.02,0.02,0,0.01,0.05 +Freelancer,PC,2003,Simulation,Microsoft Game Studios,0.02,0.02,0,0.01,0.05 +Woody Woodpecker: Escape from Buzz Buzzard Park,PS2,2001,Platform,DreamCatcher Interactive,0.02,0.02,0,0.01,0.05 +Operation Flashpoint: Dragon Rising,PC,2009,Shooter,Codemasters,0.01,0.03,0,0.01,0.05 +"Lupin III: Lupin ni wa Shi o, Zenigata ni wa Koi o",PS2,2007,Adventure,505 Games,0,0,0.05,0,0.05 +Furu Furu Park,Wii,2007,Misc,Taito,0.05,0,0,0,0.05 +Monster Band,DS,2008,Misc,Tivola,0.04,0,0,0,0.05 +Alter Echo,XB,2003,Shooter,THQ,0.04,0.01,0,0,0.05 +BeatMania IIDX 4th Style: New Songs Collection,PS2,2001,Simulation,Konami Digital Entertainment,0,0,0.05,0,0.05 +Fushigi? Kagaku: Nazotoki Quiz Training - NazoTore,DS,2008,Misc,Benesse,0,0,0.05,0,0.05 +G1 Grand Prix,3DS,2012,Action,Genki,0,0,0.05,0,0.05 +LEGO Indiana Jones 2: The Adventure Continues,PC,2009,Action,Activision,0.02,0.03,0,0.01,0.05 +QUIZ PARTY,Wii,2012,Misc,Nintendo,0,0.05,0,0,0.05 +MTX Mototrax,PSP,2006,Racing,Activision,0.04,0,0,0,0.05 +Around the World in 80 Days,GBA,2004,Action,Hip Interactive,0.03,0.01,0,0,0.05 +Houkago Shounen,DS,2008,Misc,Konami Digital Entertainment,0,0,0.05,0,0.05 +The Grim Adventures of Billy & Mandy,Wii,2006,Action,Midway Games,0.04,0,0,0,0.05 +Classic Dungeon X2,PSP,2011,Role-Playing,Nippon Ichi Software,0,0,0.05,0,0.05 +Whirl Tour,GC,2002,Sports,Vivendi Games,0.04,0.01,0,0,0.05 +Sesame Street: Cookie's Counting Carnival,PC,2010,Misc,Warner Bros. Interactive Entertainment,0.05,0,0,0,0.05 +Pinball Tycoon,GBA,2002,Misc,Ignition Entertainment,0.03,0.01,0,0,0.05 +Major League Baseball 2K11,PS2,2011,Sports,Take-Two Interactive,0.02,0.02,0,0.01,0.05 +Cartoon Network Block Party,GBA,2004,Misc,Majesco Entertainment,0.03,0.01,0,0,0.05 +Power Spike Pro Beach Volleyball,PS,2000,Sports,Infogrames,0.03,0.02,0,0,0.05 +White Album: Tsuzurareru Fuyu no Omoide,PS3,2010,Adventure,Aqua Plus,0,0,0.05,0,0.05 +Harukanaru Toki no Naka de: Yumenoukihashi,DS,2008,Adventure,Tecmo Koei,0,0,0.05,0,0.05 +Shinseiki Evangelion- Eva: Yukai na Nakama Tachi,PS,1998,Misc,Gainax Network Systems,0,0,0.05,0,0.05 +SD Gundam: Scad Hammers,Wii,2006,Strategy,Namco Bandai Games,0,0,0.05,0,0.05 +Spitfire Heroes: Tales of the Royal Air Force,DS,2008,Simulation,Destineer,0.05,0,0,0,0.05 +Super Bust-A-Move,GBA,2001,Puzzle,Ubisoft,0.03,0.01,0,0,0.05 +TNA iMPACT: Cross the Line,DS,2010,Fighting,SouthPeak Games,0.05,0,0,0,0.05 +Adventure Time: Explore the Dungeon Because I Don't Know!,PS3,2013,Action,D3Publisher,0.02,0.02,0,0.01,0.05 +ZooCube,GBA,2002,Puzzle,Acclaim Entertainment,0.03,0.01,0,0,0.05 +Stunt GP,PS2,2001,Racing,Titus,0.02,0.02,0,0.01,0.05 +Wicked Monster Blast!,Wii,2011,Shooter,PQube,0.04,0,0,0,0.05 +NBA 2K,DC,1999,Sports,Sega,0,0,0.05,0,0.05 +D.Gray-man: Kami no Shitotachi,DS,2007,Adventure,Konami Digital Entertainment,0,0,0.05,0,0.05 +Bladestorm: Nightmare,XOne,2015,Action,Tecmo Koei,0.03,0.02,0,0,0.05 +Strikers 1945,SAT,1996,Shooter,Atlus,0,0,0.05,0,0.05 +World Series of Poker,GC,2005,Misc,Activision Value,0.04,0.01,0,0,0.05 +Jikkyou Oshaberi Parodius,SNES,1995,Shooter,Konami Digital Entertainment,0,0,0.05,0,0.05 +Super Jinsei Game 2,SNES,1995,Misc,Takara,0,0,0.05,0,0.05 +Winter Sports 3: The Great Tournament,Wii,2010,Sports,Tradewest,0.02,0.02,0,0,0.05 +J-League Winning Eleven 2010: Club Championship,PS2,2010,Sports,Konami Digital Entertainment,0,0,0.05,0,0.05 +Johnny Bazookatone,PS,1995,Platform,U.S. Gold,0.03,0.02,0,0,0.05 +Beastly Frantic Foto,DS,2011,Puzzle,Storm City Games,0.04,0,0,0,0.05 +Neverland Card Battles,PSP,2008,Role-Playing,Idea Factory,0.04,0,0,0.01,0.05 +Need for Speed Underground,PC,2003,Racing,Electronic Arts,0,0.04,0,0.01,0.05 +Downtown no Gaki no Tsukai Yaarahen de!! Zettai ni Tsukamatte Haikenai Gasu Kurobikari Land,3DS,2015,Action,Alchemist,0,0,0.05,0,0.05 +Reign of Fire,GBA,2002,Shooter,BAM! Entertainment,0.03,0.01,0,0,0.05 +Worms Reloaded,PC,2010,Strategy,Team17 Software,0,0.04,0,0.01,0.05 +StarCraft,PC,1998,Strategy,Activision,0,0.04,0,0.01,0.05 +Koihime Musou,PS2,2008,Adventure,Yeti,0,0,0.05,0,0.05 +Nicktoons: Attack of the Toybots,DS,2007,Platform,THQ,0.04,0,0,0,0.05 +NBA 2K17,PS3,2016,Sports,Take-Two Interactive,0.03,0.01,0,0.01,0.05 +Blazing Souls: Accelate,PSP,2009,Role-Playing,Idea Factory,0.04,0,0.01,0,0.05 +Ms Saga: A New Dawn,PS2,2005,Role-Playing,Namco Bandai Games,0.02,0.02,0,0.01,0.05 +Kekkon Zenya,SAT,1995,Adventure,Shogakukan,0,0,0.05,0,0.05 +Finny the Fish & the Seven Waters,PS2,2004,Sports,Sony Computer Entertainment,0.02,0.02,0,0.01,0.05 +Barnyard,GBA,2006,Action,THQ,0.03,0.01,0,0,0.05 +Next Generation of Chaos,PS2,2002,Role-Playing,Idea Factory,0,0,0.05,0,0.05 +Katekyoo Hitman Reborn! DS: Bongole Shiki Taisen Battle Sugoroku,DS,2008,Misc,Takara Tomy,0,0,0.05,0,0.05 +GrimGrimoire,PS2,2007,Strategy,Tecmo Koei,0.01,0.01,0.03,0,0.05 +J-League '96 Dream Stadium,SNES,1996,Sports,Hudson Soft,0,0,0.05,0,0.05 +Capcom vs. SNK: Millennium Fight 2000 Pro,DC,2001,Fighting,Capcom,0,0,0.05,0,0.05 +Golden Axe: The Duel,SAT,1994,Fighting,Sega,0,0,0.05,0,0.05 +Crime Life: Gang Wars,XB,2005,Action,Konami Digital Entertainment,0.04,0.01,0,0,0.05 +Tokimeki Memorial: Girls Side 1st Love,DS,2007,Adventure,Konami Digital Entertainment,0,0,0.05,0,0.05 +Putty Squad,PSV,2013,Platform,System 3,0.02,0.02,0,0.01,0.05 +Rugby 2005,XB,2005,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Rock 'N Roll Racing,GBA,2003,Racing,Activision,0.03,0.01,0,0,0.05 +Taito Legends,XB,2005,Misc,Empire Interactive,0.04,0.01,0,0,0.05 +Far Cry,PC,2004,Shooter,Ubisoft,0,0.04,0,0.01,0.05 +Silhouette Mirage,PS,1998,Platform,ESP,0.03,0.02,0,0,0.05 +Dynasty Warriors Vol. 2,PSP,2006,Action,Tecmo Koei,0.04,0,0,0,0.05 +Treasure Report: Kikai Jikake no Isan,DS,2011,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +Growlanser VI: Precarious World,PS2,2007,Role-Playing,Atlus,0,0,0.05,0,0.05 +Block Kuzushi,SNES,1995,Puzzle,Pow,0,0,0.05,0,0.05 +Boing! Docomodake DS,DS,2007,Puzzle,Ignition Entertainment,0.04,0,0,0,0.05 +American Bass Challenge,GBA,2001,Sports,Starfish,0.03,0.01,0,0,0.05 +American Chopper 2: Full Throttle,GC,2005,Racing,Activision,0.04,0.01,0,0,0.05 +Secret Service,X360,2008,Action,Activision Value,0.04,0,0,0,0.05 +Sword Art Online: Game Director's Edition,PS4,2015,Role-Playing,Namco Bandai Games,0,0,0.05,0,0.05 +Ultimate Ghosts 'n Goblins (JP sales),PSP,2006,Platform,Capcom,0,0,0.05,0,0.05 +Rugby 06,PS2,2006,Sports,Electronic Arts,0.02,0.02,0,0.01,0.05 +Fatal Frame II: Crimson Butterfly Director's Cut,XB,2004,Action,Microsoft Game Studios,0.04,0.01,0,0,0.05 +Deadliest Catch: Alaskan Storm,X360,2008,Sports,Navarre Corp,0.04,0,0,0,0.05 +2002 FIFA World Cup,GC,2002,Sports,Electronic Arts,0.04,0.01,0,0,0.05 +Colin McRae Rally 2005,XB,2004,Racing,Codemasters,0.04,0.01,0,0,0.05 +Kamen Rider: Battride War Genesis,PSV,2016,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Venus & Braves: Majo to Megami to Horobi no Yogen,PSP,2011,Role-Playing,Namco Bandai Games,0,0,0.05,0,0.05 +Ship Simulator Extremes,PC,2010,Simulation,Paradox Interactive,0,0.04,0,0.01,0.05 +Zoop,PS,1995,Puzzle,MediaQuest,0.03,0.02,0,0,0.05 +Powerful Golf,DS,2011,Sports,Konami Digital Entertainment,0,0,0.05,0,0.05 +Saiyuki: Journey West,PS,1999,Strategy,Tecmo Koei,0.03,0.02,0,0,0.05 +Detective Conan: Marionette Symphony,3DS,2013,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +FIFA Soccer 10,PC,2009,Sports,Electronic Arts,0,0.04,0,0.01,0.05 +Amnesia Crowd,PSP,2013,Misc,Idea Factory,0,0,0.05,0,0.05 +American Chopper 2: Full Throttle,XB,2005,Racing,Zoo Digital Publishing,0.04,0.01,0,0,0.05 +Pachitte Chonmage Tatsujin 15: Pachinko Fuyu no Sonata 2,PS2,2008,Misc,Hackberry,0,0,0.05,0,0.05 +Monster Hunter Frontier Online,PS3,,Role-Playing,,0,0,0.05,0,0.05 +Ribbit King,GC,2003,Sports,Atari,0.04,0.01,0,0,0.05 +VR Soccer '96,PS,1996,Sports,Gremlin Interactive Ltd,0.03,0.02,0,0,0.05 +Smash Court Tennis 3,PSP,2007,Sports,Namco Bandai Games,0.01,0.01,0.01,0.01,0.05 +Diabolik Lovers,PSP,2012,Adventure,Idea Factory,0,0,0.05,0,0.05 +Shugo Chara! 3-tsu no Tamagoto Koisuru Joker,DS,2008,Action,Konami Digital Entertainment,0,0,0.05,0,0.05 +Summoner: A Goddess Reborn,GC,2003,Role-Playing,THQ,0.04,0.01,0,0,0.05 +Saints Row: Gat out of Hell,PS4,2015,Action,Deep Silver,0,0.04,0,0.01,0.05 +Rock of the Dead,PS3,2010,Shooter,Conspiracy Entertainment,0.04,0,0,0,0.05 +The Sims,PC,2000,Simulation,Electronic Arts,0.01,0.03,0,0.01,0.05 +Wasteland 2,XOne,2015,Role-Playing,Deep Silver,0.04,0.01,0,0,0.05 +Cesar Millan's Dog Whisperer,DS,2008,Simulation,Ubisoft,0.04,0,0,0,0.05 +E.X. Troopers,PS3,2012,Shooter,Capcom,0,0,0.05,0,0.05 +Kiniro no Corda 2 Encore,PS2,2007,Role-Playing,Tecmo Koei,0,0,0.05,0,0.05 +Jewel Quest Mysteries,DS,2009,Puzzle,Astragon,0.03,0.01,0,0,0.05 +Moon,DS,2009,Adventure,Mastiff,0.04,0,0,0,0.05 +M&M's Adventure,DS,2008,Adventure,Zoo Digital Publishing,0.04,0,0,0,0.05 +ESPN Great Outdoor Games Bass 2002,GBA,2001,Sports,Konami Digital Entertainment,0.03,0.01,0,0,0.05 +Soul Eater: Plot of Medusa,DS,2008,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Payday 2,PC,2013,Shooter,505 Games,0.04,0,0,0,0.05 +Grand Ages: Medieval,PC,2015,Strategy,Kalypso Media,0,0.04,0,0,0.05 +Handball 16,PS3,2015,Sports,Bigben Interactive,0,0.04,0,0.01,0.05 +Gummy Bears Mini Golf,DS,2010,Sports,Storm City Games,0.04,0,0,0,0.05 +Company of Heroes,PC,2006,Strategy,THQ,0,0.04,0,0.01,0.05 +Rock Band Country Track Pack 2,X360,2011,Misc,MTV Games,0.04,0,0,0,0.05 +Color Cross,DS,2008,Misc,Rising Star Games,0.04,0,0,0,0.05 +Gaist Crusher,3DS,2013,Action,Capcom,0,0,0.05,0,0.05 +Punch King,GBA,2002,Fighting,Acclaim Entertainment,0.03,0.01,0,0,0.05 +Silent Hunter: Wolves of the Pacific,PC,2007,Simulation,Ubisoft,0,0.04,0,0.01,0.05 +World Championship Pool 2004,PS2,2004,Sports,Jaleco,0.02,0.02,0,0.01,0.05 +V-Rally 3,GBA,2002,Racing,Atari,0.03,0.01,0,0,0.05 +The Dark Spire,DS,2008,Role-Playing,Success,0.04,0,0,0,0.05 +Kakuto Chojin,XB,2002,Fighting,Microsoft Game Studios,0.04,0.01,0,0,0.05 +Beyond Oasis,GEN,1993,Role-Playing,Sega,0,0,0.05,0,0.05 +Forza Motorsport 3: Ultimate Edition,X360,2010,Racing,Microsoft Game Studios,0,0.04,0,0.01,0.05 +Robotech: Invasion,XB,2004,Shooter,Global Star,0.04,0.01,0,0,0.05 +Wii de Asobu Chibi-Robo!,Wii,2009,Adventure,Nintendo,0,0,0.05,0,0.05 +Romance of the Three Kingdoms VI: Awakening of the Dragon,PS,1998,Strategy,Tecmo Koei,0.03,0.02,0,0,0.05 +To Heart 2 DX Plus,PS3,2011,Adventure,Aqua Plus,0,0,0.05,0,0.05 +Star Driver: Kagayaki no Takuto - Ginga Bishounen Densetsu,PSP,2011,Adventure,Namco Bandai Games,0,0,0.05,0,0.05 +Naruto: Uzumaki Chronicles 2 (JP sales),PS2,2006,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Frogger: Ancient Shadow,GC,2005,Platform,Konami Digital Entertainment,0.04,0.01,0,0,0.05 +Snoopy vs the Red Baron,PSP,2006,Adventure,Namco Bandai Games,0.04,0,0,0,0.05 +Jonah Lomu Rugby Challenge,PC,2011,Sports,Home Entertainment Suppliers,0,0.04,0,0.01,0.05 +Pet Vet: Down Under,DS,2009,Simulation,Deep Silver,0.04,0,0,0,0.05 +World Series of Poker: Tournament of Champions 2007 Edition,Wii,2006,Misc,Activision,0.04,0,0,0,0.05 +National Geographic Challenge!,PS3,2011,Misc,Black Bean Games,0.01,0.03,0,0.01,0.05 +Raze's Hell,XB,2005,Shooter,Majesco Entertainment,0.04,0.01,0,0,0.05 +Rain (2013),PS3,2013,Adventure,Sony Computer Entertainment,0,0,0.05,0,0.05 +Billy the Wizard: Rocket Broomstick Racing,Wii,2007,Racing,Metro 3D,0.04,0,0,0,0.05 +Pool Party,Wii,2007,Sports,SouthPeak Games,0.04,0,0,0,0.05 +Microsoft Train Simulator,PC,2001,Simulation,Microsoft Game Studios,0,0.04,0,0.01,0.05 +Shin Megami Tensei NINE,XB,2002,Role-Playing,Atlus,0,0,0.05,0,0.05 +Magic Carpet,PS,1995,Shooter,Electronic Arts,0.03,0.02,0,0,0.05 +Hoshigami: Ruining Blue Earth,PS,2001,Role-Playing,Max Five,0.03,0.02,0,0,0.05 +GunPey DS,DS,2006,Puzzle,Atari,0.04,0,0,0,0.05 +Cabela's African Safari,PSP,2006,Sports,Activision Value,0.04,0,0,0,0.05 +Wing Island,Wii,2006,Simulation,Konami Digital Entertainment,0.03,0.01,0.01,0,0.05 +Utawarerumono: Itsuwari no Kamen,PS3,2015,Adventure,Aqua Plus,0,0,0.05,0,0.05 +Clever Kids: Creepy Crawlies,DS,2009,Action,Midas Interactive Entertainment,0,0.04,0,0,0.05 +Supreme Commander,PC,2007,Strategy,THQ,0,0.04,0,0.01,0.05 +NightCaster II: Equinox,XB,2002,Action,Jaleco,0.03,0.01,0,0,0.05 +F1 2015,PC,2015,Racing,Codemasters,0,0.04,0,0,0.05 +SD Gundam G Generation World,Wii,2011,Strategy,Namco Bandai Games,0,0,0.05,0,0.05 +Chocobo to Mahou no Ehon: Majo to Shoujo to 5-Jin no Yuusha,DS,2008,Role-Playing,Square Enix,0,0,0.05,0,0.05 +Galaxy Racers,DS,2010,Racing,Ubisoft,0.04,0,0,0,0.05 +Wonder World Amusement Park,Wii,2008,Misc,Majesco Entertainment,0.04,0,0,0,0.05 +Bubble Bobble Revolution,DS,2005,Puzzle,Atari,0.04,0,0,0,0.05 +Game of Thrones (Telltale),PS4,2015,Adventure,Telltale Games,0.04,0,0,0.01,0.05 +Time Crisis: Project Titan,PS,2001,Shooter,Namco Bandai Games,0.03,0.02,0,0,0.05 +Ys: The Ark of Napishtim,PSP,2006,Role-Playing,Konami Digital Entertainment,0.04,0,0,0,0.05 +Ore-Sama Kingdom: Koi no Manga mo Debut o Mokushise! Doki Doki Love Lesson,DS,2011,Action,Namco Bandai Games,0,0,0.05,0,0.05 +Crusader: No Remorse,PS,1996,Adventure,Electronic Arts,0.03,0.02,0,0,0.05 +Black & Bruised,GC,2003,Fighting,Vivendi Games,0.04,0.01,0,0,0.05 +MiniCopter: Adventure Flight,Wii,2007,Simulation,505 Games,0.04,0,0,0,0.05 +Shaun the Sheep,DS,2008,Adventure,D3Publisher,0.04,0,0,0,0.05 +Fast & Furious: Showdown,X360,2013,Action,Activision,0,0.04,0,0,0.05 +World Championship Poker: Featuring Howard Lederer - All In,X360,2006,Misc,Oxygen Interactive,0.04,0,0,0,0.05 +Test Drive: Ferrari Legends,X360,2012,Racing,Atari,0.04,0,0,0,0.05 +Tom Clancy's Rainbow Six: Lockdown,GC,2005,Shooter,Ubisoft,0.04,0.01,0,0,0.05 +FIFA Manager 12,PC,2011,Sports,Electronic Arts,0,0.03,0,0.01,0.05 +Full Spectrum Warrior: Ten Hammers,XB,2006,Strategy,THQ,0.03,0.01,0,0,0.05 +River City Soccer Hooligans,DS,2010,Sports,Arc System Works,0.04,0,0.01,0,0.05 +Shin Hayarigami,PSV,2014,Adventure,Nippon Ichi Software,0,0,0.05,0,0.05 +TMNT,DS,2007,Action,Ubisoft,0.03,0.01,0,0,0.05 +Turok: Dinosaur Hunter,N64,1997,Shooter,Acclaim Entertainment,0,0,0.05,0,0.05 +Puyo Puyo Tetris,PSV,2014,Puzzle,Sega,0,0,0.05,0,0.05 +Taiko no Tatsujin Portable 2,PSP,2006,Misc,Namco Bandai Games,0,0,0.05,0,0.05 +Gitaroo Man,PS2,2001,Misc,THQ,0.02,0.02,0,0.01,0.05 +Super Bubble Pop,GC,2003,Puzzle,Jaleco,0.04,0.01,0,0,0.05 +Mafia,PC,2002,Action,Take-Two Interactive,0,0.04,0,0.01,0.05 +Rapala Fishing Frenzy 2009,X360,2008,Sports,Activision,0.04,0,0,0,0.05 +Ride to Hell,PS3,2013,Racing,Deep Silver,0.02,0.02,0,0.01,0.05 +Arctic Tale,Wii,2007,Adventure,Zoo Digital Publishing,0.04,0,0,0,0.05 +Balloon Pop,Wii,2007,Puzzle,505 Games,0.04,0,0,0,0.05 +XBLAZE Code: Embryo,PSV,2013,Adventure,Arc System Works,0.03,0,0.01,0.01,0.05 +Black Mirror 2,PC,2009,Adventure,DTP Entertainment,0,0.04,0,0.01,0.05 +Time Travelers,PSV,2012,Adventure,Level 5,0,0,0.05,0,0.05 +Amnesia Later,PSP,2012,Misc,Idea Factory,0,0,0.05,0,0.05 +B-Boy,PSP,2006,Misc,Sony Computer Entertainment,0.04,0,0,0,0.05 +Cocoto Kart Racer,DS,2004,Racing,Big Ben Interactive,0.04,0,0,0,0.05 +Shin Kamaitachi no Yoru: 11 Hitome no Suspect,PSV,2011,Adventure,ChunSoft,0,0,0.05,0,0.05 +Intellivision Lives!,XB,2004,Misc,Crave Entertainment,0.03,0.01,0,0,0.05 +Crazy Chicken: Atlantis Quest,DS,2007,Platform,Phenomedia,0.04,0,0,0,0.05 +Test Drive Le Mans,PS,1999,Racing,Infogrames,0.03,0.02,0,0,0.05 +Counter Force,Wii,2007,Shooter,505 Games,0.04,0,0,0,0.05 +Monster Jam: Maximum Destruction,GC,2002,Racing,Ubisoft,0.04,0.01,0,0,0.05 +Professor Heinz Wolff's Gravity,DS,2008,Puzzle,Deep Silver,0.04,0,0,0,0.05 +Fantastic Four: Rise of the Silver Surfer,Wii,2007,Action,Take-Two Interactive,0.04,0.01,0,0,0.05 +Big Air Freestyle,GC,2002,Racing,Atari,0.04,0.01,0,0,0.05 +Rimo-Cocoron,PS2,2001,Action,Sony Computer Entertainment,0,0,0.05,0,0.05 +Rugby World Cup 2015,X360,2015,Sports,Ubisoft,0,0.04,0,0,0.05 +Mike Tyson Heavyweight Boxing,XB,2002,Sports,Codemasters,0.03,0.01,0,0,0.05 +To Love-Ru Trouble Darkness: Battle Ecstasy,PSV,2014,Action,FuRyu,0,0,0.05,0,0.05 +The Berenstain Bears and the Spooky Old Tree,GBA,2005,Platform,Namco Bandai Games,0.03,0.01,0,0,0.05 +Lux-Pain,DS,2008,Adventure,Rising Star Games,0.04,0,0,0,0.05 +Ford Bold Moves Street Racing,PSP,2006,Racing,Xplosiv,0.04,0,0,0,0.05 +Cabela's Trophy Bucks,X360,2007,Sports,Activision Value,0.04,0,0,0,0.05 +Hakuouki: Bakumatsu Musou Roku,PSP,2012,Action,Idea Factory,0,0,0.05,0,0.05 +Mahjong 3D: Warriors of the Emperor,3DS,2011,Misc,DTP Entertainment,0,0.04,0,0.01,0.05 +Hiiro no Kakera DS,DS,2008,Adventure,Idea Factory,0,0,0.05,0,0.05 +March of the Penguins,DS,2006,Adventure,Zoo Digital Publishing,0.04,0,0,0,0.05 +Rock of the Dead,X360,2010,Shooter,Conspiracy Entertainment,0.04,0,0,0,0.05 +Arcana Famiglia: La storia della Aracana Famiglia,PSP,2011,Adventure,Comfort,0,0,0.05,0,0.05 +Tokyo Ghoul: Jail,PSV,2015,Racing,Namco Bandai Games,0,0,0.05,0,0.05 +City Life: World Edition,PC,2007,Simulation,Monte Christo Multimedia,0,0.04,0,0.01,0.05 +The Misadventures of Tron Bonne,PS,1999,Adventure,Eidos Interactive,0.03,0.02,0,0,0.05 +Centipede: Infestation,3DS,2011,Shooter,Atari,0.04,0,0,0,0.05 +Wolfenstein,PC,2009,Shooter,Activision,0.01,0.03,0,0.01,0.05 +Hero Bank 2,3DS,2014,Role-Playing,Sega,0,0,0.05,0,0.05 +Atelier Ayesha: The Alchemist of Dusk,PSV,2014,Role-Playing,Tecmo Koei,0,0,0.05,0,0.05 +Brave Story: New Traveller (jp sales),PSP,2006,Role-Playing,Sony Computer Entertainment,0,0,0.05,0,0.05 +Black Jack vs. Matsudajun,PS,2000,Misc,Pony Canyon,0.03,0.02,0,0,0.05 +Arslan: The Warriors of Legend,PS3,2015,Action,Tecmo Koei,0,0,0.05,0,0.05 +SpongeBob SquarePants: Plankton's Robotic Revenge,X360,2013,Shooter,Activision,0.04,0,0,0,0.05 +Wrath Unleashed,XB,2004,Strategy,LucasArts,0.03,0.01,0,0,0.05 +Yoru no Nai Kuni,PS3,2015,Role-Playing,Tecmo Koei,0,0,0.05,0,0.05 +Garou Densetsu 3: Road to the Final Victory,SAT,1996,Fighting,SNK,0,0,0.05,0,0.05 +Bleach: Soul Carnival,PSP,2008,Fighting,Sony Computer Entertainment,0,0,0.05,0,0.05 +Double Dragon Advance,GBA,2003,Action,Atlus,0.03,0.01,0,0,0.05 +Sesame Street: Elmo's A-to-Zoo Adventure,PC,2010,Misc,Warner Bros. Interactive Entertainment,0.04,0,0,0,0.05 +Family Fortunes,DS,2009,Misc,Mindscape,0,0.04,0,0,0.05 +The Bible Game,XB,2005,Misc,Crave Entertainment,0.03,0.01,0,0,0.05 +Inspector Gadget: Gadget's Crazy Maze,PS,2001,Puzzle,Ubisoft,0.03,0.02,0,0,0.05 +World Fantasista,PS2,2002,Sports,SquareSoft,0,0,0.05,0,0.05 +Yager,XB,2003,Shooter,THQ,0.03,0.01,0,0,0.05 +Fantastic Four: Rise of the Silver Surfer,DS,2007,Action,Take-Two Interactive,0.04,0,0,0,0.05 +Tabi no Yubisashi Kaiwachou DS: DS Series 1 Thai,DS,2006,Misc,Nintendo,0,0,0.05,0,0.05 +Toukiden Kiwami,PSP,2014,Action,Tecmo Koei,0,0,0.05,0,0.05 +Grey's Anatomy: The Video Game,DS,2009,Adventure,Ubisoft,0.03,0.01,0,0,0.05 +Tropico 3,PC,2009,Strategy,Kalypso Media,0,0.04,0,0.01,0.05 +Looney Tunes: Cartoon Conductor,DS,2008,Misc,Eidos Interactive,0.04,0,0,0,0.05 +Avatar: The Game,PC,2009,Action,Ubisoft,0,0.04,0,0.01,0.05 +Futurama,XB,2003,Platform,SCi,0.03,0.01,0,0,0.05 +Pool Hall Pro,Wii,2009,Sports,Playlogic Game Factory,0.04,0,0,0,0.05 +Nazo Waku Yakata: Oto no Ma ni Ma ni,3DS,2011,Misc,Capcom,0,0,0.05,0,0.05 +Choro Q 64 2: Hacha Mecha Grand Prix Race,N64,1999,Racing,Takara,0,0,0.05,0,0.05 +Mighty No. 9,PS4,2016,Platform,Deep Silver,0.04,0,0,0.01,0.05 +Plants vs. Zombies: Garden Warfare 2,PC,2016,Shooter,Electronic Arts,0,0.04,0,0,0.05 +Ape Escape,PS3,2010,Platform,Sony Computer Entertainment,0,0.03,0,0.01,0.05 +Activision Anthology,GBA,2003,Misc,Activision,0.03,0.01,0,0,0.05 +Gray Matter,X360,2011,Adventure,DTP Entertainment,0,0.04,0,0.01,0.05 +Thrillville: Off the Rails,DS,2007,Strategy,LucasArts,0.03,0.01,0,0,0.05 +LEGO Friends,3DS,2013,Action,Warner Bros. Interactive Entertainment,0,0.04,0,0,0.05 +Secret Files: Tunguska,PC,2006,Adventure,DreamCatcher Interactive,0,0.04,0,0.01,0.05 +Wayne Gretzky's 3D Hockey '98,PS,1997,Sports,GT Interactive,0.03,0.02,0,0,0.05 +Nanda's Island,DS,2009,Puzzle,Phenomedia,0.04,0,0,0,0.05 +Hakuouki SSL: Sweet School Life,PSV,2014,Adventure,Idea Factory,0,0,0.05,0,0.05 +Trigger Man,XB,2004,Shooter,Crave Entertainment,0.03,0.01,0,0,0.05 +Kimi ni Todoke: Tsutaeru Kimochi,DS,2011,Adventure,Banpresto,0,0,0.05,0,0.05 +Nora to Koku no Koubou: Kiri no Mori no Majo,DS,2011,Role-Playing,Atlus,0,0,0.05,0,0.05 +Bad Boys: Miami Takedown,GC,2004,Shooter,Empire Interactive,0.03,0.01,0,0,0.05 +SpongeBob SquarePants: Plankton's Robotic Revenge,WiiU,2013,Shooter,Activision,0,0.04,0,0,0.05 +Short Track Racing: Trading Paint,PS2,2009,Racing,THQ,0.02,0.02,0,0.01,0.05 +Game no Kanzume Vol 1,SCD,1994,Misc,Sega,0,0,0.04,0,0.05 +Rat Attack!,PS,1999,Puzzle,Mindscape,0.03,0.02,0,0,0.04 +Jewel Master: Cradle Of Rome 2,PC,2011,Puzzle,Rising Star Games,0,0.04,0,0.01,0.04 +National Geographic Panda (US sales),DS,2008,Simulation,Ubisoft,0.04,0,0,0,0.04 +Sushi Go-Round,DS,2010,Simulation,Asylum Entertainment,0.04,0,0,0,0.04 +Danny Phantom: Urban Jungle,DS,2006,Action,THQ,0.04,0,0,0,0.04 +Sotsugyou II: Neo Generation,PS,1995,Simulation,Riverhillsoft,0,0,0.04,0,0.04 +Summon Night Craft Sword Monogatari: Hajimari no Ishi,GBA,2005,Role-Playing,Banpresto,0,0,0.04,0,0.04 +The King of Fighters 2002: Unlimited Match,PS2,2009,Fighting,SNK Playmore,0,0,0.04,0,0.04 +Art of Fighting Anthology,PS2,2006,Fighting,Crave Entertainment,0.02,0.02,0,0.01,0.04 +Rapala Trophies,PSP,2006,Sports,Activision,0.04,0,0,0,0.04 +Phoenix Wright: Revived Turnabout,DS,2008,Misc,Capcom,0,0,0.04,0,0.04 +Mana Khemia: Alchemists of Al-Revis (JP sales),PS2,2007,Role-Playing,Nippon Ichi Software,0,0,0.04,0,0.04 +Runaway: A Twist of Fate,PC,2009,Adventure,Focus Home Interactive,0,0.04,0,0.01,0.04 +Cheer We Go!,DS,2010,Misc,Natsume,0.04,0,0,0,0.04 +The Tale of Despereaux,Wii,2008,Platform,Brash Entertainment,0.04,0,0,0,0.04 +The Hustle: Detroit Streets,PS2,2006,Sports,Activision,0.02,0.02,0,0.01,0.04 +Virtua Fighter CG Portrait Series Vol.6: Lau Chan,SAT,1995,Misc,Sega,0,0,0.04,0,0.04 +Tomoyo After: It's a Wonderful Life CS Edition,PSP,2009,Adventure,Prototype,0,0,0.04,0,0.04 +Guilty Gear XX Accent Core,PS2,2007,Fighting,Unknown,0,0,0.04,0,0.04 +Nihon Pro Mahjong Kishikai Kanshuu: Pro Ni Naru Mahjong DS,DS,2005,Misc,Success,0,0,0.04,0,0.04 +Atelier Escha & Logy: Alchemists of the Dusk Sky,PSV,2015,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Millipede / Super Breakout / Lunar Lander,GBA,2005,Misc,Zoo Digital Publishing,0.03,0.01,0,0,0.04 +World Trigger: Borderless Mission,PSV,2015,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Disney's Donald Duck: Goin' Quackers,GC,2002,Platform,Ubisoft,0.03,0.01,0,0,0.04 +RollerCoaster Tycoon,PC,,Strategy,Microprose,0.02,0.02,0,0.01,0.04 +Assault Rigs,PS,1996,Action,Electronic Arts Victor,0.02,0.02,0,0,0.04 +Backyard Baseball '09,Wii,2008,Sports,Atari,0.04,0,0,0,0.04 +World Championship Spelling,DS,2010,Misc,505 Games,0.04,0,0,0,0.04 +Yes! PreCure 5,DS,2007,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Bionicle Heroes,Wii,2007,Shooter,Eidos Interactive,0.04,0,0,0,0.04 +Tom Clancy's HAWX,PC,2009,Action,Ubisoft,0,0.03,0,0.01,0.04 +Exist Archive: The Other Side of the Sky,PSV,2015,Role-Playing,Aksys Games,0,0,0.04,0,0.04 +Honda ATV Fever,Wii,2010,Racing,Storm City Games,0.04,0,0,0,0.04 +Operation Flashpoint: Elite,XB,2005,Shooter,Codemasters,0.03,0.01,0,0,0.04 +Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden,PS4,2016,Misc,Tecmo Koei,0,0,0.04,0,0.04 +"Roswell Conspiracies: Aliens, Myths & Legends",PS,2001,Action,Red Storm Entertainment,0.02,0.02,0,0,0.04 +Front Mission,DS,2007,Strategy,Square Enix,0.01,0,0.03,0,0.04 +Dead Island Definitive Collection,XOne,2016,Action,Deep Silver,0.02,0.02,0,0,0.04 +Sekai no Gohan Shaberu! DS Oryouri Navi,DS,2008,Misc,Nintendo,0,0,0.04,0,0.04 +Rugby Challenge 3,PS3,2016,Sports,Alternative Software,0,0.04,0,0.01,0.04 +Boktai 2: Solar Boy Django,GBA,2004,Role-Playing,Konami Digital Entertainment,0.03,0.01,0,0,0.04 +Praetorians,PC,2003,Strategy,Eidos Interactive,0,0.04,0,0,0.04 +Candace Kane's Candy Factory,DS,2008,Action,Destineer,0.04,0,0,0,0.04 +Nobunaga's Ambition (3DS),3DS,2013,Simulation,Tecmo Koei,0,0,0.04,0,0.04 +Angelique Duet,PS,1998,Strategy,Tecmo Koei,0,0,0.04,0,0.04 +Shin Fortune Quest: Sokutaku no Kishi,PS,1996,Misc,Media Works,0,0,0.04,0,0.04 +Resident Evil 6,PC,2012,Shooter,Capcom,0,0.04,0,0.01,0.04 +Crushed Baseball,GBA,2004,Sports,Summitsoft,0.03,0.01,0,0,0.04 +Dark Arena,GBA,2002,Shooter,THQ,0.03,0.01,0,0,0.04 +Just Sing! Vol. 2,DS,2011,Misc,PQube,0,0.04,0,0.01,0.04 +Heatseeker,PSP,2007,Action,Codemasters,0.04,0,0,0,0.04 +IL-2 Sturmovik: 1946,PC,2006,Simulation,Ubisoft,0,0.04,0,0.01,0.04 +Jerry Rice and Nitus' Dog Football,Wii,2011,Sports,Tommo,0.04,0,0,0,0.04 +TOCA Race Driver 2,XB,2004,Racing,Codemasters,0.03,0.01,0,0,0.04 +I.Q. Remix+: Intelligent Qube,PS2,2000,Puzzle,Sony Computer Entertainment,0,0,0.04,0,0.04 +S?bastien Loeb Rally Evo,PS4,2016,Racing,Milestone S.r.l,0,0.04,0,0.01,0.04 +Growlanser,PSP,2009,Role-Playing,Atlus,0,0,0.04,0,0.04 +Trollz: Hair Affair!,GBA,2005,Misc,Ubisoft,0.03,0.01,0,0,0.04 +Daito Giken Koushiki Pachi-Slot Simulator: Shake II,PS2,2007,Misc,Paon,0,0,0.04,0,0.04 +Grand Slam,PS,1997,Misc,Virgin Interactive,0.02,0.02,0,0,0.04 +Chou Gekijoban Keroro Gunsou: Gekishin Dragon Warriors de Arimasu!,DS,2009,Action,Namco Bandai Games,0,0,0.04,0,0.04 +The King of Fighters 2000,PS2,2002,Fighting,Playmore,0,0,0.04,0,0.04 +Coraline,DS,2009,Action,D3Publisher,0.04,0,0,0,0.04 +FIFA Street 2,DS,2006,Sports,Electronic Arts,0.04,0,0,0,0.04 +M&M's Beach Party,Wii,2009,Misc,Zoo Digital Publishing,0.04,0,0,0,0.04 +Dead Head Fred,PSP,2007,Action,D3Publisher,0.04,0,0,0,0.04 +D.C.F.S.: Da Capo Four Seasons,PS2,2005,Adventure,Kadokawa Shoten,0,0,0.04,0,0.04 +Hyperdimension Neptunia mk2,PSV,2014,Action,Compile Heart,0,0,0.04,0,0.04 +Disney's Meet the Robinsons,GC,2007,Action,Disney Interactive Studios,0.03,0.01,0,0,0.04 +Hanayori Danshi: Koi Seyo Onago,DS,2008,Adventure,Konami Digital Entertainment,0,0,0.04,0,0.04 +Minna ga Shuyaku no NHK Kouhaku Quiz Kassen,Wii,2009,Misc,Nintendo,0,0,0.04,0,0.04 +Puyo Puyo Tetris,PS3,2014,Puzzle,Sega,0,0,0.04,0,0.04 +Sonic the Hedgehog 2 (8-bit),GG,1992,Platform,Sega,0,0,0.04,0,0.04 +FlatOut 2,XB,2006,Racing,Empire Interactive,0.03,0.01,0,0,0.04 +Rogue Trooper,PS2,2006,Shooter,Eidos Interactive,0.02,0.02,0,0.01,0.04 +Spy Fiction,PS2,2003,Action,Sega,0.02,0.02,0,0.01,0.04 +R.B.I. Baseball 2016,XOne,2016,Sports,MLB.com,0.04,0,0,0,0.04 +Justice League: Chronicles,GBA,2003,Platform,Midway Games,0.03,0.01,0,0,0.04 +Resident Evil Director's Cut,PS3,2006,Action,Capcom,0,0,0.04,0,0.04 +Doko Demo Issho: Let's Gakkou!,PSP,2006,Misc,Sony Computer Entertainment,0,0,0.04,0,0.04 +Monster Trux Arenas: Special Edition,Wii,2007,Racing,Popcorn Arcade,0.04,0,0,0,0.04 +Conflict: Desert Storm II - Back to Bagdhad,GC,2004,Shooter,SCi,0.03,0.01,0,0,0.04 +Top Gun,DS,2006,Simulation,505 Games,0.04,0,0,0,0.04 +Gem Smashers,3DS,2011,Platform,Crave Entertainment,0.04,0,0,0,0.04 +Split/Second,PC,2010,Racing,Disney Interactive Studios,0,0.04,0,0.01,0.04 +B's-LOG Party,PSP,2010,Adventure,Idea Factory,0,0,0.04,0,0.04 +King Arthur,GC,2004,Action,Konami Digital Entertainment,0.03,0.01,0,0,0.04 +Chicken Shoot,GBA,2005,Action,Zoo Digital Publishing,0.03,0.01,0,0,0.04 +Dai Senryaku VII: Modern Military Tactics,XB,2003,Strategy,Kool Kizz,0.03,0.01,0,0,0.04 +Gormiti: The Lords of Nature!,Wii,2010,Adventure,Konami Digital Entertainment,0.04,0,0,0,0.04 +White Album 2: Shiawase no Mukougawa,PS3,2012,Adventure,Aqua Plus,0,0,0.04,0,0.04 +Painkiller: Hell & Damnation,PS3,2013,Shooter,Nordic Games,0.02,0.02,0,0.01,0.04 +Go Go Ackman 3,SNES,1995,Platform,Banpresto,0,0,0.04,0,0.04 +WSC Real 11: World Snooker Championship,X360,2011,Sports,Koch Media,0,0.04,0,0.01,0.04 +Advance Guardian Heroes,GBA,2004,Role-Playing,Ubisoft,0.03,0.01,0,0,0.04 +Casual Mania!,DS,2010,Puzzle,Foreign Media Games,0.04,0,0,0,0.04 +Castle of Shikigami III,Wii,2007,Shooter,PQube,0.04,0,0,0,0.04 +Star X,GBA,2002,Shooter,BAM! Entertainment,0.03,0.01,0,0,0.04 +Jewel Quest 5: The Sleepless Star,PC,2011,Action,Astragon,0.01,0.02,0,0.01,0.04 +Get Up and Dance,PS3,2011,Misc,O-Games,0.03,0.01,0,0,0.04 +The King of Fighters Kyo,PS,1998,Fighting,SNK Playmore,0,0,0.04,0,0.04 +Yowamushi Pedal,3DS,2015,Action,Namco Bandai Games,0,0,0.04,0,0.04 +WarTech: Senko no Ronde,X360,2006,Fighting,Ubisoft,0.04,0,0,0,0.04 +Record of Agarest War: Marriage,PSP,2012,Role-Playing,Compile Heart,0,0,0.04,0,0.04 +San-X Land: Theme Park de Asobou!,DS,2006,Action,MTO,0,0,0.04,0,0.04 +Corpse Party: Book of Shadows,PSP,2011,Adventure,5pb,0,0,0.04,0,0.04 +428: Fuusa Sareta Shibuya de,PSP,2009,Adventure,Spike,0,0,0.04,0,0.04 +Tennis no Oji-Sama: DokiDoki Survival - Sanroku no Mystic,PS2,2006,Adventure,Konami Digital Entertainment,0,0,0.04,0,0.04 +Starry ? Sky: After Spring,PSP,2009,Misc,Aqua Plus,0,0,0.04,0,0.04 +Life is Strange,PC,2016,Adventure,Square Enix,0.01,0.03,0,0,0.04 +Need for Speed: ProStreet,PC,2007,Racing,Electronic Arts,0,0.04,0,0.01,0.04 +Naruto Shippuden: Dairansen! Kage Bunshin Emaki,DS,2008,Action,Takara Tomy,0,0,0.04,0,0.04 +Mechanic Escape,PS3,2012,Platform,D3Publisher,0,0,0.04,0,0.04 +Pro Evolution Soccer 2016,PC,2015,Sports,Konami Digital Entertainment,0,0.04,0,0,0.04 +Twilight Syndrome: Kinjiratera Toshi Densetsu,DS,2008,Adventure,Spike,0,0,0.04,0,0.04 +True Love Story 3,PS2,2001,Simulation,Enterbrain,0,0,0.04,0,0.04 +Little Battlers eXperience W,PSV,2012,Role-Playing,Level 5,0,0,0.04,0,0.04 +The Smurfs,PS,1998,Action,Infogrames,0.02,0.02,0,0,0.04 +Strike Force Bowling,XB,2004,Sports,Crave Entertainment,0.03,0.01,0,0,0.04 +Chessmaster,GBA,2002,Misc,Ubisoft,0.03,0.01,0,0,0.04 +Blood Will Tell: Tezuka Osamu's Dororo,PS2,2004,Adventure,Sega,0.02,0.02,0,0.01,0.04 +The Kore Gang,Wii,2010,Platform,Flashpoint Games,0.04,0,0,0,0.04 +Red Ninja: End of Honor,PS2,2005,Action,Vivendi Games,0.02,0.02,0,0.01,0.04 +Kanuchi: Shiroki Tsubasa no Shou,PS2,2008,Adventure,Idea Factory,0,0,0.04,0,0.04 +Summer Athletics 2009,X360,2009,Sports,49Games,0,0.04,0,0,0.04 +SX Superstar,XB,2003,Racing,Acclaim Entertainment,0.03,0.01,0,0,0.04 +Katekyoo Hitman Reborn! Battle Arena,PSP,2008,Fighting,Marvelous Interactive,0,0,0.04,0,0.04 +Saint Seiya: The Hades,PS2,2006,Fighting,Namco Bandai Games,0,0,0.04,0,0.04 +Saki Portable,PSP,2010,Adventure,Alchemist,0,0,0.04,0,0.04 +Riding Stables: The Whitakers present Milton and Friends,3DS,2011,Sports,DTP Entertainment,0,0.04,0,0,0.04 +Naruto Shippuuden: Shinobi Retsuden III,DS,2009,Action,Takara Tomy,0,0,0.04,0,0.04 +Metal Gear Solid: Digital Graphic Novel,PSP,2006,Misc,Konami Digital Entertainment,0.02,0,0.02,0,0.04 +Max & the Magic Marker,Wii,2011,Platform,Unknown,0,0.04,0,0,0.04 +Outlaw Tennis,XB,2005,Sports,Global Star,0.03,0.01,0,0,0.04 +Free Running,Wii,2009,Sports,Reef Entertainment,0.02,0.02,0,0,0.04 +Ore no Imouto ga Konna ni Kawaii Wake ga Nai Happy EnD,PS3,2013,Simulation,Namco Bandai Games,0,0,0.04,0,0.04 +Barnyard,Wii,2006,Action,THQ,0.04,0,0,0,0.04 +SPRay,Wii,2008,Action,Tecmo Koei,0.04,0,0,0,0.04 +No Rules: Get Phat,GBA,2001,Action,TDK Mediactive,0.03,0.01,0,0,0.04 +Battle Rage,Wii,2008,Shooter,Popcorn Arcade,0.04,0,0,0,0.04 +Zombi Daisuki,DS,2011,Action,ChunSoft,0,0,0.04,0,0.04 +Igor: The Game,DS,2008,Adventure,Legacy Interactive,0.04,0,0,0,0.04 +LEGO Indiana Jones: The Original Adventures,PC,2008,Action,LucasArts,0.02,0.02,0,0.01,0.04 +Card Fight!! Vanguard G: Stride to Victory!!,3DS,2016,Misc,FuRyu,0,0,0.04,0,0.04 +"Negima!? Chou Mahora Taisen Kattoiin, Keiyaku Shikkou Dechai masuu",DS,2006,Adventure,Marvelous Interactive,0,0,0.04,0,0.04 +Doraemon: Shin Nobita no Daimakyou Peko to 5-nin no Tankenta,3DS,2014,Action,FuRyu,0,0,0.04,0,0.04 +Challenge Me: Maths Workout,DS,2009,Puzzle,Oxygen Interactive,0.04,0,0,0,0.04 +The Invincible Iron Man,GBA,2002,Action,Activision,0.03,0.01,0,0,0.04 +NASCAR 07,XB,2006,Racing,Electronic Arts,0.03,0.01,0,0,0.04 +Refrain no Chika Meikyuu to Majo no Ryodan,PSV,2016,Action,Nippon Ichi Software,0,0,0.04,0,0.04 +Dance Dance Revolution Disney Mix,PS,2000,Simulation,Konami Digital Entertainment,0.02,0.02,0,0,0.04 +Maken Shao: Demon Sword,PS2,2001,Action,Midas Interactive Entertainment,0,0,0.04,0,0.04 +Playmobil Top Agents,DS,2010,Action,JoWood Productions,0,0.04,0,0,0.04 +The Monkey King: The Legend Begins,Wii,2007,Shooter,Starfish,0.04,0,0,0,0.04 +Super Robot Taisen OG Infinite Battle,PS3,2013,Fighting,Namco Bandai Games,0,0,0.04,0,0.04 +Scaler,XB,2004,Platform,Global Star,0.03,0.01,0,0,0.04 +Attack of the Movies 3D,X360,2010,Shooter,Majesco Entertainment,0.04,0,0,0,0.04 +BeatMania IIDX 16: Empress + Premium Best,PS2,2009,Simulation,Konami Digital Entertainment,0,0,0.04,0,0.04 +FIFA Soccer 2003 (weekly jp sales),PS2,2002,Sports,Electronic Arts,0,0,0.04,0,0.04 +Emergency Room: Real Life Rescues,DS,2009,Simulation,505 Games,0.04,0,0,0,0.04 +High Heat Baseball 2002,PS,2001,Sports,3DO,0.02,0.02,0,0,0.04 +Utawarerumono: Futari no Hakuoro,PS4,2016,Misc,Aqua Plus,0,0,0.04,0,0.04 +Puyo Pop Fever,PSP,2004,Puzzle,Ignition Entertainment,0,0,0.04,0,0.04 +The Sims 2: Pets,PC,2006,Simulation,Electronic Arts,0.01,0.02,0,0.01,0.04 +Hana to Ikimo no Rittai Zukan,3DS,2011,Misc,Nintendo,0,0,0.04,0,0.04 +Bloody Roar Extreme,XB,2003,Fighting,Hudson Soft,0.03,0.01,0,0,0.04 +Platinum Sudoku,DS,2007,Puzzle,Ubisoft,0.03,0.01,0,0,0.04 +Kamen Rider: Battride War Genesis,PS3,2016,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Tennis Masters Series 2003,XB,2002,Sports,Microids,0.03,0.01,0,0,0.04 +The Sims Deluxe,PC,2002,Simulation,Electronic Arts,0.01,0.02,0,0.01,0.04 +Port Royale 2,PC,2004,Strategy,Ascaron Entertainment GmbH,0,0.03,0,0.01,0.04 +Amagami,PSV,2014,Adventure,Kadokawa Games,0,0,0.04,0,0.04 +Duke Nukem Trilogy: Critical Mass,DS,2011,Shooter,Deep Silver,0.04,0,0,0,0.04 +MLB SlugFest 20-04,GC,2003,Sports,Midway Games,0.03,0.01,0,0,0.04 +Pocket Pool,PSP,2007,Action,Conspiracy Entertainment,0.04,0,0,0,0.04 +Jissen Pachislot Hisshouhou! Hokuto no Ken DS,DS,2005,Misc,Sega,0,0,0.04,0,0.04 +Lise no Atelier: Ordre no Renkinjutsushi,DS,2007,Role-Playing,Gust,0,0,0.04,0,0.04 +Black & White,PC,2001,Strategy,Electronic Arts,0,0.04,0,0.01,0.04 +NCIS,PC,2011,Adventure,Ubisoft,0.01,0.02,0,0.01,0.04 +The Cube,Wii,2012,Action,Funbox Media,0,0.04,0,0,0.04 +Company of Heroes: Tales of Valor,PC,2009,Strategy,THQ,0,0.03,0,0.01,0.04 +Myth Makers: Trixie in Toyland,Wii,2008,Platform,Popcorn Arcade,0.04,0,0,0,0.04 +NatGeo Challenge! Wild Life,Wii,2010,Misc,Black Bean Games,0.04,0,0,0,0.04 +Breath of Fire III,PSP,2005,Role-Playing,Capcom,0,0.03,0,0.01,0.04 +Torino 2006,XB,2006,Sports,Take-Two Interactive,0.03,0.01,0,0,0.04 +Devil May Cry 4,PC,2008,Action,Capcom,0.01,0.02,0,0.01,0.04 +Amnesia,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Tabi no Yubisashi Kaiwachou DS: DS Series 5 Deutsch,DS,2006,Misc,Nintendo,0,0,0.04,0,0.04 +Fashion Week Jr. Designer,DS,2009,Simulation,505 Games,0.04,0,0,0,0.04 +Jewel Quest Mysteries 2: Trail of the Midnight Heart,DS,2011,Puzzle,Unknown,0,0.04,0,0.01,0.04 +Sherlock Holmes: Secret of The Silver Earring,Wii,2010,Adventure,Focus Home Interactive,0,0.04,0,0.01,0.04 +Metal Slug 4 & 5,XB,2005,Shooter,SNK Playmore,0.03,0.01,0,0,0.04 +Great Battle Full Blast,PSP,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Guilty Gear XX Accent Core,Wii,2007,Fighting,505 Games,0.03,0,0,0,0.04 +Hitman (2016),PS4,2016,Action,Square Enix,0,0.04,0,0.01,0.04 +World Poker Tour,PSP,2006,Misc,Take-Two Interactive,0.04,0,0,0,0.04 +Saint Seiya: Soldiers' Soul,PS3,2015,Fighting,Namco Bandai Games,0,0,0.04,0,0.04 +7 Days to Die,XOne,2016,Action,Telltale Games,0.02,0.02,0,0,0.04 +Digimon Rumble Arena 2,GC,2004,Fighting,Atari,0.03,0.01,0,0,0.04 +Doki Doki! PreCure Narikiri Life!,3DS,2013,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Gravity Falls: Legend of the Gnome Gemulets,3DS,2015,Action,Ubisoft,0.03,0,0,0,0.04 +Watashi no Relaxuma,DS,2007,Simulation,Rocket Company,0,0,0.04,0,0.04 +Phantom Kingdom Portable,PSP,2011,Role-Playing,Nippon Ichi Software,0,0,0.04,0,0.04 +Pac-Man World Rally,PSP,2006,Racing,Namco Bandai Games,0.04,0,0,0,0.04 +Way of the Samurai 2 Portable,PSP,2009,Action,Spike,0,0,0.04,0,0.04 +Heroes of Might and Magic V,PC,2006,Strategy,Ubisoft,0,0.03,0,0.01,0.04 +Mazes of Fate DS,DS,2008,Role-Playing,Graffiti,0.04,0,0,0,0.04 +Code Geass: Hangyaku no Lelouch R2 - Banjou no Geass Gekijou,DS,2008,Misc,Namco Bandai Games,0,0,0.04,0,0.04 +Hellboy: The Science of Evil,PSP,2008,Action,Konami Digital Entertainment,0.04,0,0,0,0.04 +Virtua Tennis 4,PC,2011,Sports,Sega,0,0.03,0,0.01,0.04 +Mortimer Beckett and the Secrets of Spooky Manor,Wii,2008,Puzzle,Avanquest,0.04,0,0,0,0.04 +Farm Frenzy 3,PC,2009,Strategy,Alawar Entertainment,0,0.03,0,0.01,0.04 +GRID,PC,,Racing,Codemasters,0,0.03,0,0.01,0.04 +Little Busters! Converted Edition,PSP,2010,Adventure,Prototype,0,0,0.04,0,0.04 +Unison: Rebels of Rhythm & Dance,PS2,2000,Misc,Tecmo Koei,0.02,0.02,0,0.01,0.04 +Ferrari Challenge Trofeo Pirelli,PS3,2008,Racing,System 3 Arcade Software,0,0.03,0,0.01,0.04 +WTF: Work Time Fun,PSP,2005,Puzzle,Sony Computer Entertainment,0.04,0,0,0,0.04 +Tennis no Oji-Sama: DokiDoki Survival - Umibe no Secret,PS2,2007,Sports,Konami Digital Entertainment,0,0,0.04,0,0.04 +Major League Baseball 2K12,PC,2012,Sports,Take-Two Interactive,0.04,0,0,0,0.04 +B.L.U.E.: Legend of Water,PS,,Adventure,,0,0,0.04,0,0.04 +Dark Half,SNES,1996,Role-Playing,Enix Corporation,0,0,0.04,0,0.04 +System 3 presents Ferrari Challenge Trofeo Pirelli,DS,2008,Racing,System 3 Arcade Software,0.03,0.01,0,0,0.04 +Luxor: Pharaoh's Challenge,Wii,,Puzzle,Funsta,0.01,0.03,0,0,0.04 +Nitroplus Blasterz: Heroines Infinite Duel,PS4,2015,Fighting,Marvelous Interactive,0.01,0,0.02,0,0.04 +Imperial Glory,PC,2005,Strategy,Eidos Interactive,0,0.04,0,0,0.04 +Lionel Trains: On Track,DS,2006,Action,DSI Games,0.04,0,0,0,0.04 +Hayate no Gotoku! Ojousama Produce Daisakusen Boku Iro ni Somare! Gakkou-Hen,DS,2008,Simulation,Konami Digital Entertainment,0,0,0.04,0,0.04 +Shukufuku no Campanella Portable,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.04,0,0.04 +The Wolf Among Us,X360,2011,Adventure,Telltale Games,0.01,0.03,0,0,0.04 +Sonic PC Collection,PC,2009,Misc,Sega,0,0.04,0,0.01,0.04 +Horses 3D,3DS,2012,Misc,Ubisoft,0.04,0,0,0,0.04 +Yourself Fitness,PS2,2005,Sports,responDESIGN,0.02,0.02,0,0.01,0.04 +"Chaos,Head - Love Chu*Chu!",PSP,2011,Adventure,5pb,0,0,0.04,0,0.04 +Lost Planet 3,PC,2013,Shooter,Capcom,0,0.03,0,0.01,0.04 +Paws & Claws: Regal Resort,DS,2010,Simulation,THQ,0.04,0,0,0,0.04 +Hannspree Ten Kate Honda: SBK Superbike World Championship,PSP,2007,Racing,Black Bean Games,0.03,0,0,0,0.04 +Star Trek: Shattered Universe,XB,2004,Simulation,Global Star,0.03,0.01,0,0,0.04 +12Riven: The Psi-Climinal of Integral,PS2,2008,Adventure,CyberFront,0,0,0.04,0,0.04 +Battle Spirits: Digital Starter,DS,2010,Role-Playing,Namco Bandai Games,0,0,0.04,0,0.04 +Rise of Nations,PC,2003,Strategy,Microsoft Game Studios,0.01,0.02,0,0.01,0.04 +Deadliest Warrior: Ancient Combat,X360,2012,Fighting,Cloud Imperium Games Corporation,0.04,0,0,0,0.04 +WarJetz,PS2,2001,Shooter,3DO,0.02,0.02,0,0.01,0.04 +Breeding Stud 2,PS,1998,Sports,Konami Digital Entertainment,0,0,0.04,0,0.04 +Banushi Life Game: Winner's Circle,DS,2007,Sports,Genki,0,0,0.04,0,0.04 +Catwoman,GBA,2004,Action,Electronic Arts,0.03,0.01,0,0,0.04 +Gakuen Hetalia Portable,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Gitaroo Man Lives!,PSP,2006,Misc,Tecmo Koei,0.03,0,0,0,0.04 +Chibi Maruko-Chan DS: Maru-Chan no Machi,DS,2009,Puzzle,Namco Bandai Games,0,0,0.04,0,0.04 +Capcom Fighting Evolution,XB,2005,Fighting,Capcom,0.03,0.01,0,0,0.04 +XCOM 2,PS4,2016,Strategy,Take-Two Interactive,0.01,0.02,0,0.01,0.04 +Company of Heroes: Opposing Fronts,PC,2007,Strategy,THQ,0.01,0.03,0,0.01,0.04 +Novastorm,PS,1995,Shooter,Psygnosis,0.02,0.02,0,0,0.04 +Shiren the Wanderer 4 - God's Eye and the Demon's Navel,PSP,2012,Role-Playing,Spike,0,0,0.04,0,0.04 +PopCap Arcade Vol 1,X360,2007,Puzzle,PopCap Games,0.04,0,0,0,0.04 +Dead Ball Zone,PS,1998,Sports,GT Interactive,0.02,0.02,0,0,0.04 +NBA in the Zone 2000,N64,2000,Sports,Konami Digital Entertainment,0.04,0,0,0,0.04 +Men of War: Vietnam,PC,2011,Strategy,Unknown,0,0.03,0,0.01,0.04 +NBA In The Zone '99,N64,1998,Sports,Konami Digital Entertainment,0.04,0,0,0,0.04 +Winning Post World 2010,PS3,2010,Sports,Tecmo Koei,0,0,0.04,0,0.04 +Do-Konjou Shougakussei: Bon Bita - Hadaka no Choujou Ketsusen!! Bita vs. Dokuro Dei!,DS,2010,Action,Namco Bandai Games,0,0,0.04,0,0.04 +SWAT: Target Liberty,PSP,2007,Shooter,Vivendi Games,0.03,0,0,0,0.04 +OutRun 2006: Coast 2 Coast,PSP,2006,Racing,Sega,0.03,0.01,0,0.01,0.04 +Haunted Casino,SAT,1996,Adventure,Societa,0,0,0.04,0,0.04 +World Series Baseball,SAT,1994,Sports,Sega,0,0,0.04,0,0.04 +Ou to Maou to 7-nin no Himegimitachi: Shin Ousama Monogatari,PSV,2012,Action,Konami Digital Entertainment,0,0,0.04,0,0.04 +Aeon Flux,PS2,2005,Action,THQ,0.02,0.02,0,0.01,0.04 +Chicken Blaster,DS,2009,Shooter,Zushi Games,0.04,0,0,0,0.04 +Summer Challenge: Athletics Tournament,PS3,2011,Sports,PQube,0,0.03,0,0.01,0.04 +S.Y.K Renshouden Portable,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Metal Max Returns,SNES,1995,Role-Playing,Data East,0,0,0.04,0,0.04 +Shattered Union,XB,2005,Strategy,Take-Two Interactive,0.03,0.01,0,0,0.04 +Off-Road Drive,PC,2011,Racing,1C Company,0,0.03,0,0.01,0.04 +Hanaoni: Yume no Tsudzuki,PSP,2012,Action,Idea Factory,0,0,0.04,0,0.04 +Mat Hoffman's Pro BMX 2,GC,2002,Sports,Activision,0.03,0.01,0,0,0.04 +Unchained Blades,3DS,2011,Role-Playing,FuRyu,0,0,0.04,0,0.04 +Harley-Davidson: Road Trip,Wii,2010,Racing,Destineer,0.04,0,0,0,0.04 +Gal*Gun,X360,2011,Shooter,Alchemist,0,0,0.04,0,0.04 +GoGo's Crazy Bones,DS,2012,Action,GameMill Entertainment,0,0.04,0,0,0.04 +MLB 2K12 / NBA 2K12 Combo Pack,X360,2012,Sports,Take-Two Interactive,0.04,0,0,0,0.04 +Grand Theft Auto: Vice City,PC,2003,Action,Take-Two Interactive,0,0.03,0,0.01,0.04 +NHL Hitz Pro,GC,,Sports,Unknown,0.03,0.01,0,0,0.04 +Ookami Kakushi,PSP,2009,Action,Konami Digital Entertainment,0,0,0.04,0,0.04 +Zen-Nippon GT Senshuken,SNES,1995,Racing,Banpresto,0,0,0.04,0,0.04 +North American Hunting Extravaganza 2,Wii,2010,Sports,Unknown,0.03,0,0,0,0.04 +City Builder,Wii,2010,Misc,Virtual Play Games,0.04,0,0,0,0.04 +PD Ultraman Battle Collection 64,N64,1999,Strategy,Namco Bandai Games,0,0,0.04,0,0.04 +Monaco Grand Prix,N64,1999,Racing,Ubisoft,0.03,0.01,0,0,0.04 +Worms Armageddon,N64,1999,Strategy,Infogrames,0.03,0.01,0,0,0.04 +Rally Challenge 2000,N64,1999,Racing,Imagineer,0.03,0.01,0,0,0.04 +Looney Tunes Duck Dodgers Starring: Daffy Duck,N64,2000,Platform,Infogrames,0.03,0.01,0,0,0.04 +Superman: Countdown to Apokolips,GBA,2003,Platform,Atari,0.03,0.01,0,0,0.04 +Deadly Arts,N64,1998,Fighting,Konami Digital Entertainment,0.03,0.01,0,0,0.04 +Kikou Heidan J-Phoenix 2,PS2,2003,Action,Takara,0,0,0.04,0,0.04 +Sengoku Musou 3 Z Special,PSP,2012,Action,Ackkstudios,0,0,0.04,0,0.04 +Dragon's Lair 3D: Return to the Lair,GC,2002,Platform,THQ,0.03,0.01,0,0,0.04 +Harukanaru Toki no Naka de 5,PSP,2011,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Meteos: Disney Magic,DS,2007,Puzzle,Disney Interactive Studios,0.01,0.02,0,0,0.04 +Worms 4: Mayhem,XB,2005,Strategy,Codemasters,0.03,0.01,0,0,0.04 +Resident Evil: Operation Raccoon City,PC,2012,Action,Capcom,0,0.03,0,0.01,0.04 +Winning Post 7 2012,PSP,2012,Sports,Ackkstudios,0,0,0.04,0,0.04 +Samurai Warriors 2: Empires,X360,2007,Action,Tecmo Koei,0.03,0,0.01,0,0.04 +Super Black Bass Fishing,DS,2005,Sports,Majesco Entertainment,0.04,0,0,0,0.04 +Point Blank 2,PS,1998,Shooter,Namco Bandai Games,0.02,0.02,0,0,0.04 +Who Wants to Be a Millionaire: 3rd Edition,DS,2010,Misc,Ubisoft,0.04,0,0,0,0.04 +Test Drive: Ferrari Legends,PS3,2012,Racing,Unknown,0.04,0,0,0,0.04 +Saru! Get You! Pipo Saru Senki,PSP,2009,Role-Playing,Sony Computer Entertainment,0,0,0.04,0,0.04 +Infamous: First Light,PS4,2014,Action,Sony Computer Entertainment,0,0.03,0,0.01,0.04 +J.League Pro Soccer Club o Tsukurou! 8 Euro Plus,PSP,2013,Sports,Sega,0,0,0.04,0,0.04 +Imabikisou,PS3,2007,Adventure,Sega,0,0,0.04,0,0.04 +Logic Machines,DS,2009,Puzzle,City Interactive,0.04,0,0,0,0.04 +One Piece: Burning Blood,XOne,2016,Fighting,Namco Bandai Games,0.03,0.01,0,0,0.04 +Hakuouki: Reimeiroku Portable,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Sega Ages 2500 Series Vol. 33: Fantasy Zone Complete Collection,PS2,2008,Shooter,Sega,0,0,0.04,0,0.04 +Antz Extreme Racing,PS2,2002,Racing,Empire Interactive,0.02,0.02,0,0.01,0.04 +Motto TOEIC Test DS Training,DS,2008,Misc,IE Institute,0,0,0.04,0,0.04 +Super Robot Gakuen,DS,2009,Adventure,Namco Bandai Games,0,0,0.04,0,0.04 +Atelier Iris 3: Grand Phantasm (JP Sales),PS2,2006,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Terraria,XOne,2014,Action,505 Games,0,0.04,0,0,0.04 +Dolly Kanon Dokidoki Tokimeki Himitsu no Ongaku Katsudou Start Desu!!,3DS,2014,Adventure,Happinet,0,0,0.04,0,0.04 +Empire Earth III,PC,2007,Strategy,Vivendi Games,0,0.03,0,0.01,0.04 +Mike Tyson Boxing,GBA,2002,Sports,Ubisoft,0.03,0.01,0,0,0.04 +Jojo's Fashion Show: Design in a Dash!,DS,2009,Simulation,Ubisoft,0.04,0,0,0,0.04 +The Legend of Heroes: Trails in the Sky First Chapter,PS3,2012,Role-Playing,Falcom Corporation,0,0,0.04,0,0.04 +Go Diego Go!: Safari Rescue,PS2,2008,Action,Take-Two Interactive,0.02,0.02,0,0.01,0.04 +Deal or No Deal: Special Edition,DS,2010,Misc,Zoo Games,0.04,0,0,0,0.04 +Clannad,PS2,2006,Adventure,Interchannel,0,0,0.04,0,0.04 +Nobunaga's Ambition: Sphere of Influence,PS4,2014,Strategy,Tecmo Koei,0.03,0,0,0.01,0.04 +Fisherman's Challenge,PS2,2003,Sports,Konami Digital Entertainment,0.02,0.02,0,0.01,0.04 +Katekyoo Hitman Reborn! Battle Arena 2 - Spirits Burst,PSP,2009,Fighting,Marvelous Interactive,0,0,0.04,0,0.04 +Akko ni Omakase! Brain Shock,DS,2006,Misc,Taito,0,0,0.04,0,0.04 +Mission: Impossible - Operation Surma,GBA,2003,Platform,Atari,0.03,0.01,0,0,0.04 +Guild Wars Trilogy,PC,2005,Role-Playing,NCSoft,0,0.03,0,0.01,0.04 +Patrician IV,PC,2010,Strategy,Kalypso Media,0.03,0,0,0,0.04 +Deadliest Warrior: Ancient Combat,PS3,2012,Fighting,Cloud Imperium Games Corporation,0.04,0,0,0,0.04 +King of Fighters: Maximum Impact Regulation A,PS2,2007,Fighting,SNK Playmore,0,0,0.04,0,0.04 +Who Wants to be a Millionaire: 1st Edition,DS,2007,Misc,Ubisoft,0,0.04,0,0,0.04 +Star Ocean 5: Integrity and Faithlessness,PS3,2016,Role-Playing,Square Enix,0,0,0.04,0,0.04 +Date A Live: Rine Utopia,PS3,2013,Adventure,Compile Heart,0,0,0.04,0,0.04 +CSI: Fatal Conspiracy,PC,2010,Adventure,Ubisoft,0,0.03,0,0.01,0.04 +Durarara!! 3way Standoff: Alley,PSP,2011,Adventure,Kadokawa Shoten,0,0,0.04,0,0.04 +Surf's Up,PS3,2007,Sports,Ubisoft,0.03,0,0,0,0.04 +Fritz Chess,PS3,2009,Strategy,Deep Silver,0,0.03,0,0.01,0.04 +The Da Vinci Code,XB,2006,Action,Take-Two Interactive,0.03,0.01,0,0,0.04 +Famicom Mini: Clu Clu Land,GBA,2004,Puzzle,Nintendo,0,0,0.04,0,0.04 +Astro Boy: The Video Game,PSP,2009,Action,D3Publisher,0.04,0,0,0,0.04 +Metal Slug XX,PSP,2009,Shooter,DHM Interactive,0.03,0,0,0,0.04 +Sacred Blaze,PS2,2009,Strategy,Flight-Plan,0,0,0.04,0,0.04 +Rollin' Rascals,DS,2009,Puzzle,Rising Star Games,0.04,0,0,0,0.04 +Haneru no Tobira DS: Tanshuku Tetsudou no Yoru,DS,2007,Misc,Namco Bandai Games,0,0,0.04,0,0.04 +Thoroughbred Breeder II Plus,PS,1995,Simulation,Hect,0,0,0.04,0,0.04 +Pure Pinball,XB,2004,Misc,XS Games,0.03,0.01,0,0,0.04 +Hanaoni: Koisomeru Koku - Eikyuu no Shirushi,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Zac to Ombra: Maboroshi no Yuuenchi,DS,2010,Adventure,Konami Digital Entertainment,0,0,0.04,0,0.04 +Resident Evil: Revelations,PC,2013,Action,Capcom,0,0.03,0,0.01,0.04 +Daikaijuu Battle: Ultra Coliseum DX - Ultra Senshi Daishuuketsu,Wii,2010,Fighting,Namco Bandai Games,0,0,0.04,0,0.04 +Shadow of the Colossus,PS3,2011,Action,Sony Computer Entertainment,0,0,0.04,0,0.04 +Phantom Breaker,X360,2011,Fighting,5pb,0.02,0,0.02,0,0.04 +Gummy Bears Mini Golf,Wii,2010,Sports,Unknown,0.04,0,0,0,0.04 +Brothers In Arms DS,DS,2007,Shooter,Ubisoft,0.03,0,0,0,0.04 +Valhalla Knights 2: Battle Stance,PSP,2009,Role-Playing,Marvelous Interactive,0,0,0.04,0,0.04 +99 no Namida,DS,2008,Adventure,Namco Bandai Games,0,0,0.04,0,0.04 +Clannad,PSP,2008,Adventure,Prototype,0,0,0.04,0,0.04 +Cyber Troopers Virtual-On Marz,PS2,2003,Fighting,Sega,0.02,0.01,0,0,0.04 +Headhunter: Redemption,PS2,2004,Action,Sega,0.02,0.01,0,0,0.04 +Ookami to Koushinryou: Boku to Horo no Ichinen,DS,2008,Adventure,ASCII Media Works,0,0,0.04,0,0.04 +Bomberman: Act Zero,X360,2006,Puzzle,Konami Digital Entertainment,0.04,0,0,0,0.04 +Stuntman,GBA,2003,Racing,Atari,0.03,0.01,0,0,0.04 +Time Travelers,3DS,2012,Adventure,Unknown,0,0,0.04,0,0.04 +Burnout Paradise: The Ultimate Box,X360,2009,Racing,Electronic Arts,0,0.03,0,0,0.04 +The Chase: Felix Meets Felicity,DS,2009,Action,Atari,0.04,0,0,0,0.04 +Stoked: Big Air Edition,X360,2009,Sports,Namco Bandai Games,0.02,0.02,0,0,0.04 +Syndicate Wars,PS,1997,Strategy,Electronic Arts,0.02,0.01,0,0,0.04 +Castlevania: Lords of Shadow 2,PC,2014,Action,Konami Digital Entertainment,0.01,0.03,0,0,0.04 +Draglade (JP sales),DS,2007,Fighting,505 Games,0,0,0.04,0,0.04 +Herc's Adventures,PS,1997,Action,Virgin Interactive,0.02,0.01,0,0,0.04 +Tiger Woods PGA Tour Golf,GBA,2002,Sports,Ubisoft,0.03,0.01,0,0,0.04 +Twin Strike: Operation Thunder,Wii,2008,Shooter,Zoo Games,0.04,0,0,0,0.04 +BlazBlue: Chrono Phantasma Extend,PS3,2015,Action,PQube,0,0,0.04,0,0.04 +All Points Bulletin,PC,2010,Role-Playing,Electronic Arts,0,0.03,0,0.01,0.04 +Romance of the Three Kingdoms 13,PS3,2015,Action,Tecmo Koei,0,0,0.04,0,0.04 +The Movies,PC,2005,Simulation,Activision,0.01,0.03,0,0.01,0.04 +SuperCar Challenge,PS3,2009,Racing,System 3 Arcade Software,0,0.03,0,0.01,0.04 +Dreamfall: The Longest Journey,XB,2006,Adventure,Empire Interactive,0.03,0.01,0,0,0.04 +The Sims 4: Spa Day,PC,2015,Simulation,Electronic Arts,0,0.04,0,0,0.04 +Tokimeki Mahjong Paradise: Koi no Tenpai Beat,SAT,1995,Misc,Sonnet,0,0,0.04,0,0.04 +Yuki Yuna is a Hero: Memory of the Forest,PSV,2015,Action,FuRyu,0,0,0.04,0,0.04 +JASF: Jane's Advanced Strike Fighters,PC,2011,Simulation,Deep Silver,0.02,0.01,0,0,0.04 +Kidou Gekidan Haro Ichiza Gundam Mahjong DS: Oyaji nimo Agarareta koto nai noni!,DS,2005,Misc,Namco Bandai Games,0,0,0.04,0,0.04 +Blue Roses: Yousei to Aoi Hitomi no Senshitachi,PSP,2010,Adventure,Nippon Ichi Software,0,0,0.04,0,0.04 +Zatch Bell! Mamodo Fury,GC,2005,Fighting,Namco Bandai Games,0.03,0.01,0,0,0.04 +Dora's Big Birthday Adventure,PS2,2010,Misc,Take-Two Interactive,0.02,0.01,0,0,0.04 +PopStar Guitar,PS2,2008,Misc,XS Games,0.02,0.01,0,0,0.04 +Haikyu!! Cross Team Match!,3DS,2016,Adventure,Namco Bandai Games,0,0,0.04,0,0.04 +NHL Blades of Steel 2000,PS,1999,Sports,Konami Digital Entertainment,0.02,0.01,0,0,0.04 +Outlaw Volleyball Remixed,PS2,2004,Sports,Global Star,0.02,0.01,0,0,0.04 +The Adventures of Darwin,PS2,2006,Strategy,Essential Games,0.01,0,0.03,0,0.04 +Scarface: The World is Yours,PC,2006,Action,Vivendi Games,0.01,0.02,0,0.01,0.04 +Blood Bowl,PC,2009,Sports,Focus Home Interactive,0.01,0.02,0,0.01,0.04 +FIFA World Cup Germany 2006,DS,2006,Sports,Electronic Arts,0.03,0,0,0,0.04 +Supreme Commander: Forged Alliance,PC,2007,Strategy,THQ,0.01,0.02,0,0.01,0.04 +Klonoa Heroes: Densetsu no Star Medal,GBA,2002,Role-Playing,Namco Bandai Games,0,0,0.04,0,0.04 +Hyperdimension Neptunia Victory II,PS4,2015,Role-Playing,Idea Factory International,0,0,0.04,0,0.04 +Pajama Sam: You are What You Eat From Your Head to Your Feet,PS,2001,Adventure,Infogrames,0.02,0.01,0,0,0.04 +Sid Meier's Railroads!,PC,2006,Simulation,Take-Two Interactive,0.01,0.03,0,0.01,0.04 +Jig-A-Pix: Pets,DS,2009,Puzzle,Zushi Games,0.03,0,0,0,0.04 +Brothers: A Tale of Two Sons,XOne,2015,Adventure,505 Games,0.03,0.01,0,0,0.04 +Warhammer: Dark Omen,PS,1998,Strategy,Electronic Arts,0.02,0.01,0,0,0.04 +Mobile Suit Gundam: Mokuba no Kiseki,PSP,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Denki Blocks!,GBA,2001,Puzzle,Rage Software,0.03,0.01,0,0,0.04 +A Ressha de Ikou DS,DS,2009,Simulation,ArtDink,0,0,0.04,0,0.04 +Harukanaru Toki no Naka de 4: Aizouban,PSP,2010,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Tsurugi no Machi no Ihoujin: Kuro no Kyuuden,PSV,2015,Role-Playing,Experience Inc.,0,0,0.04,0,0.04 +Colin McRae Rally 3,XB,2002,Racing,Codemasters,0.03,0.01,0,0,0.04 +Ballistic,PS,1999,Puzzle,Atari,0.02,0.01,0,0,0.04 +Paddington: Adventures in London,3DS,2015,Puzzle,Koch Media,0,0.04,0,0,0.04 +Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden,PSV,2016,Misc,Tecmo Koei,0,0,0.04,0,0.04 +Caesar IV,PC,2006,Strategy,Vivendi Games,0,0.03,0,0.01,0.04 +Sega Rally 2006,PS2,,Racing,Unknown,0,0,0.04,0,0.04 +Song of the Deep,XOne,2016,Action,Insomniac Games,0.03,0,0,0,0.04 +I'm A Celebrity: Get Me Out of Here!,DS,2009,Misc,Mindscape,0,0.04,0,0,0.04 +Gundam Battle Online,DC,2001,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Harry Potter and the Order of the Phoenix,PC,2007,Action,Electronic Arts,0,0.03,0,0.01,0.04 +Shonen Jump's One Piece: Grand Adventure,GC,2006,Fighting,Namco Bandai Games,0.03,0.01,0,0,0.04 +Holly Hobbie & Friends,DS,2007,Misc,Majesco Entertainment,0.04,0,0,0,0.04 +Kevin Van Dam: Big Bass Challenge,Wii,2010,Sports,Zoo Games,0.04,0,0,0,0.04 +Stolen,PS2,2005,Action,Hip Interactive,0.02,0.01,0,0,0.04 +Monster High: New Ghoul in School,X360,2015,Action,Little Orbit,0,0.04,0,0,0.04 +Glacier2,Wii,2009,Racing,Zoo Games,0.04,0,0,0,0.04 +Rugby Challenge 3,PS4,2016,Sports,Alternative Software,0,0.03,0,0.01,0.04 +Memories Off 6: T-Wave,PS2,2008,Adventure,5pb,0,0,0.04,0,0.04 +Superstars V8 Racing,PS3,2009,Racing,Black Bean Games,0,0.02,0,0.01,0.04 +Halo: Combat Evolved,PC,2003,Shooter,Microsoft Game Studios,0.01,0.02,0,0.01,0.04 +Hatsune Miku: Project Diva X,PS4,2016,Misc,Sega,0.01,0,0.02,0,0.04 +Bullet Girls 2,PSV,2016,Action,D3Publisher,0,0,0.04,0,0.04 +Famicom Remix Best Choice,3DS,2015,Action,Nintendo,0,0,0.04,0,0.04 +Pro Race Driver,XB,2003,Racing,Codemasters,0.03,0.01,0,0,0.04 +Sleepover Party,Wii,2009,Misc,Ubisoft,0.03,0,0,0,0.04 +100 Classic Games,DS,2011,Misc,Rondomedia,0,0.03,0,0,0.04 +Ide Yosuke no Mahjong Kazoku,PS,1995,Misc,Seta Corporation,0,0,0.04,0,0.04 +Richard Burns Rally,PC,2004,Racing,SCi,0,0.03,0,0.01,0.04 +WRC: FIA World Rally Championship,PSP,2005,Racing,Sony Computer Entertainment,0.02,0.01,0,0.01,0.04 +Quiz Mobile Gundam: Toi Senshi DX,PSP,2006,Puzzle,Namco Bandai Games,0,0,0.04,0,0.04 +R-Type Command (correct US sales),PSP,2007,Strategy,Rising Star Games,0.04,0,0,0,0.04 +E.T. The Extra-Terrestrial: Interplanetary Mission,PS,2001,Platform,Ubisoft,0.02,0.01,0,0,0.04 +Story Hour: Fairy Tales,Wii,2008,Adventure,Zoo Digital Publishing,0.04,0,0,0,0.04 +Dynasty Warriors Vol. 2 (JP sales),PSP,2006,Action,Tecmo Koei,0,0,0.04,0,0.04 +Countdown Vampires,PS,1999,Adventure,Namco Bandai Games,0.02,0.01,0,0,0.04 +Crypt Killer,PS,1997,Shooter,Konami Digital Entertainment,0.02,0.01,0,0,0.04 +Tokumei Sentai Go-Busters,DS,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Dramatic Soccer Game: Nippon Daihyou Senshu Ninarou!,PS2,2002,Sports,Enix Corporation,0,0,0.04,0,0.04 +The Treasures of Montezuma,DS,2010,Puzzle,Foreign Media Games,0.02,0.02,0,0,0.04 +Saints Row 2,PC,2009,Action,THQ,0,0.03,0,0.01,0.04 +Harry Potter and the Prisoner of Azkaban,PC,2004,Action,Electronic Arts,0,0.03,0,0.01,0.04 +Battle Hunter,PS,1999,Strategy,Midas Interactive Entertainment,0.02,0.01,0,0,0.04 +PO'ed,PS,1996,Shooter,Time Warner Interactive,0.02,0.01,0,0,0.04 +Heathcliff! Frantic Foto,DS,2010,Misc,Storm City Games,0.04,0,0,0,0.04 +Adidas Power Soccer,PS,1996,Sports,Psygnosis,0.02,0.01,0,0,0.04 +LEGO Jurassic World,PC,2015,Action,Warner Bros. Interactive Entertainment,0,0.04,0,0,0.04 +Secret Files 2: Puritas Cordis,PC,2009,Adventure,Deep Silver,0,0.03,0,0.01,0.04 +Darklight Conflict,PS,1997,Simulation,Electronic Arts,0.02,0.01,0,0,0.04 +Dragon Ball: Advanced Adventure,GBA,2004,Action,Namco Bandai Games,0.03,0.01,0,0,0.04 +Art of Fighting 3: The Path of the Warrior,NG,1996,Fighting,SNK,0,0,0.04,0,0.04 +Rabbids Land,WiiU,2012,Misc,Ubisoft,0.02,0.01,0,0,0.04 +Civilization Beyond Earth: Rising Tide,PC,2015,Strategy,Take-Two Interactive,0,0.04,0,0,0.04 +The Ripping Friends,GBA,2002,Action,THQ,0.03,0.01,0,0,0.04 +Rodea the Sky Soldier,3DS,2015,Action,Nippon Ichi Software,0.03,0,0,0,0.04 +Konami Arcade Classics,PS,1999,Misc,Konami Digital Entertainment,0.02,0.01,0,0,0.04 +Hunter x Hunter: Wonder Adventure,PSP,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Super Army War,GBA,2005,Action,Flashpoint Games,0.03,0.01,0,0,0.04 +Ao no Exorcist: Genkoku no Labyrinth,PSP,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Don Bradman Cricket 14,XOne,2015,Sports,Tru Blu Entertainment,0,0.04,0,0,0.04 +Echo Night Beyond,PS2,2004,Adventure,Indie Games,0.02,0.01,0,0,0.04 +Minna no Chizu,PSP,2006,Misc,Zenrin,0,0,0.04,0,0.04 +Doom II: Hell on Earth,GBA,2002,Shooter,Activision,0.03,0.01,0,0,0.04 +Taikou Risshiden V,PSP,2009,Strategy,Tecmo Koei,0,0,0.04,0,0.04 +Shin Hayarigami,PS3,2014,Adventure,Nippon Ichi Software,0,0,0.04,0,0.04 +Jikkyou Powerful Major League,GC,2006,Sports,Konami Digital Entertainment,0,0,0.04,0,0.04 +Train Simulator 2016,PC,2015,Simulation,Unknown,0,0.04,0,0,0.04 +Corpse Party: Blood Covered - Repeated Fear,3DS,2015,Adventure,5pb,0,0,0.04,0,0.04 +Suzumiya Haruhi no Tsuisou,PSP,2011,Adventure,Namco Bandai Games,0,0,0.04,0,0.04 +Zoo Hospital,DS,2007,Simulation,Eidos Interactive,0.03,0,0,0,0.04 +Evolution Skateboarding,GC,2002,Sports,Konami Digital Entertainment,0.03,0.01,0,0,0.04 +Greg Hastings' Tournament Paintball Max'd,DS,2006,Shooter,Activision,0.03,0,0,0,0.04 +The Idolm@ster: Must Songs - Red Board / Blue Board,PSV,2015,Misc,Namco Bandai Games,0,0,0.04,0,0.04 +Jikkyou World Soccer 2002,PS2,2002,Sports,Konami Digital Entertainment,0,0,0.04,0,0.04 +Tenshou Gakuen Gekkouroku,PS2,2006,Adventure,Asmik Ace Entertainment,0,0,0.04,0,0.04 +Ski-Doo Snowmobile Challenge,X360,2009,Racing,Valcon Games,0.03,0,0,0,0.04 +Aquanaut's Holiday: Kakusareta Kiroku,PS3,2008,Adventure,Sony Computer Entertainment,0,0,0.04,0,0.04 +Real Soccer 2008,DS,2007,Sports,Ubisoft,0.03,0,0,0,0.04 +Little Red Riding Hood's Zombie BBQ,DS,2008,Shooter,Destineer,0.03,0,0,0,0.04 +Texas Hold 'Em Poker DS,DS,2005,Misc,Majesco Entertainment,0.03,0,0,0,0.04 +DuckTales: Remastered,X360,2013,Action,Capcom,0.03,0,0,0,0.04 +APB Reloaded,PC,2011,Role-Playing,Iceberg Interactive,0.02,0.01,0,0,0.04 +Railroad Tycoon 3,PC,2003,Strategy,Gathering of Developers,0,0.03,0,0.01,0.04 +Magical Starsign (JP sales),DS,2006,Role-Playing,Nintendo,0,0,0.04,0,0.04 +Big Mutha Truckers,GBA,2005,Racing,Zoo Digital Publishing,0.03,0.01,0,0,0.04 +DT Carnage,PSP,2009,Racing,Agetec,0.03,0,0,0,0.04 +Resident Evil 6,XOne,2016,Shooter,Capcom,0.03,0,0,0,0.04 +Teenage Zombies: Invasion of the Alien Brain Thingys,DS,2008,Adventure,Ignition Entertainment,0.03,0,0,0,0.04 +Ar Nosurge: Ode to an Unborn Star,PSV,2014,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Warriors Orochi 3,XOne,2014,Action,Tecmo Koei,0.01,0.03,0,0,0.04 +Monster High: New Ghoul in School,3DS,2015,Action,Little Orbit,0,0.03,0,0,0.04 +Ragnarok Odyssey,PS3,2014,Role-Playing,GungHo,0.03,0.01,0,0.01,0.04 +Rugby 08,PS2,2007,Sports,Electronic Arts,0.02,0.01,0,0,0.04 +GoPets: Vacation Island,DS,2008,Simulation,Konami Digital Entertainment,0.03,0,0,0,0.04 +Pia Carrot e Youkoso!! 2.5,DC,2008,Adventure,NEC Interchannel,0,0,0.04,0,0.04 +Cy Girls,PS2,2004,Action,Konami Digital Entertainment,0.02,0.01,0,0,0.04 +The Sum of All Fears,GBA,2002,Shooter,Ubisoft,0.03,0.01,0,0,0.04 +Da Capo I & II Plus Situation Portable,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.04,0,0.04 +World of Tanks,X360,,Shooter,,0,0.03,0,0,0.04 +Hisshou Pachinko*Pachi-Slot Kouryaku Series DS Vol. 5: Shinseiki Evangelion - Tamashii no Kiseki,DS,2010,Misc,D3Publisher,0,0,0.04,0,0.04 +Bubble Bobble Double Shot,DS,2007,Puzzle,Rising Star Games,0.03,0,0,0,0.04 +Minority Report: Everybody Runs,GBA,2002,Action,Activision,0.03,0.01,0,0,0.04 +Monster Hunter Frontier Online: Season 9.0,X360,2010,Role-Playing,Capcom,0,0,0.04,0,0.04 +Winning Post 8,PSV,2014,Racing,Tecmo Koei,0,0,0.04,0,0.04 +C.O.R.E.,DS,2009,Shooter,Graffiti,0.03,0,0,0,0.04 +Garfield: The Search for Pooky,GBA,2003,Platform,Game Factory,0.03,0.01,0,0,0.04 +Rugby World Cup 2015,PSV,2015,Sports,Ubisoft,0,0.03,0,0.01,0.04 +Galaxy Fight,SAT,1994,Fighting,Sunsoft,0,0,0.04,0,0.04 +Chaos Wars,PS2,2006,Strategy,Idea Factory,0,0,0.04,0,0.04 +Steambot Chronicles,PS2,2005,Role-Playing,505 Games,0.02,0.01,0,0,0.04 +Toki no Kizuna: Sekigahara Kitan,PSP,2012,Action,Idea Factory,0,0,0.04,0,0.04 +Mr. Driller,PS,1999,Puzzle,Namco Bandai Games,0.02,0.01,0,0,0.04 +Norn9: Norn + Nonette,PSP,2013,Adventure,Idea Factory,0,0,0.04,0,0.04 +Super Hero Generation,PSV,2014,Role-Playing,Namco Bandai Games,0,0,0.04,0,0.04 +Simple DS Series Vol. 15: The Kanshikikan 2 - Aratanaru 8-tsu no Jiken wo Touch seyo,DS,2007,Adventure,D3Publisher,0,0,0.04,0,0.04 +Gumby vs. the Astrobots,GBA,2005,Action,Namco Bandai Games,0.03,0.01,0,0,0.04 +Trine 2,PC,2011,Platform,Focus Home Interactive,0,0.03,0,0.01,0.04 +Doraemon: Shin Nobita no Nihon Tanjou,3DS,2016,Misc,FuRyu,0,0,0.04,0,0.04 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 13: Shinseiki Evangelion - Yakusoku no Toki,PS2,2008,Misc,D3Publisher,0,0,0.04,0,0.04 +Worms: Ultimate Mayhem,PC,2011,Strategy,Unknown,0,0.03,0,0,0.04 +Scaler,GC,2004,Platform,Take-Two Interactive,0.03,0.01,0,0,0.04 +NHL Legacy,PS3,2015,Action,Electronic Arts,0.03,0,0,0.01,0.04 +"Chaos,Head Noah",X360,2009,Adventure,5pb,0,0,0.04,0,0.04 +Tears to Tiara Anecdotes: The Secret of Avalon,PS3,2009,Strategy,Aqua Plus,0,0,0.04,0,0.04 +Legasista,PS3,2012,Role-Playing,Nippon Ichi Software,0,0,0.04,0,0.04 +Fatal Fury: Battle Archives Volume 1,PS2,2006,Fighting,Ignition Entertainment,0.02,0.01,0,0,0.04 +The Night of the Rabbit,PC,2013,Adventure,Daedalic Entertainment,0,0.03,0,0,0.04 +Harukanaru Toki no Naka de 3: Unmei no Meikyuu Aizouban,PSP,2009,Adventure,Tecmo Koei,0,0,0.04,0,0.04 +Rhapsody: A Musical Adventure,PS,1998,Role-Playing,Nippon Ichi Software,0.02,0.01,0,0,0.04 +NHL 16,PS3,2015,Sports,Electronic Arts,0,0.03,0,0.01,0.04 +Destiny: The Collection,XOne,2016,Shooter,Activision,0.01,0.02,0,0,0.04 +Music Maker: Rockstar,PS2,2009,Misc,Magix,0.02,0.01,0,0,0.04 +Fading Shadows,PSP,2008,Puzzle,Ivolgamus,0.03,0,0,0,0.04 +Formula 1 06,PS2,2006,Racing,Sony Computer Entertainment,0,0,0.04,0,0.04 +Without Warning,PS2,2005,Shooter,Capcom,0.02,0.01,0,0,0.04 +"Minna de Jibun no Setsumeisho: B-Kata, A-Kata, AB-Kata, O-Kata",DS,2008,Misc,GungHo,0,0,0.04,0,0.04 +Smashing Drive,XB,2002,Racing,Namco Bandai Games,0.03,0.01,0,0,0.04 +Age of Mythology: The Titans,PC,2003,Strategy,Microsoft Game Studios,0.01,0.02,0,0,0.04 +Fighting Vipers 2,DC,2000,Fighting,Sega,0,0,0.04,0,0.04 +Teenage Mutant Ninja Turtles 3: Mutant Nightmare,XB,2005,Action,Konami Digital Entertainment,0.03,0.01,0,0,0.04 +Sudoku Ball Detective,Wii,2009,Puzzle,Playlogic Game Factory,0.02,0.01,0,0,0.04 +12-Sai. Koisuru Diary,3DS,2016,Adventure,Happinet,0,0,0.04,0,0.04 +Castlevania: Lords of Shadow - Reverie,PS3,2011,Action,Konami Digital Entertainment,0.02,0.01,0,0.01,0.04 +Napoleon Dynamite: The Game,PSP,2007,Puzzle,Crave Entertainment,0.03,0,0,0,0.04 +Beatdown: Fists of Vengeance,XB,2005,Action,Capcom,0.03,0.01,0,0,0.04 +Enchanted Arms (JP sales),PS3,2007,Role-Playing,Ubisoft,0,0,0.04,0,0.04 +Monster Force,GBA,2002,Shooter,Universal Interactive,0.03,0.01,0,0,0.04 +World of Goo,PC,2008,Puzzle,2D Boy,0,0.03,0,0.01,0.04 +Onsei Kanjou Sokuteiki: Kokoro Scan,DS,2007,Misc,Sega,0,0,0.04,0,0.04 +Clock Zero: Shuuen no Ichibyou Portable,PSP,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +San Goku Shi DS 3,DS,2010,Strategy,Tecmo Koei,0,0,0.04,0,0.04 +Trick x Logic: Season 2,PSP,2010,Adventure,Sony Computer Entertainment,0,0,0.04,0,0.04 +Challenge Me: Word Puzzles,DS,2011,Puzzle,O-Games,0.03,0,0,0,0.04 +Hakuouki: Zuisouroku,PS2,2009,Adventure,Idea Factory,0,0,0.04,0,0.04 +World in Conflict,PC,2007,Strategy,Vivendi Games,0,0.03,0,0.01,0.04 +World Championship Pool 2004,XB,2003,Sports,Jaleco,0.03,0.01,0,0,0.04 +Derby Tsuku 5: Derby Uma o Tsukurou!,PS2,2006,Sports,Sega,0,0,0.04,0,0.04 +S.T.A.L.K.E.R.: Clear Sky,PC,2008,Shooter,Deep Silver,0,0.03,0,0.01,0.04 +Jikkyou Powerful Major League 2009,Wii,2009,Sports,Konami Digital Entertainment,0,0,0.04,0,0.04 +SD Gundam Force: Showdown!,PS2,2004,Shooter,Namco Bandai Games,0.02,0.01,0,0,0.04 +Ray Gigant,PSV,2015,Role-Playing,Namco Bandai Games,0,0,0.04,0,0.04 +Negima!? 3-Jikanme ~Koi to Mahou to Sekaiju Densetsu~,PS2,2006,Adventure,Konami Digital Entertainment,0,0,0.04,0,0.04 +Flow: Urban Dance Uprising,PS2,2005,Misc,Ubisoft,0.02,0.01,0,0,0.04 +Ailu de Puzzle,PSP,2012,Action,Capcom,0,0,0.04,0,0.04 +World in Conflict: Complete Edition,PC,2009,Strategy,Ubisoft,0,0.03,0,0.01,0.04 +True Pinball,PS,1996,Misc,Ocean,0.02,0.01,0,0,0.04 +Jane's Hotel,DS,2010,Simulation,Unknown,0.03,0,0,0,0.04 +Stadium Games,GBA,2003,Sports,Ignition Entertainment,0.03,0.01,0,0,0.04 +RLH: Run Like Hell,XB,2003,Shooter,Avalon Interactive,0.03,0.01,0,0,0.04 +Power Play Pool,DS,2006,Sports,System 3 Arcade Software,0.03,0,0,0,0.04 +J-League Pro Striker 2,GEN,1994,Sports,Sega,0,0,0.04,0,0.04 +Obscure,XB,2004,Adventure,MC2 Entertainment,0.03,0.01,0,0,0.04 +Caesar III,PC,1998,Strategy,Vivendi Games,0,0.03,0,0.01,0.04 +Super Robot Taisen: Scramble Commander the 2nd,PS2,2007,Strategy,Banpresto,0,0,0.04,0,0.04 +Mahjong Taikai,DS,2004,Misc,Tecmo Koei,0,0,0.04,0,0.04 +Tomb Raider: Anniversary,PC,2007,Action,Eidos Interactive,0,0.03,0,0.01,0.04 +Espgaluda II Black Label,X360,2010,Shooter,Cave,0,0,0.04,0,0.04 +The Croods: Prehistoric Party!,3DS,2013,Misc,D3Publisher,0.01,0.02,0,0,0.04 +Bratz Kidz,DS,2008,Misc,Game Factory,0.03,0,0,0,0.04 +Hot Potato!,GBA,2001,Action,BAM! Entertainment,0.03,0.01,0,0,0.04 +Barbie and Her Sisters Puppy Rescue,3DS,2015,Action,Namco Bandai Games,0,0.03,0,0,0.04 +Kiniro no Corda 2 f,PSP,2009,Role-Playing,Tecmo Koei,0,0,0.04,0,0.04 +Swords,Wii,,Fighting,Unknown,0.03,0,0,0,0.04 +Winter Sports 3: The Great Tournament,PS3,2010,Sports,Tradewest,0,0.03,0,0.01,0.04 +Deception III: Dark Delusion,PS,1999,Role-Playing,Tecmo Koei,0.02,0.01,0,0,0.04 +Gothic Universe,PC,2007,Role-Playing,JoWood Productions,0,0.03,0,0.01,0.04 +Ultimate Game Room,DS,2009,Misc,Majesco Entertainment,0.03,0,0,0,0.04 +Alpha Protocol,PC,2010,Role-Playing,Sega,0,0.03,0,0.01,0.04 +Penguins of Madagascar,WiiU,2014,Action,Namco Bandai Games,0.01,0.02,0,0,0.04 +Nobunaga's Ambition II,3DS,2015,Strategy,Tecmo Koei,0,0,0.04,0,0.04 +DarkStar One,PC,2006,Simulation,Ubisoft,0,0.03,0,0.01,0.04 +Half-Minute Hero 2,PSP,,Role-Playing,Rising Star Games,0,0,0.04,0,0.04 +Clockwork Empires,PC,,Strategy,Unknown,0,0.03,0,0,0.04 +Monster Kingdom: Jewel Summoner,PSP,2006,Role-Playing,Sony Computer Entertainment,0,0,0.04,0,0.04 +Cook Wars,Wii,2009,Misc,Ubisoft,0.03,0,0,0,0.04 +Kuroshitsuji: Phantom & Ghost,DS,2009,Action,Square Enix,0,0,0.04,0,0.04 +Petz: Catz Playground,DS,2010,Simulation,Ubisoft,0.03,0,0,0,0.04 +Pirates: Duels on the High Seas,DS,2008,Action,Oxygen Interactive,0.03,0,0,0,0.04 +Fushigi no Dungeon: Fuurai no Shiren 5 - Fortune Tower to Unmei no Dice,DS,2010,Role-Playing,ChunSoft,0,0,0.04,0,0.04 +Sins of a Solar Empire: Trinity,PC,2010,Strategy,Kalypso Media,0,0.03,0,0.01,0.04 +Shin Koihime Musou: Otome Ryouran * Sangokushi Engi - Shu-Hen,PSP,2010,Adventure,Yeti,0,0,0.04,0,0.04 +Mahjong 300,DS,2011,Puzzle,Avanquest,0,0.03,0,0,0.04 +The Ant Bully,GBA,2006,Platform,Midway Games,0.03,0.01,0,0,0.04 +Sega Arcade Gallery,GBA,2003,Misc,THQ,0.03,0.01,0,0,0.04 +Crazy Machines,DS,2008,Puzzle,DTP Entertainment,0,0.03,0,0,0.04 +Astrology DS,DS,2009,Misc,Deep Silver,0.03,0,0,0,0.04 +"My World, My Way (US sales)",DS,2008,Role-Playing,Global A Entertainment,0.04,0,0,0,0.04 +Planescape: Torment,PC,1998,Role-Playing,Interplay,0.01,0.02,0,0.01,0.04 +Tao Adventure: Curse Demon,DS,2005,Role-Playing,Konami Digital Entertainment,0.03,0,0,0,0.04 +Aegis of Earth: Protonovus Assault,PSV,2016,Action,PQube,0.02,0.01,0,0.01,0.04 +Hello Kitty: Roller Rescue,PC,2005,Action,Empire Interactive,0,0.03,0,0,0.04 +Double Value!: ATV Thunder Ridge Riders / Monster Trucks Mayhem,DS,2007,Racing,Zoo Digital Publishing,0.03,0,0,0,0.04 +A Game of Thrones: Genesis,PC,2011,Strategy,Focus Home Interactive,0,0.03,0,0.01,0.04 +Hotel Giant 2,PC,2008,Strategy,JoWood Productions,0,0.03,0,0.01,0.04 +NHRA Drag Racing: Countdown to the Championship,PS2,2007,Racing,THQ,0.02,0.01,0,0,0.04 +Black Stone: Magic & Steel,XB,2003,Role-Playing,THQ,0.03,0.01,0,0,0.04 +MLB 15: The Show,PSV,2015,Sports,Sony Computer Entertainment,0.03,0,0,0.01,0.04 +Puyo Pop Fever(us sales),DS,2004,Puzzle,Ignition Entertainment,0.03,0,0,0,0.04 +Hitman: Blood Money,PC,2006,Action,Eidos Interactive,0,0.03,0,0.01,0.04 +Assassin's Creed Chronicles: China,PS4,2015,Action,Ubisoft,0,0.03,0,0.01,0.04 +The Cursed Crusade,PC,2011,Action,DTP Entertainment,0,0.03,0,0.01,0.04 +Harukanaru Toki no Naka de: Maihitoyo,PS2,2006,Adventure,Tecmo Koei,0,0,0.04,0,0.04 +Painkiller: Hell Wars,XB,2006,Shooter,DreamCatcher Interactive,0.03,0.01,0,0,0.04 +Housekeeping,DS,,Action,,0,0,0.04,0,0.04 +FunkMaster Flex's Digital Hitz Factory,PS2,2003,Misc,Jester Interactive,0.02,0.01,0,0,0.04 +Star Wars Jedi Knight: Jedi Academy,PC,2003,Shooter,Activision,0,0.03,0,0.01,0.04 +Greg Hastings Paintball 2,PS3,2010,Shooter,Majesco Entertainment,0.03,0,0,0,0.04 +Sangoku Koi Senki: Otome no Heihou!,PSP,2012,Adventure,Prototype,0,0,0.04,0,0.04 +Batman: A Telltale Game Series,PS4,2016,Adventure,Telltale Games,0.01,0.02,0,0.01,0.04 +Castlevania Bloodlines,GEN,1994,Platform,Konami Digital Entertainment,0,0,0.04,0,0.04 +Hakuouki: Zuisouroku DS,DS,2011,Adventure,Idea Factory,0,0,0.04,0,0.04 +Might & Magic X: Legacy,PC,2014,Role-Playing,Ubisoft,0,0.03,0,0,0.04 +Detective Conan: Prelude from the Past,PSP,2012,Action,Namco Bandai Games,0,0,0.04,0,0.04 +Luminous Arc 3,DS,2009,Role-Playing,Marvelous Interactive,0,0,0.04,0,0.04 +Major League Baseball 2K8,PSP,,Sports,Unknown,0.03,0,0,0,0.03 +FabStyle,3DS,2011,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +Rebel Raiders: Operation Nighthawk,PS2,2006,Simulation,Kando Games,0.02,0.01,0,0,0.03 +Turbo: Super Stunt Squad,DS,2013,Sports,D3Publisher,0,0.03,0,0,0.03 +Zenkoku Dekotora Matsuri,Wii,2008,Racing,Jaleco,0,0,0.03,0,0.03 +Adventure Time: Explore the Dungeon Because I Don't Know!,WiiU,2013,Action,D3Publisher,0.02,0.01,0,0,0.03 +Fast & Furious: Showdown,PS3,2013,Action,Activision,0,0.03,0,0,0.03 +Alienators: Evolution Continues,GBA,2001,Action,Activision,0.03,0.01,0,0,0.03 +Onechanbara Z Kagura,PS3,2013,Action,D3Publisher,0,0,0.03,0,0.03 +Marines: Modern Urban Combat,Wii,2010,Shooter,O-Games,0.03,0,0,0,0.03 +DoraMoji: Nobita no Kanji Daisakusen,3DS,2015,Misc,Shogakukan,0,0,0.03,0,0.03 +Gekiatsu!! Pachi Game Tamashi: CR Evangelion - Hajimari no Fukuin,PS3,2010,Misc,Unknown,0,0,0.03,0,0.03 +Supreme Ruler: Cold War,PC,2011,Strategy,Paradox Interactive,0,0.03,0,0.01,0.03 +Travel Coach: Europe 1,DS,2008,Misc,HMH Interactive,0,0.03,0,0,0.03 +Top Gun: Hard Lock,PS3,2012,Action,505 Games,0,0.03,0,0.01,0.03 +MX World Tour Featuring Jamie Little,XB,2005,Racing,Crave Entertainment,0.03,0.01,0,0,0.03 +XBLAZE Code: Embryo,PS3,2013,Adventure,Arc System Works,0.02,0,0.01,0,0.03 +The Idolmaster: Gravure For You! Vol. 4,PS3,2012,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +RedCard 20-03,XB,2002,Sports,Midway Games,0.03,0.01,0,0,0.03 +Katekyoo Hitman Reborn! DS: Fate of Heat II - Unmei no Futari,DS,2009,Role-Playing,Marvelous Interactive,0,0,0.03,0,0.03 +Puyo Puyo 7,PSP,2009,Puzzle,Sega,0,0,0.03,0,0.03 +Asterix & Obelix: Kick Buttix,PS2,2004,Action,Atari,0.02,0.01,0,0,0.03 +Radiant Silvergun,SAT,1998,Shooter,ESP,0,0,0.03,0,0.03 +Bounty Hounds,PSP,2006,Action,Namco Bandai Games,0.03,0,0,0,0.03 +Care Bears - Care Quest,GBA,2005,Action,Game Factory,0.02,0.01,0,0,0.03 +Apache: Air Assault,PC,2010,Simulation,Just Flight,0,0.03,0,0.01,0.03 +Cooking Mama: My Sweets Shop,3DS,2014,Simulation,Office Create,0,0,0.03,0,0.03 +Championship Manager Season 01/02,PC,2001,Sports,Eidos Interactive,0,0.03,0,0.01,0.03 +Even in a Game Listen to Me Girls. I Am Your Father!,PSP,2012,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Tokyo Majin Gakuen: Kenfuuchou,DS,2008,Adventure,Marvelous Interactive,0,0,0.03,0,0.03 +Boboboubo Boubobo: Ougi 87.5 Bakuretsu Hanage Shinken,GBA,2002,Action,Hudson Soft,0,0,0.03,0,0.03 +Zatch Bell! Electric Arena,GBA,2003,Fighting,Banpresto,0.02,0.01,0,0,0.03 +Boulder Dash: Rocks!,DS,2007,Puzzle,10TACLE Studios,0,0.03,0,0,0.03 +NHRA Drag Racing: Countdown to the Championship,PSP,2007,Racing,THQ,0.03,0,0,0,0.03 +The Void,PC,2008,Adventure,Mamba Games,0,0.03,0,0.01,0.03 +TOCA Race Driver 3,XB,2006,Racing,Codemasters,0.03,0.01,0,0,0.03 +Daito Giken Premium Pachi-Slot Collection: Yoshimune,PS2,2006,Misc,Daito,0,0,0.03,0,0.03 +Maximum Racing: Drag & Stock Racer,Wii,2010,Racing,Nordic Games,0.03,0,0,0,0.03 +Sky Dancers,GBA,2005,Action,Crave Entertainment,0.02,0.01,0,0,0.03 +Silent Scope,GBA,2002,Shooter,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Resident Evil 4 HD,PS4,2016,Shooter,Capcom,0.03,0,0,0.01,0.03 +World Series of Poker: Tournament of Champions 2007 Edition,PS2,2006,Misc,Activision,0.02,0.01,0,0,0.03 +Clever Kids: Pirates,DS,2008,Misc,Midas Interactive Entertainment,0,0.03,0,0,0.03 +Yggdra Union: We'll Never Fight Alone,GBA,2006,Role-Playing,Sting,0,0,0.03,0,0.03 +Tour de France 2014,PS4,2014,Sports,Focus Home Interactive,0,0.03,0,0,0.03 +Gekiatsu!! Pachi Game Tamashi Max: Evangelion 7 x Seimei no Kodou,PS3,2012,Misc,Fields,0,0,0.03,0,0.03 +Rapala Tournament Fishing!,X360,2006,Sports,Activision,0.03,0,0,0,0.03 +The Legend of Heroes: Trails in the Sky SC Evolution,PSV,2015,Role-Playing,Kadokawa Games,0,0,0.03,0,0.03 +Prey,PC,2006,Shooter,Take-Two Interactive,0,0.03,0,0.01,0.03 +Wangan Midnight,PS3,2007,Racing,Genki,0,0,0.03,0,0.03 +ESPN NBA 2Night 2002,PS2,2002,Sports,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Cabela's Dangerous Hunts 2,GC,2005,Sports,Activision,0.03,0.01,0,0,0.03 +SpongeBob: HeroPants,3DS,2015,Platform,Activision,0.03,0,0,0,0.03 +Kekkaishi: Kokubourou no Kage,Wii,2007,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Trap Gunner: Countdown to Oblivion,PS,1998,Strategy,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Suzumiya Haruhi no Tsuisou,PS3,2011,Adventure,Namco Bandai Games,0,0,0.03,0,0.03 +Mame Goma: Shiro to Kuro no Meikyuu,3DS,2012,Action,Nippon Ichi Software,0,0,0.03,0,0.03 +"Crouching Tiger, Hidden Dragon",GBA,2003,Action,Ubisoft,0.02,0.01,0,0,0.03 +Clash of Elementalists,3DS,2013,Action,Unknown,0,0.03,0,0,0.03 +Simple DS Series Vol. 8: The Kanshikikan - Kinkyuu Shutsudou!! Jiken Genba wo Touch Seyo,DS,2006,Adventure,D3Publisher,0,0,0.03,0,0.03 +Harukanaru Toki no Naka de Yumenoukihashi Special,PS2,2009,Adventure,Tecmo Koei,0,0,0.03,0,0.03 +Rise of Nations: Rise of Legends,PC,2006,Strategy,Microsoft Game Studios,0,0.03,0,0.01,0.03 +Sabre Wulf,GBA,,Platform,THQ,0.02,0.01,0,0,0.03 +Tsuyo Kiss: Mighty Heart,PS2,2006,Adventure,Princess Soft,0,0,0.03,0,0.03 +Zoo Tycoon,PC,2001,Strategy,Microsoft Game Studios,0,0.03,0,0.01,0.03 +Gacharoku,PS2,2002,Misc,Sony Computer Entertainment,0,0,0.03,0,0.03 +SX Superstar,GC,2003,Racing,Acclaim Entertainment,0.03,0.01,0,0,0.03 +Cake Mania: Baker's Challenge,PSP,2008,Puzzle,Destineer,0.03,0,0,0,0.03 +MotoGP,PSP,2006,Racing,Sony Computer Entertainment,0.03,0,0,0,0.03 +Zoo Vet: Endangered Animals,DS,2008,Simulation,505 Games,0.03,0,0,0,0.03 +Deer Drive: Legends,3DS,2012,Action,Maximum Family Games,0.03,0,0,0,0.03 +Driven,GBA,2001,Racing,BAM! Entertainment,0.02,0.01,0,0,0.03 +Red Faction II,GC,2003,Shooter,THQ,0.03,0.01,0,0,0.03 +Criminal Girls 2,PSV,2015,Role-Playing,Nippon Ichi Software,0,0,0.03,0,0.03 +SD Gundam G Generation: Gather Beat 2,WS,2001,Strategy,Namco Bandai Games,0,0,0.03,0,0.03 +Original Story from Fairy Tail: Gekitotsu! Kardia Daiseidou,DS,2011,Role-Playing,Hudson Soft,0,0,0.03,0,0.03 +Who Wants to be a Millionaire: 1st Edition,Wii,2007,Misc,Ubisoft,0,0.03,0,0,0.03 +Diabolik Lovers: Dark Fate,PSV,2015,Action,Idea Factory,0,0,0.03,0,0.03 +Battle Engine Aquila,PS2,2003,Shooter,Atari,0.02,0.01,0,0,0.03 +Astonishia Story,PSP,2006,Role-Playing,Ubisoft,0.03,0,0,0,0.03 +Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden,PS3,2016,Misc,Tecmo Koei,0,0,0.03,0,0.03 +Special Forces: Nemesis Strike,XB,2005,Shooter,Hip Interactive,0.03,0.01,0,0,0.03 +Women's Volleyball Championship,PS2,2007,Sports,Spike,0,0,0.03,0,0.03 +Junior Island Adventure,DS,2011,Puzzle,Unknown,0.03,0,0,0,0.03 +Jikkyou Powerful Pro Yakyuu Wii Ketteiban,Wii,2007,Sports,Konami Digital Entertainment,0,0,0.03,0,0.03 +MX vs. ATV Supercross,PS3,2014,Racing,Nordic Games,0.02,0.01,0,0.01,0.03 +Rakushou! Pachi-Slot Sengen 5: Rio Paradise,PS2,2007,Misc,Tecmo Koei,0,0,0.03,0,0.03 +Sacra Terra: Angelic Night,PC,2011,Puzzle,Avanquest,0.01,0.02,0,0.01,0.03 +Teenage Mutant Ninja Turtles: Mutants in Manhattan,XOne,2016,Action,Activision,0.02,0.01,0,0,0.03 +Battle Assault 3 featuring Gundam Seed,PS2,2004,Action,Namco Bandai Games,0.02,0.01,0,0,0.03 +Crimson Tears,PS2,2004,Role-Playing,Capcom,0.02,0.01,0,0,0.03 +Hayate no Gotoku! Ojousama Produce Daisakusen Boku Iro ni Somare! Oyashiki-Hen,DS,2008,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Batman Forever: The Arcade Game,PS,1996,Action,Acclaim Entertainment,0.02,0.01,0,0,0.03 +Romance of the Three Kingdoms (3DS),3DS,2013,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +Electroplankton,DS,2005,Misc,Nintendo,0.01,0,0.02,0,0.03 +Cabela's Outdoor Adventures,GC,2005,Sports,Activision,0.03,0.01,0,0,0.03 +Makai Senki Disgaea 4: Fuuka & Desco-hen Hajime Mashita,PS3,2011,Strategy,Nippon Ichi Software,0,0,0.03,0,0.03 +Backyard NFL Football 2006,GBA,2005,Sports,Atari,0.02,0.01,0,0,0.03 +Game of Thrones (Telltale),X360,2015,Adventure,Telltale Games,0.02,0.01,0,0,0.03 +Mashiro Iro Symphony: *mutsu-no-hana,PSP,2011,Adventure,Comfort,0,0,0.03,0,0.03 +Monster Guardians,GBA,2001,Role-Playing,Konami Digital Entertainment,0,0,0.03,0,0.03 +Sunday vs Magazine Shuuketsu! Choujou Daikessen,PSP,2009,Fighting,Konami Digital Entertainment,0,0,0.03,0,0.03 +An American Tail: Fievel's Gold Rush,GBA,2002,Platform,Conspiracy Entertainment,0.02,0.01,0,0,0.03 +Dead or Alive Xtreme 3: Venus,PSV,2016,Sports,Tecmo Koei,0,0,0.03,0,0.03 +Diabolik Lovers: More Blood,PSP,2013,Adventure,Idea Factory,0,0,0.03,0,0.03 +Magna Carta Portable,PSP,2006,Role-Playing,Banpresto,0,0,0.03,0,0.03 +Red Faction: Guerrilla,PC,2009,Shooter,THQ,0,0.03,0,0.01,0.03 +The Italian Job,GC,2003,Racing,Eidos Interactive,0.03,0.01,0,0,0.03 +Crazy Chicken: Star Karts,DS,2008,Racing,Phenomedia,0.03,0,0,0,0.03 +Detective Conan: Phantom Rhapsody,3DS,2014,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Super Dodgeball Brawlers (jp sales),DS,2008,Sports,Arc System Works,0,0,0.03,0,0.03 +Makai Senki Disgaea Portable: Tsuushin Taisen Hajime Mashita,PSP,2007,Role-Playing,Nippon Ichi Software,0,0,0.03,0,0.03 +M&Ms Shell Shocked,PS,2001,Action,Berkeley,0.02,0.01,0,0,0.03 +RACE On,PC,2009,Racing,bitComposer Games,0,0.03,0,0.01,0.03 +K-On! After School Live!! HD Ver.,PS3,2012,Action,Sega,0,0,0.03,0,0.03 +Metal Gear Solid: The Essential Collection (JP sales),PS2,2007,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +Overlord II,PC,2009,Action,Codemasters,0,0.03,0,0.01,0.03 +Young Justice: Legacy,Wii,2013,Action,Namco Bandai Games,0,0.03,0,0,0.03 +3D Baseball,PS,1996,Sports,BMG Interactive Entertainment,0.02,0.01,0,0,0.03 +Pachitte Chonmage Tatsujin 12: Pachinko Ultraman,PS2,2007,Misc,Hackberry,0,0,0.03,0,0.03 +First Queen: Ornic Senki,SNES,1994,Role-Playing,Culture Brain,0,0,0.03,0,0.03 +Call of Juarez: Bound in Blood,PC,2009,Shooter,Ubisoft,0,0.03,0,0.01,0.03 +Dream C Club Zero,X360,2011,Simulation,D3Publisher,0,0,0.03,0,0.03 +Shining Stars,DS,2008,Action,"Destination Software, Inc",0.03,0,0,0,0.03 +Tail Concerto,PS,1998,Adventure,Namco Bandai Games,0.02,0.01,0,0,0.03 +The Sum of All Fears,GC,2003,Shooter,Ubisoft,0.03,0.01,0,0,0.03 +James Pond: Codename Robocod,GBA,2005,Platform,Play It,0.02,0.01,0,0,0.03 +Yumi's Odd Odyssey,3DS,2013,Platform,Agatsuma Entertainment,0,0,0.03,0,0.03 +Night Head: The Labyrinth,PS,1995,Adventure,Fuji,0,0,0.03,0,0.03 +JoJo's Bizarre Adventure: Eyes of Heaven,PS4,2015,Fighting,Namco Bandai Games,0,0,0.03,0,0.03 +Angler's Club: Ultimate Bass Fishing 3D,3DS,2011,Sports,D3Publisher,0,0.03,0,0,0.03 +Utawarerumono Portable,PSP,2009,Role-Playing,Aqua Plus,0,0,0.03,0,0.03 +Gaia Saver Hero Saidai no Sakusen,SNES,1994,Role-Playing,Banpresto,0,0,0.03,0,0.03 +EverBlue 2,PS2,2002,Adventure,Capcom,0.02,0.01,0,0,0.03 +Emma at the Farm,DS,2008,Adventure,Aspyr,0.03,0,0,0,0.03 +NASCAR Heat Evolution,PS4,2016,Racing,Dusenberry Martin Racing,0.03,0,0,0.01,0.03 +Higurashi no Naku Koro ni Kizuna: Dai-San-Kan - Rasen,DS,2009,Adventure,Alchemist,0,0,0.03,0,0.03 +The Sims 2: Glamour Life Stuff,PC,2006,Simulation,Electronic Arts,0,0.03,0,0.01,0.03 +Safari Adventures: Africa,Wii,2007,Adventure,Neko Entertainment,0.03,0,0,0,0.03 +Summer Athletics: The Ultimate Challenge,X360,2008,Sports,DTP Entertainment,0.02,0.01,0,0,0.03 +Prince of Persia: The Forgotten Sands,PC,2010,Action,Ubisoft,0,0.03,0,0,0.03 +Yumeiro Patissiere: My Sweets Cooking,DS,2010,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Daito Giken Koushiki Pachi-Slot Simulator: Yoshimune Portable,PSP,2006,Misc,Daito,0,0,0.03,0,0.03 +Clannad,PS3,2011,Adventure,Prototype,0,0,0.03,0,0.03 +Maximum Racing: GP Classic Racing,Wii,2010,Racing,Nordic Games,0.03,0,0,0,0.03 +Trials Fusion,PC,2014,Racing,Ubisoft,0,0.03,0,0,0.03 +Rugby League Live 3,PS3,2015,Action,Tru Blu Entertainment,0,0.03,0,0,0.03 +PowerSlave,PS,1996,Shooter,BMG Interactive Entertainment,0.02,0.01,0,0,0.03 +Legend of the Dragon,PSP,2007,Fighting,Game Factory,0.03,0,0,0,0.03 +Project Gotham Racing 2 (JP weekly sales),XB,2003,Action,Microsoft Game Studios,0,0,0.03,0,0.03 +Ukiyo no Shishi,PS3,2015,Action,Namco Bandai Games,0,0,0.03,0,0.03 +The Binding of Isaac,PC,2012,Action,Unknown,0,0.03,0,0,0.03 +CT Special Forces,GBA,2002,Action,LSP Games,0.02,0.01,0,0,0.03 +FIFA World Cup: Germany 2006,GBA,2006,Sports,Electronic Arts,0.02,0.01,0,0,0.03 +Jewel Master: Cradle of Rome,Wii,2008,Puzzle,Rondomedia,0.03,0,0,0,0.03 +Midnight Mysteries: The Edgar Allan Poe Conspiracy,PC,2009,Adventure,GSP,0,0.03,0,0.01,0.03 +Beastly,Wii,2011,Misc,Unknown,0.03,0,0,0,0.03 +Crash Time: Autobahn Pusuit,X360,2008,Racing,RTL,0.03,0,0,0,0.03 +Earthworm Jim 2,GBA,2002,Platform,Vivendi Games,0.02,0.01,0,0,0.03 +Garfield: A Tale of Two Kitties,DS,2006,Platform,Game Factory,0.03,0,0,0,0.03 +Tamagotchi no Doki Doki Dream Omisecchi,3DS,2013,Simulation,Namco Bandai Games,0,0,0.03,0,0.03 +Toushin Toshi,3DS,2014,Role-Playing,imageepoch Inc.,0,0,0.03,0,0.03 +Suujin Taisen,DS,2007,Strategy,Nintendo,0,0,0.03,0,0.03 +SBK 2011: FIM Superbike World Championship,PC,2011,Racing,Black Bean Games,0,0.03,0,0.01,0.03 +Driv3r,GBA,2005,Racing,Atari,0.02,0.01,0,0,0.03 +Street Supremacy,PSP,2005,Racing,Konami Digital Entertainment,0.03,0,0,0,0.03 +Combat Mission: Shock Force,PC,2007,Strategy,Paradox Interactive,0,0.03,0,0.01,0.03 +Rome: Total War - Gold Edition,PC,2006,Strategy,Sega,0,0.03,0,0.01,0.03 +House M.D.,DS,2010,Adventure,Mindscape,0.02,0.01,0,0,0.03 +Mystery Case Files: Ravenhearst,PC,2007,Puzzle,Focus Home Interactive,0.01,0.02,0,0.01,0.03 +YoKai Watch Dance: Just Dance Special Version,WiiU,2015,Misc,Level 5,0,0,0.03,0,0.03 +River King: Mystic Valley (jp sales),DS,2007,Sports,Rising Star Games,0,0,0.03,0,0.03 +Winning Post World,PS2,2009,Sports,Tecmo Koei,0,0,0.03,0,0.03 +Jig-A-Pix: Wild World,DS,2009,Puzzle,Zushi Games,0.03,0.01,0,0,0.03 +Best Friends Tonight,DS,2010,Misc,Ubisoft,0.03,0,0,0,0.03 +Beyond the Labyrinth,3DS,,Role-Playing,Unknown,0,0,0.03,0,0.03 +Living Legends: Frozen Beauty,PC,2014,Action,Big Fish Games,0,0.03,0,0,0.03 +Super Hero Generation,PS3,2014,Role-Playing,Namco Bandai Games,0,0,0.03,0,0.03 +.hack: Sekai no Mukou ni + Versus,PS3,2012,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Sea Park Tycoon,DS,2010,Simulation,Foreign Media Games,0.02,0.01,0,0,0.03 +Disney Sports Soccer,GC,2002,Sports,Konami Digital Entertainment,0.03,0.01,0,0,0.03 +Cooking Mama 5: Bon Appetit!,3DS,2013,Simulation,Office Create,0,0,0.03,0,0.03 +Mame Goma: Honobo no Nikki,DS,2007,Simulation,TDK Core,0,0,0.03,0,0.03 +Guitar Hero: World Tour,PC,2009,Misc,Aspyr,0,0.03,0,0.01,0.03 +Nancy Drew: Alibi In Ashes,PC,2011,Adventure,Her Interactive,0.03,0,0,0,0.03 +The Walking Dead: Season One,PC,2012,Adventure,Avanquest Software,0,0.03,0,0.01,0.03 +Ultimate Block Party,PSP,2004,Puzzle,505 Games,0.03,0,0,0,0.03 +Disney's Hide & Sneak,GC,2003,Action,Capcom,0.03,0.01,0,0,0.03 +Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice,PSV,2013,Strategy,Namco Bandai Games,0,0,0.03,0,0.03 +Nobunaga no Yabou: Kakushin with Power-Up Kit,PS2,2008,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +Raw Danger!,PS2,2006,Action,505 Games,0.02,0.01,0,0,0.03 +Arthur and the Invisibles,DS,2007,Adventure,Atari,0.03,0,0,0,0.03 +Flipper Critters,DS,2007,Simulation,Conspiracy Entertainment,0.03,0,0,0,0.03 +Medarot 9: Kabuto Ver. / Kuwagata Ver.,3DS,2015,Role-Playing,Rocket Company,0,0,0.03,0,0.03 +Monster Rancher Hop-A-Bout,PS,2000,Action,Tecmo Koei,0.02,0.01,0,0,0.03 +Foto Showdown,DS,2010,Role-Playing,Unknown,0.03,0,0,0,0.03 +Custom Beat Battle: Draglade 2,DS,2008,Fighting,Namco Bandai Games,0,0,0.03,0,0.03 +Gotouchi Kenkei DS,DS,2006,Misc,Spike,0,0,0.03,0,0.03 +Bikkuriman Daijiten,DS,,Misc,,0,0,0.03,0,0.03 +Accel World: Ginyoku no Kakusei,PS3,2012,Adventure,Namco Bandai Games,0,0,0.03,0,0.03 +Elf Bowling 1 & 2,GBA,2005,Sports,Ignition Entertainment,0.02,0.01,0,0,0.03 +Men of War,PC,2009,Strategy,505 Games,0.01,0.02,0,0.01,0.03 +Toy Shop,DS,2008,Simulation,Majesco Entertainment,0.03,0,0,0,0.03 +Metroid Prime: Federation Force,3DS,2016,Action,Nintendo,0.02,0.01,0.01,0,0.03 +GunGriffon: Allied Strike,XB,2004,Simulation,Microsoft Game Studios,0.02,0.01,0,0,0.03 +Stacked with Daniel Negreanu,PSP,2006,Misc,Myelin Media,0.03,0,0,0,0.03 +Vitamin X Evolution,DS,2008,Adventure,D3Publisher,0,0,0.03,0,0.03 +Saru! Get You! SaruSaru Daisakusen,PSP,2007,Platform,Sony Computer Entertainment,0,0,0.03,0,0.03 +Sonic Boom: Fire & Ice,3DS,2016,Platform,Sega,0.03,0,0,0,0.03 +The Flintstones: Big Trouble in Bedrock,GBA,2001,Platform,Swing! Entertainment,0.02,0.01,0,0,0.03 +Hallowed Legends: Samhain,PC,2011,Adventure,Focus Home Interactive,0,0.02,0,0.01,0.03 +Captain Morgane and the Golden Turtle,DS,2012,Adventure,Reef Entertainment,0,0.03,0,0,0.03 +Sekai no Hate Made Itte Q! Chinjuu Hunter Mono no Daibouken,DS,2010,Misc,Kamui,0,0,0.03,0,0.03 +Silverlicious,DS,2012,Action,,0.03,0,0,0,0.03 +Majesty 2: The Fantasy Kingdom Sim,X360,,Simulation,Unknown,0.03,0,0,0,0.03 +Gakusen Toshi Asterisk Festa: Houka Kenran,PSV,2016,Fighting,Namco Bandai Games,0,0,0.03,0,0.03 +BeatMania IIDX 14 Gold,PS2,2008,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +PopCap Arcade Vol 2,X360,2009,Misc,PopCap Games,0.03,0,0,0,0.03 +Toriko: Ultimate Survival,3DS,2013,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Big Ichigeki! Pachi-Slot Taikouryku Universal Museum,SAT,1996,Misc,ASK,0,0,0.03,0,0.03 +Vegas Casino,DS,2007,Misc,Neko Entertainment,0.03,0,0,0,0.03 +Monster High: New Ghoul in School,Wii,2015,Action,Little Orbit,0,0.03,0,0,0.03 +Madou Monogatari,SAT,1998,Role-Playing,Compile,0,0,0.03,0,0.03 +Biker Mice From Mars,DS,2007,Racing,Game Factory,0.03,0,0,0,0.03 +Smart Girl's Winter Wonderland,DS,2008,Misc,UFO Interactive,0.03,0,0,0,0.03 +Tork: Prehistoric Punk,XB,2005,Platform,Microsoft Game Studios,0.02,0.01,0,0,0.03 +Togainu no Chi: True Blood,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.03,0,0.03 +Onna no Ko to Misshitsu ni Itara **shichau Kamoshirenai,3DS,2012,Adventure,D3Publisher,0,0,0.03,0,0.03 +Chicken Shoot 2,GBA,2005,Adventure,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Neverwinter Nights,PC,2002,Role-Playing,Atari,0,0.03,0,0.01,0.03 +East India Company Collection,PC,2010,Misc,Paradox Interactive,0,0.03,0,0,0.03 +Battle vs. Chess,X360,2011,Misc,TopWare Interactive,0,0.03,0,0,0.03 +The Inner World,PC,2013,Adventure,Headup Games,0,0.03,0,0,0.03 +Pachinko Kamen Rider: Shocker Zenmetsu Daisakusen,PS2,2008,Misc,Hackberry,0,0,0.03,0,0.03 +Underground Pool,DS,2007,Sports,UFO Interactive,0.03,0,0,0,0.03 +Accel World: Ginyoku no Kakusei,PSP,2012,Adventure,Namco Bandai Games,0,0,0.03,0,0.03 +Classic Dungeon: Fuyoku no Masoujin,PSP,2010,Role-Playing,Nippon Ichi Software,0,0,0.03,0,0.03 +Alter Ego,PC,1985,Simulation,Activision,0,0.03,0,0.01,0.03 +Dragon's Dogma Online,PS3,2015,Role-Playing,Capcom,0,0,0.03,0,0.03 +Rampo,SAT,1995,Adventure,Sega,0,0,0.03,0,0.03 +River City Super Sports Challenge,DS,2010,Sports,Arc System Works,0.01,0,0.02,0,0.03 +My Pet Shop (JP sales),DS,2008,Simulation,Square Enix,0,0,0.03,0,0.03 +Exstetra,PSV,2013,Role-Playing,FuRyu,0,0,0.03,0,0.03 +Konami Classics Series: Arcade Hits,DS,2007,Misc,Konami Digital Entertainment,0.01,0,0.02,0,0.03 +Dodge Racing: Charger vs Challenger,DS,2009,Racing,Zushi Games,0.03,0,0,0,0.03 +Gokujou!! Mecha Mote Iinchou: MM My Best Friend!,DS,2010,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Atelier Sophie: The Alchemist of the Mysterious Book,PS3,2015,Role-Playing,Tecmo Koei,0,0,0.03,0,0.03 +SingStar Chartbreaker,PS3,2009,Misc,Sony Computer Entertainment,0,0.02,0,0.01,0.03 +Hiiro no Kakera 2: Hisui no Shizuku,PS2,2007,Adventure,Idea Factory,0,0,0.03,0,0.03 +Pro Yakyuu Spirits 5 Kanzenban,PS3,2008,Sports,Konami Digital Entertainment,0,0,0.03,0,0.03 +Sorcery Saga: The Curse of the Great Curry God,PSV,2013,Role-Playing,Rising Star Games,0,0,0.03,0,0.03 +SingStar Fussballhits,PS3,2010,Misc,Sony Computer Entertainment,0,0.02,0,0.01,0.03 +A Good Librarian Like a Good Shepherd: Library Party,PSV,2015,Action,Kaga Create,0,0,0.03,0,0.03 +Dance Factory,PS2,2006,Action,Codemasters,0.02,0.01,0,0,0.03 +LEGO Legends of Chima: Laval's Journey,DS,2013,Adventure,Unknown,0,0.03,0,0,0.03 +Montessori Music,DS,2008,Misc,Oxygen Interactive,0.01,0.02,0,0,0.03 +Totally Spies!,GBA,2005,Platform,Atari,0.02,0.01,0,0,0.03 +DragonHeart: Fire & Steel,PS,1996,Action,Acclaim Entertainment,0.02,0.01,0,0,0.03 +Nishijin Pachinko Monogatari 2,SNES,1996,Misc,KSS,0,0,0.03,0,0.03 +"Chaos,Head - Love Chu*Chu!",X360,2010,Adventure,5pb,0,0,0.03,0,0.03 +Gal Gun: Double Peace,PSV,2015,Action,PQube,0,0.02,0.01,0,0.03 +"PriPara & Pretty Rhythm: PriPara de Tsukaeru Oshare Item 1450!",3DS,2015,Action,Namco Bandai Games,0,0,0.03,0,0.03 +RoadKill,GC,2003,Action,Midway Games,0.02,0.01,0,0,0.03 +The Legend of Heroes III: Song of the Ocean,PSP,2006,Role-Playing,Namco Bandai Games,0.03,0,0,0,0.03 +Dungeon Maker: Hunting Ground,PSP,2006,Role-Playing,Global A Entertainment,0.03,0,0,0,0.03 +Mushihimesama Futari Ver 1.5,X360,2009,Shooter,Cave,0,0,0.03,0,0.03 +F1 2002,GC,2002,Racing,Electronic Arts,0.02,0.01,0,0,0.03 +Pocket Fighter,SAT,1998,Fighting,Capcom,0,0,0.03,0,0.03 +Lock On: Modern Air Combat,PC,2003,Simulation,Ubisoft,0,0.03,0,0.01,0.03 +Toaru Majutsu no Kagaku no Ensemble,PSP,2013,Adventure,Namco Bandai Games,0,0,0.03,0,0.03 +Ojyousama Express,SAT,1998,Strategy,Media Works,0,0,0.03,0,0.03 +Guilty Gear XX Accent Core Plus,Wii,2009,Fighting,PQube,0.01,0.02,0,0,0.03 +Starsky & Hutch,GBA,2003,Racing,Empire Interactive,0.02,0.01,0,0,0.03 +Super Meat Boy: Ultra Edition!,PC,2011,Platform,Unknown,0,0.02,0,0.01,0.03 +Sitting Ducks,GBA,2003,Platform,LSP Games,0.02,0.01,0,0,0.03 +Brothers Conflict: Brilliant Blue,PSP,2013,Adventure,Idea Factory,0,0,0.03,0,0.03 +JoJo's Bizarre Adventure: Eyes of Heaven,PS3,2015,Fighting,Namco Bandai Games,0,0,0.03,0,0.03 +Hajime no Ippo: The Fighting! (2014),PS3,2014,Sports,Namco Bandai Games,0,0,0.03,0,0.03 +Eyeshield 21: Field Saikyou no Senshi Tachi,Wii,2007,Role-Playing,Nintendo,0,0,0.03,0,0.03 +Fullmetal Alchemist: Brotherhood,PSP,,Action,Unknown,0,0,0.03,0,0.03 +To LoveRu Trouble: Waku Waku! Rinkangakkou-Hen,DS,2008,Adventure,Marvelous Interactive,0,0,0.03,0,0.03 +Medabots 9: Metabee / Rokusho,3DS,2015,Role-Playing,Rocket Company,0,0,0.03,0,0.03 +Doodle Hex,DS,2008,Puzzle,Pinnacle,0,0.03,0,0,0.03 +Homeworld 2,PC,2003,Strategy,Vivendi Games,0,0.03,0,0.01,0.03 +Hakuoki Zuisouroku Omokage Hana,PSV,2015,Action,Idea Factory,0,0,0.03,0,0.03 +Hearts of Iron IV,PC,2016,Strategy,Paradox Interactive,0,0.03,0,0,0.03 +thinkSMART FAMILY!,Wii,2010,Misc,Conspiracy Entertainment,0.03,0,0,0,0.03 +Last Escort: Club Katze,PSP,2010,Adventure,D3Publisher,0,0,0.03,0,0.03 +Stacked with Daniel Negreanu,XB,2006,Misc,Myelin Media,0.02,0.01,0,0,0.03 +Shin Koihime Musou: Otome Ryouran * Sangokushi Engi - Wei-Hen,PSP,2010,Adventure,Yeti,0,0,0.03,0,0.03 +Rayman 3: Hoodlum Havoc,PC,2003,Platform,Ubisoft,0,0.03,0,0.01,0.03 +Otometeki Koi Kakumei * Love Revo,PS2,2006,Adventure,Interchannel,0,0,0.03,0,0.03 +Phantasy Star Online 2 Episode 4: Deluxe Package,PS4,2017,Role-Playing,Sega,0,0,0.03,0,0.03 +Timmy Time,DS,2011,Action,Avanquest,0,0.03,0,0,0.03 +Infinite Stratos 2: Ignition Hearts,PSV,2014,Adventure,5pb,0,0,0.03,0,0.03 +Dr. Muto,GC,2002,Platform,Midway Games,0.02,0.01,0,0,0.03 +Airship Q,PSV,2015,Platform,Cygames,0,0,0.03,0,0.03 +Ratatouille,PC,2007,Action,THQ,0.01,0.01,0,0,0.03 +Otomedius Gorgeous,X360,2008,Shooter,Konami Digital Entertainment,0,0,0.03,0,0.03 +Jikandia: The Timeless Land,PSP,2010,Role-Playing,Idea Factory,0.03,0,0,0,0.03 +Egg Mania: Eggstreme Madness,PS2,2002,Puzzle,Kemco,0.02,0.01,0,0,0.03 +Super Heroine Chronicle,PS3,2014,Role-Playing,Namco Bandai Games,0,0,0.03,0,0.03 +Boot Camp Academy,Wii,2010,Action,Zoo Games,0.03,0,0,0,0.03 +Kiniro no Corda 3,PS2,2010,Adventure,Tecmo Koei,0,0,0.03,0,0.03 +Zero Escape: Virtue's Last Reward,3DS,2012,Adventure,Rising Star Games,0.03,0,0,0,0.03 +Darkstalkers Resurrection,PS3,2013,Fighting,Capcom,0,0,0.03,0,0.03 +Take On Helicopters,PC,2011,Simulation,Unknown,0,0.02,0,0.01,0.03 +Highschool Terra Story,SAT,1998,Adventure,KID,0,0,0.03,0,0.03 +Emergency! Disaster Rescue Squad,DS,2009,Simulation,Destineer,0.03,0,0,0,0.03 +Shaun White Skateboarding,PC,2010,Sports,Ubisoft,0,0.03,0,0.01,0.03 +Empire Earth II,PC,2005,Strategy,Vivendi Games,0,0.03,0,0,0.03 +Suggoi! Arcana Heart 2,PS2,2009,Fighting,AQ Interactive,0,0,0.03,0,0.03 +MotoGP 15,XOne,2015,Racing,Milestone S.r.l.,0,0.03,0,0,0.03 +NBA 2K13,PC,2012,Sports,Take-Two Interactive,0,0.02,0,0,0.03 +Mother Goose no Himitsu no Yakata,PSP,2011,Adventure,Quinrose,0,0,0.03,0,0.03 +Harry Potter and the Half-Blood Prince,PC,2009,Action,Electronic Arts,0,0.03,0,0.01,0.03 +Winning Post 7 2009,PSP,2009,Sports,Tecmo Koei,0,0,0.03,0,0.03 +Knights of Honor,PC,2004,Strategy,Sunflowers,0,0.02,0,0.01,0.03 +Puzzle & Action: Tant-R,GEN,1994,Misc,Sega,0,0,0.03,0,0.03 +Code Lyoko: Quest for Infinity,PSP,2008,Action,Game Factory,0.03,0,0,0,0.03 +Away: Shuffle Dungeon,DS,2008,Role-Playing,Majesco Entertainment,0.02,0,0,0,0.03 +Digimon World 4,XB,2005,Role-Playing,Atari,0.02,0.01,0,0,0.03 +Bubble Bobble Evolution,PSP,2006,Puzzle,Rising Star Games,0.03,0,0,0,0.03 +Codename: Panzers Cold War,PC,2009,Strategy,Atari,0,0.02,0,0.01,0.03 +Kekkaishi: Kokubourou Shuurai,DS,2008,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Shugo Chara! Amunonijiro Chara Change,DS,2008,Action,Konami Digital Entertainment,0,0,0.03,0,0.03 +Galleon: Islands of Mystery,XB,2004,Action,SCi,0.02,0.01,0,0,0.03 +Renai 0 Kilometer,PSP,2013,Adventure,Alchemist,0,0,0.03,0,0.03 +World Sports Competition,PS3,2009,Sports,Hudson Soft,0.02,0,0,0.01,0.03 +Summon Night 6: Lost Borders,PS4,2016,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Tantei Jinguuji Saburo DS: Kienai Kokoro,DS,2008,Adventure,Arc System Works,0,0,0.03,0,0.03 +Far East of Eden Shinden,NG,1995,Fighting,Hudson Soft,0,0,0.03,0,0.03 +Sunny Garcia Surfing,PS2,2001,Sports,Ubisoft,0.02,0.01,0,0,0.03 +MotorHead,PS,1998,Racing,Gremlin Interactive Ltd,0.02,0.01,0,0,0.03 +Alia's Carnival! Sacrament,PSV,2015,Adventure,dramatic create,0,0,0.03,0,0.03 +Nacho Libre,DS,2006,Action,Majesco Entertainment,0.03,0,0,0,0.03 +StormLover,PSP,2010,Adventure,D3Publisher,0,0,0.03,0,0.03 +Gensou Suikoden I & II,PSP,2006,Role-Playing,Konami Digital Entertainment,0,0,0.03,0,0.03 +Gloria Union,PSP,2011,Role-Playing,Atlus,0,0,0.03,0,0.03 +Ebikore Photo Kano Kiss,PSV,2015,Action,Kadokawa Games,0,0,0.03,0,0.03 +Bad Apple Wars,PSV,2015,Action,Idea Factory,0,0,0.03,0,0.03 +Transformers: Devastation,PC,2015,Action,Activision,0,0.03,0,0,0.03 +Eyeshield 21: DevilBats DevilDays,GBA,2006,Role-Playing,Nintendo,0,0,0.03,0,0.03 +Jyuzaengi: Engetsu Sangokuden,PSP,2012,Action,Idea Factory,0,0,0.03,0,0.03 +Shin Sangoku Musou Online: Kamishou Ranbu,PS3,2010,Action,Tecmo Koei,0,0,0.03,0,0.03 +Dancing Blade II: Tears of Eden,PS,1999,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +Kokoro no Kokoron,DS,2011,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +Hiiro no Kakera 3: Aoikuro no Kusabi,PS2,2008,Adventure,Idea Factory,0,0,0.03,0,0.03 +BeatMania IIDX 13: DistorteD,PS2,2007,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Section 8,PC,2009,Shooter,SouthPeak Games,0.01,0.01,0,0,0.03 +Go! Go! Hypergrind,GC,2003,Sports,Atlus,0.02,0.01,0,0,0.03 +Keshisasu-Kun: Battle Kas-tival,DS,2010,Action,Konami Digital Entertainment,0,0,0.03,0,0.03 +Kaidan Restaurant: Zoku! Shin Menu 100-Sen,DS,2011,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +Hot Pixel,PSP,2007,Puzzle,Atari,0.03,0,0,0,0.03 +Peak Performance,PS,1997,Racing,JVC,0.02,0.01,0,0,0.03 +Dance Dance Revolution: Hottest Party 5,Wii,2011,Misc,Konami Digital Entertainment,0,0.03,0,0,0.03 +Who Wants to be a Millionaire: 2nd Edition,Wii,2008,Misc,Ubisoft,0,0.03,0,0,0.03 +Kyokugen Dasshutsu ADV: Zennin Shiboudesu,3DS,2012,Adventure,ChunSoft,0,0,0.03,0,0.03 +DokiDoki Majo Shinpan! 2,DS,2008,Adventure,SNK Playmore,0,0,0.03,0,0.03 +S.L.A.I.: Steel Lancer Arena International,PS2,2005,Simulation,Konami Digital Entertainment,0.01,0.01,0,0,0.03 +Pet Alien: An Intergalactic Puzzlepalooza,DS,2007,Action,Game Factory,0.03,0,0,0,0.03 +Freaky Flyers,XB,2003,Racing,Midway Games,0.02,0.01,0,0,0.03 +Blokus Portable: Steambot Championship,PSP,2006,Puzzle,Majesco Entertainment,0.03,0,0,0,0.03 +Renai Revenge,PSV,2015,Adventure,TGL,0,0,0.03,0,0.03 +Zoboomafoo: Leapin' Lemurs!,PS,2001,Action,Encore,0.02,0.01,0,0,0.03 +Atelier Shallie Plus: Alchemists of the Dusk Sea,PSV,2016,Role-Playing,Tecmo Koei,0,0,0.03,0,0.03 +Dennou Senki Virtual-On Force,X360,2010,Fighting,Sega,0,0,0.03,0,0.03 +Sins of a Solar Empire,PC,2008,Strategy,Pinnacle,0,0.02,0,0.01,0.03 +Graffiti Kingdom,PS2,2004,Role-Playing,505 Games,0.01,0.01,0,0,0.03 +Langrisser: Re:Incarnation Tensei,3DS,2015,Role-Playing,Extreme Entertainment Group,0.02,0,0.01,0,0.03 +Nettou! Powerful Koushien,DS,2010,Sports,Konami Digital Entertainment,0,0,0.03,0,0.03 +Lords of the Fallen,PC,2014,Role-Playing,Square Enix,0,0.03,0,0,0.03 +Great Edo Blacksmith,PSV,2014,Adventure,Nippon Ichi Software,0,0,0.03,0,0.03 +Armored Core SL: Silent Line Portable,PSP,2009,Simulation,From Software,0,0,0.03,0,0.03 +Gotouchi Tetsudou: Gotouchi Chara to Nihon Zenkoku no Tabi,WiiU,2014,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +Combat Elite: WWII Paratroopers,XB,,Shooter,Unknown,0.02,0.01,0,0,0.03 +To LoveRu Trouble: Doki Doki! Rinkaigakkou-Hen,PSP,2008,Adventure,Marvelous Interactive,0,0,0.03,0,0.03 +Lethal Enforcers I & II,PS,1996,Shooter,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Klonoa 2: Dream Champ Tournament,GBA,2002,Platform,Namco Bandai Games,0.02,0.01,0,0,0.03 +Shantae and the Pirate's Curse,3DS,2015,Platform,Intergrow,0,0,0.03,0,0.03 +Minna no Golf Jou Vol.1,PSP,2007,Sports,Sony Computer Entertainment,0,0,0.03,0,0.03 +The Peanuts Movie: Snoopy's Grand Adventure,3DS,2015,Action,Activision,0,0.03,0,0,0.03 +Resident Evil 4,PC,2007,Action,Ubisoft,0,0.02,0,0.01,0.03 +Power Rangers Super Megaforce,3DS,2014,Action,Namco Bandai Games,0.01,0.01,0,0,0.03 +Teenage Mutant Ninja Turtles: Mutants in Manhattan,X360,2016,Action,Activision,0.01,0.02,0,0,0.03 +Cabela's Big Game Hunter: Pro Hunts,PS3,2014,Shooter,Activision,0.03,0,0,0,0.03 +Super Collapse! II,GBA,2004,Puzzle,Majesco Entertainment,0.02,0.01,0,0,0.03 +Ducati World Racing Challenge,PS,2001,Racing,Acclaim Entertainment,0.02,0.01,0,0,0.03 +Pop'n Music 14 Fever!,PS2,2007,Misc,Konami Digital Entertainment,0,0,0.03,0,0.03 +Golden Nugget Casino / Texas Hold 'Em Double Pack,GBA,2005,Misc,Majesco Entertainment,0.02,0.01,0,0,0.03 +Judie no Atelier: Guramnat no Renkinjutsu - Toraware no Morito,PSP,2010,Role-Playing,Gust,0,0,0.03,0,0.03 +Lux-Pain (JP sales),DS,2008,Adventure,Rising Star Games,0,0,0.03,0,0.03 +Smashing Drive,GBA,2004,Racing,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Senko no Ronde DUO,X360,2010,Fighting,G.Rev,0,0,0.03,0,0.03 +Starshot: Space Circus Fever,N64,1998,Platform,Infogrames,0.02,0.01,0,0,0.03 +Charlie Blasts Territory,N64,1999,Action,Kemco,0.02,0.01,0,0,0.03 +Big Mountain 2000,N64,1998,Sports,Imagineer,0.02,0.01,0,0,0.03 +Tokimeki Memorial Girl's Side 1st Love Plus,DS,2009,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +CIMA: The Enemy,GBA,2003,Role-Playing,Marvelous Interactive,0.02,0.01,0,0,0.03 +N+,PSP,2007,Platform,Atari,0.03,0,0,0,0.03 +Katekyoo Hitman Reborn! Kizuna no Tag Battle,PSP,2010,Fighting,Marvelous Interactive,0,0,0.03,0,0.03 +Code Geass: Hangyaku no Lelouch,DS,2007,Action,Namco Bandai Games,0,0,0.03,0,0.03 +GTR Evolution,PC,2008,Racing,Atari,0,0.02,0,0.01,0.03 +Hudson x GReeeeN Live!? DeeeeS!?,DS,2010,Misc,Hudson Soft,0,0,0.03,0,0.03 +Daibakushou: Jinsei Gekijou,SNES,1995,Misc,Taito,0,0,0.03,0,0.03 +Marble Madness / Klax,GBA,2005,Puzzle,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Downstream Panic!,PSP,2008,Action,Atari,0.03,0,0,0,0.03 +DJ Max Portable 3,PSP,2010,Misc,CyberFront,0.01,0,0.02,0,0.03 +Suzumiya Haruhi no Chokuretsu,DS,2009,Adventure,Sega,0,0,0.03,0,0.03 +SimCity,PC,1988,Simulation,Maxis,0,0.02,0,0.01,0.03 +The Idolmaster: Gravure For You! Vol. 5,PS3,2012,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +S.Y.K Renshouden,PS2,2010,Adventure,Idea Factory,0,0,0.03,0,0.03 +Casino Chaos With Las Vegas Players Collection,PC,2011,Misc,THQ,0.03,0,0,0,0.03 +Hiiro no Kakera: Shin Tamayori Hime Denshou - Piece of Future,PSP,2011,Adventure,Idea Factory,0,0,0.03,0,0.03 +Konpeki no Kantai,SNES,1995,Strategy,Angel Studios,0,0,0.03,0,0.03 +D.C.I.F.: Da Capo Innocent Finale,PS2,2009,Adventure,Sweets,0,0,0.03,0,0.03 +Galaxy Angel II: Mugen Kairou no Kagi,PS2,2007,Strategy,Broccoli,0,0,0.03,0,0.03 +Nectaris: Military Madness,PS,1998,Strategy,Hudson Soft,0.02,0.01,0,0,0.03 +Doom 3 BFG Edition,PC,2012,Shooter,Bethesda Softworks,0,0.02,0,0.01,0.03 +Tenka-bito,PS2,2006,Strategy,Sega,0,0,0.03,0,0.03 +BRAHMA Force: The Assault on Beltlogger 9,PS,1996,Shooter,JVC,0.02,0.01,0,0,0.03 +Petz: Dolphinz Encounter,DS,2009,Simulation,Ubisoft,0.01,0.01,0,0,0.03 +Star Trek: Tactical Assault,PSP,2006,Strategy,Ubisoft,0.02,0.01,0,0,0.03 +Katekyoo Hitman Reborn! DS: Ore ga Boss! Saikyou Family Taisen,DS,2009,Action,Takara Tomy,0,0,0.03,0,0.03 +Samurai Spirits: Tenkaichi Kenkakuden,PS2,,Fighting,Unknown,0,0,0.03,0,0.03 +Robo Pit,PS,1995,Fighting,Kokopeli Digital Studios,0.02,0.01,0,0,0.03 +Emily Archer and the Curse of Tutankhamun,DS,2011,Adventure,Mastertronic,0,0.03,0,0,0.03 +Story Hour: Adventures,Wii,2008,Adventure,Zoo Digital Publishing,0.03,0,0,0,0.03 +Braid,PC,2009,Platform,Number None,0,0.02,0,0.01,0.03 +Muv-Luv Alternative: Total Eclipse,PS3,2013,Simulation,5pb,0,0,0.03,0,0.03 +R-Type III: The Third Lightning,GBA,2004,Shooter,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Star Wars: The Force Unleashed II,PC,2010,Action,LucasArts,0.03,0,0,0,0.03 +Need for Speed (2015),PC,2016,Racing,Electronic Arts,0,0.03,0,0,0.03 +Hakuouki,PS2,2008,Adventure,Idea Factory,0,0,0.03,0,0.03 +"Princess Natasha: Student, Secret Agent, Princess",DS,2006,Action,Zoo Digital Publishing,0.03,0,0,0,0.03 +Atomic Betty,GBA,2005,Puzzle,Atari,0.02,0.01,0,0,0.03 +Monster Hunter Frontier Online: Season 10,X360,2011,Role-Playing,Capcom,0,0,0.03,0,0.03 +Robin Hood: Defender of the Crown,XB,2003,Strategy,Capcom,0.02,0.01,0,0,0.03 +Street Jam Basketball,GBA,2004,Sports,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Master of Monsters: Disciples of Gaia,PS,1997,Strategy,Agetec,0.02,0.01,0,0,0.03 +Armored Core: Last Raven Portable,PSP,2010,Simulation,From Software,0,0,0.03,0,0.03 +SD Gundam: Gashapon Wars,Wii,2010,Strategy,Namco Bandai Games,0,0,0.03,0,0.03 +Commander: Conquest of the Americas,PC,2010,Strategy,Paradox Interactive,0,0.02,0,0.01,0.03 +Curious George,XB,2006,Action,Namco Bandai Games,0.02,0.01,0,0,0.03 +Disney's Aladdin,GBA,2003,Platform,Capcom,0.02,0.01,0,0,0.03 +Royal Palace of White Sword and The City of Gentiles,PC,2009,Role-Playing,Take-Two Interactive,0,0.02,0,0.01,0.03 +Virtual Pool: Tournament Edition,XB,2005,Sports,Global Star,0.02,0.01,0,0,0.03 +Kung Fu Panda: Showdown of Legendary Legends,X360,2015,Action,Little Orbit,0,0.03,0,0,0.03 +Nippon no Asoko de,PSP,2008,Misc,Sony Computer Entertainment,0,0,0.03,0,0.03 +007: Quantum of Solace,PC,2008,Action,Activision,0.01,0.01,0,0,0.03 +MapleStory DS,DS,2010,Role-Playing,Nexon,0,0,0.03,0,0.03 +Phantasy Star Online 2: Episode 3 Deluxe Package,PSV,2015,Action,Sega,0,0,0.03,0,0.03 +Pimp My Ride: Street Racing,DS,2009,Racing,Activision,0.03,0,0,0,0.03 +Let's Dance with Mel B,PS3,2011,Sports,Black Bean Games,0,0.02,0,0.01,0.03 +Popeye: Rush for Spinach,GBA,2005,Platform,Atari,0.02,0.01,0,0,0.03 +Culdcept,PS2,2002,Strategy,Sega,0.01,0.01,0,0,0.03 +Beyblade Evolution,3DS,2013,Action,Rising Star Games,0.02,0.01,0,0,0.03 +Pro Cycling Manager 2016,PC,2016,Sports,Focus Home Interactive,0,0.03,0,0,0.03 +Blue Breaker: Ken Yorimo Hohoemi o,PCFX,1996,Role-Playing,NEC,0,0,0.03,0,0.03 +BeatMania IIDX 15: DJ Troopers,PS2,2008,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Heathcliff! The Fast and the Furriest,Wii,2010,Racing,Storm City Games,0.03,0,0,0,0.03 +Hyperdimension Neptunia Vs. Sega Hard Girls: Yume no Gattai Special,PSV,2015,Role-Playing,Compile Heart,0,0,0.03,0,0.03 +Planet of the Apes,GBA,2001,Action,Ubisoft,0.02,0.01,0,0,0.03 +Gekiatsu!! Pachi Game Tamashi Vol. 1: CR Evangelion - Shinjitsu no Tsubasa,PSP,2011,Misc,Unknown,0,0,0.03,0,0.03 +Worms,PS3,2009,Strategy,Sony Computer Entertainment,0,0.02,0,0.01,0.03 +Drake & Josh: Talent Showdown,DS,2007,Adventure,THQ,0.03,0,0,0,0.03 +Real World Golf,XB,2006,Sports,Mad Catz,0.02,0.01,0,0,0.03 +Winx Club: Rockstars,DS,2010,Adventure,Namco Bandai Games,0,0.03,0,0,0.03 +Hissatsu Pachinko Collection 3,SNES,1995,Misc,Sunsoft,0,0,0.03,0,0.03 +Oumagatoki: Kaidan Romance,PSP,2012,Action,Quinrose,0,0,0.03,0,0.03 +Jack Keane,PC,2008,Adventure,Kalypso Media,0,0.02,0,0,0.03 +World of Zoo,PC,2009,Simulation,THQ,0,0.02,0,0.01,0.03 +Kung Fu Panda: Legendary Warriors,DS,2008,Action,Activision,0.02,0,0,0,0.03 +Mahjong Kakutou Club: Zenkoku Taisenban,PS3,2006,Misc,Konami Digital Entertainment,0,0,0.03,0,0.03 +Hayate no Gotoku! Nightmare Paradise,PSP,2009,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +NBA 08,PSP,2007,Sports,Sony Computer Entertainment,0.03,0,0,0,0.03 +Secret Files 2: Puritas Cordis,Wii,2009,Adventure,Deep Silver,0,0.03,0,0,0.03 +Nanashi no Game Me,DS,2009,Action,Square Enix,0,0,0.03,0,0.03 +Heroes of Hellas 2: Olympia,DS,2012,Puzzle,Unknown,0,0.03,0,0,0.03 +Young Justice: Legacy,3DS,2013,Action,Namco Bandai Games,0.03,0,0,0,0.03 +Syberia,PC,2002,Action,Microids,0,0.02,0,0,0.03 +Bladestorm: Nightmare,PS3,2015,Action,Tecmo Koei,0,0,0.03,0,0.03 +NatGeo Challenge! Wild Life,X360,2010,Misc,Black Bean Games,0,0.02,0,0,0.03 +Higurashi no Naku Koro ni Iki,PSV,2015,Action,Kaga Create,0,0,0.03,0,0.03 +HappinessCharge PreCure! Kawarun Collection,3DS,2014,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +Battle vs. Chess,PC,,Misc,TopWare Interactive,0,0.02,0,0.01,0.03 +Dream Pinball 3D,DS,2008,Misc,SouthPeak Games,0.03,0,0,0,0.03 +DICE: DNA Integrated Cybernetic Enterprises,PS2,2005,Shooter,Namco Bandai Games,0.01,0.01,0,0,0.03 +Battlefield 1942: The WW II Anthology,PC,2004,Shooter,Electronic Arts,0.01,0.01,0,0,0.03 +Treasure Gaust: Gaust Diver Crimson Red / Deep Purple,DS,2007,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Megpoid the Music#,PSP,2013,Misc,Asgard,0,0,0.03,0,0.03 +Game of Thrones (Telltale),XOne,2015,Adventure,Telltale Games,0.03,0,0,0,0.03 +Wallace & Gromit in Project Zoo,XB,2003,Platform,BAM! Entertainment,0.02,0.01,0,0,0.03 +Rugby League Live,PS3,2010,Sports,Home Entertainment Suppliers,0,0.02,0,0.01,0.03 +Grid Runner,PS,1996,Action,Virgin Interactive,0.02,0.01,0,0,0.03 +Saihai no Yukue,DS,2008,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +Metal Dungeon,XB,2002,Role-Playing,Xicat Interactive,0.02,0.01,0,0,0.03 +Drome Racers,GC,2003,Racing,Electronic Arts,0.02,0.01,0,0,0.03 +Guitar Freaks V & DrumMania V,PS2,2006,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Tago Akira no Atama no Taisou Dai-1-Shuu: Nazotoki Sekai Isshuu Ryokou,DS,2009,Adventure,Level 5,0,0,0.03,0,0.03 +Driver: Parallel Lines,Wii,2007,Racing,Ubisoft,0.01,0.01,0,0,0.03 +Doom,PC,1992,Shooter,id Software,0.02,0,0,0,0.03 +Gekido Advance: Kintaro's Revenge,GBA,2002,Action,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +OZMAFIA!! -vivace-,PSV,2015,Adventure,dramatic create,0,0,0.03,0,0.03 +Girls Only,DS,2010,Simulation,Foreign Media Games,0.03,0,0,0,0.03 +Future Tactics: The Uprising,XB,2004,Strategy,JoWood Productions,0.02,0.01,0,0,0.03 +Power Poke Dash,GBA,2006,Sports,Konami Digital Entertainment,0,0,0.03,0,0.03 +Hisshou Pachinko*Pachi-Slot Kouryaku Series DS Vol. 4: Shinseiki Evangelion - Saigo no Mono,DS,2009,Misc,D3Publisher,0,0,0.03,0,0.03 +Detective Opera: Milky Holmes 2,PSP,2012,Adventure,BushiRoad,0,0,0.03,0,0.03 +Turn It Around,DS,2006,Action,505 Games,0.03,0,0,0,0.03 +Blaze Union: Story to Reach the Future,PSP,2010,Role-Playing,Sting,0,0,0.03,0,0.03 +Attack on Titan (KOEI),XOne,2016,Action,Tecmo Koei,0.01,0.01,0,0,0.03 +Medabots Girls Mission: Metabee Ver. / Rokusho Ver.,3DS,2016,Role-Playing,Rocket Company,0,0,0.03,0,0.03 +Race Driver 2006,PSP,2006,Racing,Codemasters,0.03,0,0,0,0.03 +Higurashi no Naku Koro ni Kizuna: Dai-Yon-Kan - Kizuna,DS,2010,Adventure,Alchemist,0,0,0.03,0,0.03 +Buffy the Vampire Slayer: Wrath of the Darkhul King,GBA,2003,Action,THQ,0.02,0.01,0,0,0.03 +My Hero Academia: Battle for All,3DS,2016,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Nisekoi: Yomeiri!?,PSV,2014,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +New Tokyo Legacy: Operation Babel,PSV,2015,Role-Playing,5pb,0,0,0.03,0,0.03 +Gekiatsu!! Pachi Game Tamashi Vol. 2: CR Evangelion - Shinjitsu no Tsubasa,PS3,2011,Misc,Unknown,0,0,0.03,0,0.03 +Rugby League Live 3,X360,2015,Action,Tru Blu Entertainment,0,0.03,0,0,0.03 +Triple Pack: Xbox Live Arcade Compilation,X360,2011,Misc,Microsoft Game Studios,0.03,0,0,0,0.03 +101-in-1 Sports Party Megamix,Wii,2010,Sports,Nordcurrent,0.02,0,0,0,0.03 +Roadsters,PS,2000,Racing,Titus,0.02,0.01,0,0,0.03 +The Croods: Prehistoric Party!,WiiU,2013,Misc,D3Publisher,0.01,0.01,0,0,0.03 +Exist Archive: The Other Side of the Sky,PS4,2015,Role-Playing,Aksys Games,0,0,0.03,0,0.03 +DeathSmiles II,X360,2010,Shooter,Cave,0,0,0.03,0,0.03 +Romance of the Three Kingdoms II,3DS,2015,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +Calcio Bit,GBA,2006,Sports,Nintendo,0,0,0.03,0,0.03 +Monsters vs. Aliens,PC,2009,Action,Activision,0.01,0.01,0,0,0.03 +Whiteout,XB,2002,Racing,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Hyakumanton no Bara Bara,PSP,2010,Strategy,Sony Computer Entertainment,0,0,0.03,0,0.03 +Galaxy Angel II: Zettairyouiki no Tobira,PS2,2006,Strategy,Broccoli,0,0,0.03,0,0.03 +The Great Mystery Hidden Object Package 5,PC,2015,Adventure,Rondomedia,0,0.03,0,0,0.03 +1000 Cooking Recipes from ELLE ? table,DS,2010,Misc,Nintendo,0,0.02,0,0,0.03 +Hajime no Ippo: The Fighting,GBA,2002,Fighting,ESP,0,0,0.03,0,0.03 +Merv Griffin's Crosswords,DS,2008,Puzzle,ValuSoft,0.03,0,0,0,0.03 +Stellaris,PC,2016,Strategy,Paradox Interactive,0,0.03,0,0,0.03 +Spectral Souls: Resurrection of the Ethereal Empires,PSP,2005,Role-Playing,Idea Factory,0.03,0,0,0,0.03 +Sokukoku no Kusabi: Hiiro no Kakera 3 Portable,PSP,2010,Adventure,Idea Factory,0,0,0.03,0,0.03 +Syberia II,XB,2004,Adventure,Ubisoft,0.02,0.01,0,0,0.03 +PopCap Hits! Vol 2,X360,2011,Misc,Mastertronic,0,0.03,0,0,0.03 +Ao no Kanata no Four Rhythm,PSV,2016,Adventure,Unknown,0,0,0.03,0,0.03 +Motor Trend presents Lotus Challenge,XB,2003,Racing,Xicat Interactive,0.02,0.01,0,0,0.03 +Mystery Trackers: The Void,PC,2011,Puzzle,Focus Home Interactive,0,0.02,0,0.01,0.03 +Trine 2,WiiU,2012,Platform,Atlus,0,0.03,0,0,0.03 +Bleach DS 4th: Flame Bringer,DS,2009,Action,Sega,0,0,0.03,0,0.03 +Pacific Liberator,Wii,2009,Action,Zoo Games,0.03,0,0,0,0.03 +Botanicula,PC,2012,Adventure,Daedalic Entertainment,0,0.02,0,0,0.03 +Parfait,PSV,2015,Adventure,TGL,0,0,0.03,0,0.03 +Tago Akira no Atama no Taisou Dai-2-Shuu: Ginga Oudan Nazotoki Adventure,DS,2009,Adventure,Level 5,0,0,0.03,0,0.03 +The King of Fighters Portable '94~'98: Chapter of Orochi,PSP,2010,Fighting,SNK Playmore,0,0,0.03,0,0.03 +Puzzle Challenge: Crosswords and More!,Wii,2009,Puzzle,Crave Entertainment,0.03,0,0,0,0.03 +Nisenochigiri: Omoide no Saki e,PSP,2011,Adventure,Idea Factory,0,0,0.03,0,0.03 +Rugby League Live,X360,2010,Sports,Home Entertainment Suppliers,0,0.02,0,0,0.03 +Age of Conan: Rise of the Godslayer,PC,2010,Role-Playing,Funcom,0,0.02,0,0,0.03 +Totally Spies! Totally Party,PC,2008,Misc,Ubisoft,0,0.02,0,0,0.03 +Battlefield Vietnam,PC,2004,Shooter,Electronic Arts,0,0.02,0,0,0.03 +In Cold Blood,PS,2000,Adventure,Sony Computer Entertainment,0.02,0.01,0,0,0.03 +Mega Minis Volume 2,PSP,2011,Misc,Sony Computer Entertainment,0,0.02,0,0.01,0.03 +Kamigami no Asobi,PSP,2013,Adventure,Broccoli,0,0,0.03,0,0.03 +Fireblade,GC,2002,Action,Midway Games,0.02,0.01,0,0,0.03 +Kong: King of Atlantis,GBA,2005,Action,THQ,0.02,0.01,0,0,0.03 +Kidou Senshi V Gundam,SNES,1994,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Ganbare Goemon: Toukai Douchuu Ooedo Tengurigaeshi no Maki,DS,2005,Action,Konami Digital Entertainment,0,0,0.03,0,0.03 +The Settlers II 10th Anniversary,PC,2006,Action,Ubisoft,0,0.02,0,0,0.03 +Wrestle Angels: Survivor 2,PS2,2008,Fighting,Tryfirst,0,0,0.03,0,0.03 +Onechanbara Z Kagura,X360,2012,Action,D3Publisher,0,0,0.03,0,0.03 +Ride,PC,2015,Racing,Milestone S.r.l.,0,0.03,0,0,0.03 +The King of Fighters 02/03,XB,2005,Fighting,SNK Playmore,0.02,0.01,0,0,0.03 +ESPN Winter X Games: Snowboarding 2002,XB,2002,Sports,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Betty Boop's Double Shift,DS,2007,Puzzle,Zoo Digital Publishing,0.03,0,0,0,0.03 +Warhammer: Mark of Chaos,PC,2006,Strategy,Deep Silver,0,0.02,0,0,0.03 +Tsuku Monogatari,PSP,2011,Adventure,FuRyu,0,0,0.03,0,0.03 +Vitamin Z,PS2,2009,Adventure,D3Publisher,0,0,0.03,0,0.03 +Kaitou Tenshi Twin Angel: Toki to Sekai no Meikyuu,PSP,2011,Adventure,Alchemist,0,0,0.03,0,0.03 +Shin Koihime Musou: Otome Ryouran * Sangokushi Engi - Wu-Hen,PSP,2010,Adventure,Yeti,0,0,0.03,0,0.03 +Harukanaru Toki no Naka de 5: Kazahanaki,PSP,2012,Role-Playing,Ackkstudios,0,0,0.03,0,0.03 +Tom and Jerry in War of the Whiskers,XB,,Fighting,Unknown,0.02,0.01,0,0,0.03 +Nobunaga no Yabou DS 2,DS,2008,Strategy,Tecmo Koei,0,0,0.03,0,0.03 +The IdolM@ster: Gravure For You! Vol. 6,PS3,2012,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Schlag den Raab,PC,2010,Misc,Namco Bandai Games,0,0.02,0,0.01,0.03 +Ghostbusters (2016),PS4,2016,Action,Activision,0.02,0,0,0.01,0.03 +Secrets of the Titanic,DS,2012,Action,Avanquest Software,0,0.02,0,0,0.03 +Metal Saga: Hagane no Kisetsu,DS,2006,Role-Playing,Success,0,0,0.03,0,0.03 +Animaniacs: The Great Edgar Hunt,GC,2005,Platform,Ignition Entertainment,0.02,0.01,0,0,0.03 +Safari Adventures: Africa,DS,2008,Adventure,Neko Entertainment,0.03,0,0,0,0.03 +Harukanaru Toki no Naka de 6,PSV,2015,Action,Tecmo Koei,0,0,0.03,0,0.03 +Dream Club Zero Portable,PSV,2011,Simulation,D3Publisher,0,0,0.03,0,0.03 +Samurai Warriors 2,PS3,2013,Action,Tecmo Koei,0,0,0.03,0,0.03 +Cossacks: European Wars,PC,2001,Strategy,Strategy First,0,0.02,0,0,0.03 +The Island of Dr. Frankenstein,Wii,2009,Adventure,Storm City Games,0.03,0,0,0,0.03 +TV Total Events,Wii,2011,Misc,7G//AMES,0,0.02,0,0,0.03 +Battle Arena Toshinden URA,SAT,1995,Fighting,Sega,0,0,0.03,0,0.03 +Darius Burst: Chronicle Saviours,PSV,2016,Action,Kadokawa Games,0,0,0.03,0,0.03 +Biohazard: Revival Selection,X360,2011,Action,Capcom,0,0,0.03,0,0.03 +Labyrinth Cross Blood: Infinity,PSV,2013,Role-Playing,CyberFront,0,0,0.03,0,0.03 +Prince of Persia (2008),PC,2008,Action,Ubisoft,0,0.02,0,0,0.03 +Super Duper Sumos,GBA,,Action,Unknown,0.02,0.01,0,0,0.03 +HotBrain,PSP,2007,Puzzle,Midway Games,0.02,0,0,0,0.03 +UK Truck Simulator,PC,2010,Simulation,,0,0.03,0,0,0.03 +Gudetama: Hanjuku de Tanomuwa,3DS,2015,Action,Rocket Company,0,0,0.03,0,0.03 +MechAssault: Phantom War,DS,2006,Simulation,Majesco Entertainment,0.03,0,0,0,0.03 +Magicka,PC,2011,Role-Playing,Paradox Interactive,0,0.02,0,0.01,0.03 +Star Trek: The Game,PC,2013,Action,Namco Bandai Games,0,0.02,0,0,0.03 +Moto Racer DS,DS,2008,Racing,Nobilis,0,0.02,0,0,0.03 +The Last Guy,PS3,2009,Action,Sony Computer Entertainment,0,0,0.03,0,0.03 +Disney Sports Soccer,GBA,2002,Sports,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Akane Iro ni Somaru Saka Parallel,PS2,2008,Adventure,GN Software,0,0,0.03,0,0.03 +Otome wa Oanesama ni Koi Shiteru Portable: 2-Jin no Elder,PSP,2011,Adventure,Alchemist,0,0,0.03,0,0.03 +Monster Hunter Frontier Online: Forward 1,X360,2011,Role-Playing,Capcom,0,0,0.03,0,0.03 +X3: Terran Conflict,PC,2008,Simulation,Deep Silver,0,0.02,0,0.01,0.03 +Timeshock! Pro Pinball,PS,1998,Misc,Empire Interactive,0.02,0.01,0,0,0.03 +Max Payne,GBA,2003,Shooter,Take-Two Interactive,0.02,0.01,0,0,0.03 +D1 Professional Drift Grand Prix Series,PS2,2005,Racing,Yuke's,0.01,0.01,0,0,0.03 +Starry ? Sky: In Winter,PSP,2011,Misc,Asgard,0,0,0.03,0,0.03 +Little Bears,DS,2009,Simulation,RTL,0.03,0,0,0,0.03 +Rush Hour,PS,1997,Misc,Psygnosis,0.02,0.01,0,0,0.03 +Pro Cast Sports Fishing,XB,2003,Sports,Capcom,0.02,0.01,0,0,0.03 +Gintama: Banji Oku Chuubu!,Wii,2007,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Aegis of Earth: Protonovus Assault,PS3,2016,Action,PQube,0.01,0.01,0,0,0.03 +Saka Agari Hurricane Portable,PSP,2011,Adventure,Alchemist,0,0,0.03,0,0.03 +Negima!? Dream Tactic Yumemiru Otome Princess,PS2,2007,Strategy,Konami Digital Entertainment,0,0,0.03,0,0.03 +King Arthur II,PC,2011,Strategy,Paradox Interactive,0,0.02,0,0,0.03 +Max Payne 2: The Fall of Max Payne,PC,2003,Shooter,Take-Two Interactive,0,0.02,0,0,0.03 +Dakar 2: The World's Ultimate Rally,GC,2003,Racing,Acclaim Entertainment,0.02,0.01,0,0,0.03 +NBA 2K7,XB,2006,Sports,Take-Two Interactive,0.02,0.01,0,0,0.03 +Auto Modellista,GC,2003,Racing,Capcom,0.02,0.01,0,0,0.03 +Jewel Match 2,DS,2012,Puzzle,Easy Interactive,0,0.02,0,0,0.03 +"Hanayaka Kana, Ware ga Ichizoku Twin Pack",PSP,2011,Misc,Idea Factory,0,0,0.03,0,0.03 +MySims,PC,2008,Simulation,Electronic Arts,0,0.02,0,0,0.03 +Guild Wars: Nightfall,PC,2006,Role-Playing,NCSoft,0,0.02,0,0.01,0.03 +Greg Hastings' Tournament Paintball Max'd,GBA,2006,Shooter,Activision,0.02,0.01,0,0,0.03 +Dave Mirra Freestyle BMX 3,GBA,2002,Sports,Acclaim Entertainment,0.02,0.01,0,0,0.03 +My Animal Centre,Wii,2009,Simulation,Deep Silver,0,0.02,0,0,0.03 +Eco Creatures: Save The Forest,DS,2007,Adventure,Rising Star Games,0.03,0,0,0,0.03 +Kintaihi Shounen no Jiken: Kyakusen Eris-Gou no Sangeki,DS,2009,Adventure,Creative Core,0,0,0.03,0,0.03 +Kaizoku Sentai Gokaiger: Atsumete Henshin! 35 Sentai!,DS,2011,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Dragon Tamer: Sound Spirit,DS,2007,Role-Playing,Namco Bandai Games,0,0,0.03,0,0.03 +Frogger: Ancient Shadow,XB,2005,Platform,Konami Digital Entertainment,0.02,0.01,0,0,0.03 +Pro Evolution Soccer 2017,XOne,2016,Sports,Konami Digital Entertainment,0,0.02,0,0,0.03 +La Pucelle: Ragnarok,PSP,2009,Role-Playing,Nippon Ichi Software,0,0,0.03,0,0.03 +Kiniro no Corda 2 f Encore,PSP,2009,Role-Playing,Tecmo Koei,0,0,0.03,0,0.03 +Darius II,SAT,1995,Shooter,Taito,0,0,0.03,0,0.03 +Jewel Quest 5: The Sleepless Star,DS,2012,Action,Licensed 4U,0,0.02,0,0,0.03 +RollerCoaster Tycoon 2: Triple Thrill Pack,PC,2003,Strategy,Atari,0,0.02,0,0.01,0.03 +Bleach: Soul Carnival 2,PSP,2009,Fighting,Sony Computer Entertainment,0,0,0.03,0,0.03 +ParaParaParadise,PS2,2001,Misc,Konami Digital Entertainment,0,0,0.03,0,0.03 +Tiger & Bunny: On-Air Jack!,PSP,2012,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Pro Evolution Soccer 2012,3DS,2011,Action,Konami Digital Entertainment,0.02,0,0,0,0.03 +Eureka Seven AO: Jungfrau no Hanabanatachi,PS3,2012,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Warship Gunner 2,PS2,2006,Simulation,Tecmo Koei,0.01,0.01,0,0,0.03 +Gotcha Force,GC,2003,Shooter,Capcom,0.01,0,0.01,0,0.03 +The Battle of Yuu Yuu Hakusho: Shitou! Ankoku Bujutsukai! 120%,PS2,2007,Fighting,Banpresto,0,0,0.03,0,0.03 +Star Wars The Clone Wars: Republic Heroes,PC,2009,Action,LucasArts,0,0.02,0,0,0.03 +CID The Dummy,PSP,2009,Platform,Oxygen Interactive,0.02,0,0,0,0.03 +Xblaze: Lost Memories,PSV,2015,Adventure,Arc System Works,0.02,0,0,0.01,0.03 +DiRT Rally,PC,2016,Racing,Codemasters,0,0.03,0,0,0.03 +The Perfect Golf,PS,1995,Sports,Seta Corporation,0,0,0.03,0,0.03 +Let's Sing 2016,PS4,2015,Action,FuRyu Corporation,0.02,0,0,0.01,0.03 +Wrestle Kingdom,PS2,2006,Fighting,Yuke's,0,0,0.03,0,0.03 +Demon Driver: Time to Burn Rubber!,GBA,2003,Racing,Ignition Entertainment,0.02,0.01,0,0,0.03 +The Golf Club,XOne,2014,Sports,Unknown,0.02,0,0,0,0.03 +Bigfoot King of Crush,Wii,2011,Racing,Zoo Games,0.02,0,0,0,0.03 +Mojo!,XB,2003,Puzzle,DreamCatcher Interactive,0.02,0.01,0,0,0.03 +Infinite Stratos 2: Ignition Hearts,PS3,2014,Adventure,5pb,0,0,0.03,0,0.03 +Cabela's Big Game Hunter: Pro Hunts,X360,2014,Shooter,Activision,0.02,0,0,0,0.03 +Mahou Sensei Negima! Kagai Jugyou ~Otome no Dokidoki Beachside~,PS2,2006,Adventure,Konami Digital Entertainment,0,0,0.03,0,0.03 +Nekketsu Kouha Kunio-Kun SP: Rantou Kyousoukyoku,3DS,2013,Fighting,Arc System Works,0,0,0.03,0,0.03 +The Sims 2: Bon Voyage,PC,2007,Simulation,Electronic Arts,0.01,0.01,0,0,0.03 +Buffy the Vampire Slayer: Chaos Bleeds,GC,2003,Action,Vivendi Games,0.02,0.01,0,0,0.03 +Clannad,X360,2008,Adventure,Prototype,0,0,0.03,0,0.03 +Brothers Conflict: Passion Pink,PSP,2012,Action,Idea Factory,0,0,0.03,0,0.03 +Kuryuu Youma Gakuenki Recharge,PS2,2006,Adventure,Atlus,0,0,0.03,0,0.03 +My Frogger: Toy Trials,DS,2006,Action,Konami Digital Entertainment,0.02,0,0,0,0.03 +Jet Grind Radio,GBA,2003,Action,Sega,0.02,0.01,0,0,0.03 +Farm Frenzy 3,DS,2011,Strategy,Unknown,0,0.02,0,0,0.03 +Strike Witches: Aoi no Dengekisen - Shin Taichou Funtousuru!,DS,2009,Action,Russel,0,0,0.03,0,0.03 +3DS Classic Collection,3DS,2016,Misc,Sega,0.02,0,0,0,0.03 +Baldur's Gate: Dark Alliance,GBA,2004,Role-Playing,"Destination Software, Inc",0.02,0.01,0,0,0.03 +GRID Autosport,PC,2014,Racing,Codemasters,0,0.02,0,0,0.03 +The Adventures of Lomax,PS,1996,Platform,Psygnosis,0.01,0.01,0,0,0.03 +Neverwinter Nights Diamond,PC,2004,Role-Playing,Atari,0,0.02,0,0,0.03 +Divinity II: Flames of Vengeance,PC,2010,Role-Playing,DTP Entertainment,0,0.02,0,0.01,0.03 +Under the Skin,PS2,2004,Action,Capcom,0.01,0.01,0,0,0.03 +Battlefield 2142,PC,2006,Shooter,Electronic Arts,0,0.02,0,0,0.03 +Kabu Trader Shun,DS,2007,Action,Capcom,0,0,0.03,0,0.03 +Air Conflicts: Secret Wars,PC,2011,Simulation,bitComposer Games,0,0.02,0,0.01,0.03 +Poy Poy,PS,1997,Action,Konami Digital Entertainment,0.01,0.01,0,0,0.03 +Hermie Hopperhead: Scrap Panic,PS,1995,Platform,Sony Computer Entertainment,0,0,0.02,0,0.03 +Lost Planet 2,PC,2010,Shooter,Capcom,0,0.02,0,0.01,0.03 +NHL 07,XB,2006,Sports,Electronic Arts,0.02,0.01,0,0,0.03 +DrumMania 7th Mix,PS2,2001,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Runabout 3: Neo Age,PS2,2002,Racing,BAM! Entertainment,0,0,0.03,0,0.03 +AMNESIA World,PSV,2014,Adventure,Idea Factory,0,0,0.03,0,0.03 +Captain Morgane and the Golden Turtle,PS3,2012,Adventure,Reef Entertainment,0,0.02,0,0.01,0.03 +Bully: Scholarship Edition,PC,2008,Action,Take-Two Interactive,0,0.02,0,0,0.03 +My Ballet Studio,Wii,2009,Simulation,505 Games,0.02,0,0,0,0.03 +Guild Wars,PC,2005,Role-Playing,NCSoft,0.02,0,0,0,0.03 +Clannad: Mitsumi Mamoru Sakamichi de - Gekan,PSP,2010,Adventure,Prototype,0,0,0.03,0,0.03 +Archer Maclean Presents: Pool Paradise,GC,2004,Sports,Ignition Entertainment,0.02,0.01,0,0,0.03 +Sengoku Efuda Yuugi: Hototogisu Tairan,PSP,2010,Strategy,Irem Software Engineering,0,0,0.03,0,0.03 +Battlezone,PSP,2006,Shooter,Atari,0.02,0,0,0,0.03 +Ookiku Furikabutte: Honto no Ace ni Nareru kamo,DS,2007,Sports,Marvelous Interactive,0,0,0.03,0,0.03 +Medal of Honor: Vanguard,PS2,2007,Shooter,Electronic Arts,0,0,0.03,0,0.03 +Touch Shot! Love Application,PS3,2012,Adventure,Compile Heart,0,0,0.03,0,0.03 +Nanotek Warrior,PS,1997,Shooter,Virgin Interactive,0.01,0.01,0,0,0.03 +Galileo,DS,2008,Adventure,D3Publisher,0,0,0.03,0,0.03 +Cake Mania: Baker's Challenge,PS2,2008,Puzzle,Destineer,0.01,0.01,0,0,0.03 +Captain Tsubasa J: The Way to World Youth,SNES,1995,Sports,Namco Bandai Games,0,0,0.03,0,0.03 +Super Monkey Ball Adventure,PS2,2006,Platform,Sega,0.01,0.01,0,0,0.03 +Alien Breed Trilogy,X360,2011,Shooter,Mastertronic,0,0.02,0,0,0.03 +Himoutou! Umaru-Chan: Himoutou Ikusei Keikaku,PSV,2015,Simulation,FuRyu,0,0,0.03,0,0.03 +Sengoku Basara: Sanada Yukimura-Den,PS4,2016,Action,Capcom,0,0,0.03,0,0.03 +CID The Dummy,Wii,2009,Platform,Oxygen Interactive,0.02,0,0,0,0.03 +Kisuato,PSV,2015,Adventure,TGL,0,0,0.03,0,0.03 +Madden NFL 07,GBA,2006,Sports,Electronic Arts,0.02,0.01,0,0,0.03 +Renegade Racers,PS,1999,Racing,Interplay,0.01,0.01,0,0,0.03 +The Legend of Korra (3DS),3DS,2014,Strategy,Activision,0.02,0,0,0,0.03 +AniMates!,DS,2007,Simulation,Lexicon Entertainment,0.02,0,0,0,0.03 +Monster High 13 Wishes,WiiU,2013,Action,Little Orbit,0.02,0,0,0,0.03 +Franklin the Turtle,GBA,2005,Misc,Game Factory,0.02,0.01,0,0,0.03 +"Steins,Gate 0",PS3,2015,Adventure,5pb,0,0,0.03,0,0.03 +Catan,DS,2009,Strategy,CDV Software Entertainment,0,0.02,0,0,0.03 +Backyard NFL Football,Wii,2007,Sports,Atari,0.02,0,0,0,0.03 +Captain Morgane and the Golden Turtle,PC,2012,Adventure,Reef Entertainment,0,0.02,0,0,0.03 +Gauntlet / Rampart,GBA,2005,Misc,Zoo Digital Publishing,0.02,0.01,0,0,0.03 +Age of Empires III: Gold Edition,PC,2007,Strategy,Microsoft Game Studios,0,0.02,0,0.01,0.03 +Let's Play Ballerina,Wii,2010,Sports,Deep Silver,0.02,0,0,0,0.03 +Disney Planes Fire & Rescue,WiiU,2014,Action,Disney Interactive Studios,0.01,0.01,0,0,0.03 +Dream Girl Premier,3DS,2015,Misc,Alchemist,0,0,0.03,0,0.03 +River King: Wonderful Journey,PS2,2005,Sports,505 Games,0.01,0.01,0,0,0.03 +Senran Kagura: Bon App?tit!,PSV,2014,Misc,Marvelous Entertainment,0,0,0.03,0,0.03 +Ducati Moto,DS,2008,Racing,Vir2L Studios,0.02,0,0,0,0.03 +Justice League Heroes: The Flash,GBA,2006,Action,Eidos Interactive,0.02,0.01,0,0,0.03 +Pop Cutie! Street Fashion Simulation (JP sales),DS,2008,Simulation,Tecmo Koei,0,0,0.03,0,0.03 +The Peanuts Movie: Snoopy's Grand Adventure,PS4,2015,Action,Activision,0,0.02,0,0,0.03 +Kawasaki Snowmobiles,Wii,2008,Racing,Metro 3D,0.02,0,0,0,0.03 +Dungeon Siege II,PC,2005,Role-Playing,Microsoft Game Studios,0,0.02,0,0,0.03 +Bae Yong-joon to Manabu Kankokugo DS,DS,2009,Misc,D3Publisher,0,0,0.03,0,0.03 +World War II Combat: Road To Berlin,XB,2006,Shooter,Groove Games,0.02,0.01,0,0,0.03 +Metal Saga,PS2,2005,Role-Playing,Success,0.01,0.01,0,0,0.03 +Imagine: Sweet 16,DS,2010,Simulation,Ubisoft,0.02,0,0,0,0.03 +SWAT 4,PC,2005,Shooter,Vivendi Games,0,0.02,0,0,0.03 +Last Escort 2: Shinya no Amai Toge,PS2,2008,Adventure,D3Publisher,0,0,0.03,0,0.03 +Pop'n Music 13 Carnival,PS2,2006,Simulation,Konami Digital Entertainment,0,0,0.03,0,0.03 +Magicka Collection,PC,2011,Adventure,Unknown,0,0.02,0,0,0.03 +Bookworm,GBA,2004,Puzzle,Unknown,0.02,0.01,0,0,0.03 +Tokushu Houdoubu,PSV,2012,Adventure,Nippon Ichi Software,0,0,0.03,0,0.03 +Terraria,WiiU,2016,Action,505 Games,0,0.02,0,0,0.03 +My DoItAll,DS,2009,Misc,Tomy Corporation,0.02,0,0,0,0.03 +Legacy of Ys: Books I & II,DS,,Role-Playing,Unknown,0.02,0,0,0,0.03 +Shakugan no Shana,PS2,2006,Adventure,Media Works,0,0,0.03,0,0.03 +Monster Mayhem: Build and Battle,Wii,2009,Simulation,Zushi Games,0.02,0,0,0,0.03 +I Heart Geeks,DS,2011,Puzzle,CDV Software Entertainment,0.02,0,0,0,0.03 +Hokuto no Ken: Hokuto Shinken Denshousha no Michi,DS,2008,Action,Spike,0,0,0.03,0,0.03 +The Lord of the Rings: Conquest,PC,2009,Action,Electronic Arts,0,0.02,0,0,0.03 +The King of Fighters: Maximum Impact - Maniax,XB,,Fighting,Unknown,0.02,0.01,0,0,0.03 +Wand of Fortune 2: Jikuu ni Shizumu Mokushiroku,PSP,2011,Adventure,Idea Factory,0,0,0.03,0,0.03 +Little Busters! Converted Edition,PSV,2012,Action,Prototype,0,0,0.03,0,0.03 +Hankou Shashin,SAT,1996,Adventure,Imagineer,0,0,0.03,0,0.03 +MeiQ no Chika Ni Shisu: A Maze to Eradicate Them All,PSV,2015,Role-Playing,Idea Factory,0,0.01,0.01,0,0.03 +Marker Man Adventures,DS,2009,Platform,Majesco Entertainment,0.02,0,0,0,0.03 +Capcom Digital Collection,X360,2012,Action,Capcom,0.02,0.01,0,0,0.03 +Pro Yakyuu Family Stadium,Wii,2008,Sports,Namco Bandai Games,0,0,0.03,0,0.03 +Open Season,PS2,2006,Platform,Ubisoft,0.01,0.01,0,0,0.03 +Monster Hunter Frontier Online: Forward 2,X360,2011,Role-Playing,Capcom,0,0,0.03,0,0.03 +Moyashimon DS,DS,2009,Action,Takara Tomy,0,0,0.03,0,0.03 +A Ressha de Gyoukou 2001,PS2,2001,Simulation,ArtDink,0,0,0.03,0,0.03 +Diabolik Lovers: Lunatic Parade,PSV,2016,Adventure,Idea Factory,0,0,0.03,0,0.03 +Let's Dance with Mel B,Wii,2011,Sports,Black Bean Games,0,0.02,0,0,0.03 +Battlestations: Pacific,PC,2009,Strategy,Eidos Interactive,0,0.02,0,0,0.03 +Neverwinter Nights 2,PC,2006,Role-Playing,Atari,0,0.02,0,0,0.03 +Starry ? Sky: In Autumn,PSP,2010,Misc,Asgard,0,0,0.03,0,0.03 +Battlefield 1942,PC,2002,Shooter,Electronic Arts,0.01,0.01,0,0,0.03 +Back to the Future: The Game,X360,2015,Adventure,Telltale Games,0.02,0.01,0,0,0.03 +Pitball,PS,1996,Sports,Time Warner Interactive,0.01,0.01,0,0,0.03 +X-Men Origins: Wolverine - Uncaged Edition,PC,2009,Action,Activision,0.02,0,0,0,0.03 +Combat Wings: The Great Battles of WWII,Wii,,Simulation,City Interactive,0.02,0,0,0,0.03 +D.C. III: Da Capo III,PSP,2013,Adventure,Kadokawa Games,0,0,0.03,0,0.03 +Judge Dredd: Dredd Vs Death,PS2,2003,Shooter,BAM! Entertainment,0.01,0.01,0,0,0.03 +Ocean Commander,Wii,2009,Simulation,Valcon Games,0.02,0,0,0,0.03 +Drome Racers,GBA,2003,Racing,THQ,0.02,0.01,0,0,0.03 +Wand of Fortune 2 FD: Kimi ni Sasageru Epilogue,PSP,2012,Adventure,Idea Factory,0,0,0.03,0,0.03 +God Eater Off Shot: Lindow-hen Twin Pack & Animation Vol. 2,PS4,2015,Misc,Namco Bandai Games,0,0,0.03,0,0.03 +Tank Beat,DS,2006,Strategy,Midas Interactive Entertainment,0.01,0.01,0,0,0.03 +LEGO Pirates of the Caribbean: The Video Game,PC,2011,Action,Disney Interactive Studios,0.02,0,0,0,0.03 +Turbo: Super Stunt Squad,WiiU,2013,Sports,D3Publisher,0,0.02,0,0,0.03 +Jurassic Park: Operation Genesis,PC,2003,Simulation,Vivendi Games,0,0.02,0,0,0.03 +The Peanuts Movie: Snoopy's Grand Adventure,X360,2015,Action,Activision,0,0.02,0,0,0.03 +Tenkaichi * Sengoku Lovers,DS,2010,Adventure,Rocket Company,0,0,0.03,0,0.03 +Daito Giken Koushiki Pachi-Slot Simulator Hihouden: Taiyou o Motomeru Monotachi,PS3,2013,Misc,Paon Corporation,0,0,0.03,0,0.03 +Jissen Pachi-Slot Hisshouhou! Hokuto no Ken 2,PS2,2007,Misc,Sega,0,0,0.03,0,0.03 +Bode Miller Alpine Skiing,PS2,2006,Sports,Valcon Games,0.01,0.01,0,0,0.03 +Mahou Sensei Negima! Private Lesson 2: Ojama Shimasu Parasite de Chu,GBA,2006,Role-Playing,Marvelous Interactive,0,0,0.02,0,0.03 +R-Type Delta,PS,1998,Shooter,Irem Software Engineering,0.01,0.01,0,0,0.03 +Angelique: Maren no Rokukishi,PSP,2011,Adventure,Idea Factory,0,0,0.03,0,0.03 +Soul Eater: Battle Resonance,PSP,2009,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Psycho-Pass: Mandatory Happiness,PS4,2016,Adventure,Nippon Ichi Software,0.02,0,0,0,0.03 +Hisshou Pachinko*Pachi-slot Kouryaku Series DS Vol. 3: Shinseiki Evangelion - Yakusoku no Toki,DS,2008,Misc,D3Publisher,0,0,0.03,0,0.03 +The Great Battle Gaiden 2: Matsuri da Wasshoi,SNES,1994,Action,Banpresto,0,0,0.03,0,0.03 +Napoleon Dynamite: The Game,DS,2007,Puzzle,Crave Entertainment,0.02,0,0,0,0.03 +Shinseiki Evangelion Ayanami Ikusei Keikaku DS with Asuka Hokan Keikaku,DS,2008,Simulation,Broccoli,0,0,0.03,0,0.03 +Rock 'N' Roll Adventures,Wii,2007,Platform,Popcorn Arcade,0.02,0,0,0,0.03 +War Gods,PS,1996,Fighting,GT Interactive,0.01,0.01,0,0,0.03 +Evangelion: Jo,PS2,2009,Action,Namco Bandai Games,0,0,0.03,0,0.03 +Doki Oki,PS,1995,Adventure,Banpresto,0,0,0.02,0,0.03 +Gakuen Alice: WakuWaku * Happy Friends,DS,2007,Adventure,Kids Station,0,0,0.03,0,0.03 +Kyokugen Dasshutsu ADV: Zennin Shiboudesu,PSV,2012,Adventure,ChunSoft,0,0,0.03,0,0.03 +Konohana 2: Todoke Kanai Requiem,PS2,2002,Adventure,Success,0,0,0.03,0,0.03 +Derby Time 2006,PSP,2006,Sports,Sony Computer Entertainment,0,0,0.03,0,0.03 +Yuusha Shisu.,PSV,2016,Role-Playing,Nippon Ichi Software,0,0,0.02,0,0.02 +Monster Mayhem: Build and Battle,DS,2009,Simulation,Zushi Games,0.02,0,0,0,0.02 +Senjou no Waltz,PSV,2014,Adventure,Idea Factory,0,0,0.02,0,0.02 +Chuck E. Cheese's Sports Games,Wii,2011,Sports,UFO Interactive,0.02,0,0,0,0.02 +Ghostbusters (2016),XOne,2016,Action,Activision,0.02,0,0,0,0.02 +Stronghold 2 Deluxe,PC,2005,Strategy,Take-Two Interactive,0,0.02,0,0,0.02 +MAPLUS: Portable Navi 3,PSP,2009,Misc,Edia,0,0,0.02,0,0.02 +DEATH NOTE: L o Tsugu Mono,DS,2007,Adventure,Konami Digital Entertainment,0,0,0.02,0,0.02 +ZooCube,GC,2002,Puzzle,Acclaim Entertainment,0.02,0,0,0,0.02 +Puppet Show 3: Lost Town,PC,2011,Puzzle,Focus Home Interactive,0,0.02,0,0,0.02 +Star Wars: Empire at War - Forces of Corruption,PC,2006,Strategy,LucasArts,0,0.02,0,0,0.02 +Spy Hunter / Super Sprint,GBA,2005,Racing,Zoo Digital Publishing,0.02,0.01,0,0,0.02 +Otometeki Koi Kakumei * Love Revo! Portable,PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Clover no Kuni no Alice: Wonderful Wonder World,PS2,2010,Adventure,Prototype,0,0,0.02,0,0.02 +Room Zoom: Race for Impact,XB,2004,Racing,Jaleco,0.02,0.01,0,0,0.02 +Yahari Game Demo Ore no Seishun Love-Kome Hamachi Gatteiru,PSV,2013,Adventure,5pb,0,0,0.02,0,0.02 +Tube Slider,GC,,Racing,Unknown,0.02,0,0,0,0.02 +Ghost Pirates of Vooju Island,PC,2009,Adventure,DTP Entertainment,0,0.02,0,0,0.02 +America Oudan Ultra-Quiz,SAT,1995,Misc,Victor Interactive,0,0,0.02,0,0.02 +DoDonPachi Dai-Oujou: Black Label Extra,X360,2009,Shooter,5pb,0,0,0.02,0,0.02 +Mind Your Language: Learn English! / French! / German! / Spanish! /Japanese!,DS,2009,Misc,PlayV,0,0.02,0,0,0.02 +ParaWorld,PC,2006,Strategy,Deep Silver,0,0.02,0,0,0.02 +Tropico Reloaded,PC,2009,Strategy,Kalypso Media,0,0.02,0,0,0.02 +Shinseiki Evangelion: Battle Orchestra,PS2,2007,Fighting,Broccoli,0,0,0.02,0,0.02 +Pharaoh,PC,1998,Strategy,Vivendi Games,0,0.02,0,0,0.02 +Vampire Mansion: Linda Hyde,DS,2011,Adventure,Unknown,0,0.02,0,0,0.02 +Yes! Precure 5 Go Go Zenin Shu Go! Dream Festival,DS,2008,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Battlefield 2: Modern Combat(JP sales),PS2,2005,Shooter,Electronic Arts,0,0,0.02,0,0.02 +The Idolmaster: Gravure For You! Vol.7,PS3,2012,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Stake: Fortune Fighters,XB,2003,Fighting,Metro 3D,0.02,0.01,0,0,0.02 +Serious Sam Advance,GBA,2004,Shooter,Global Star,0.02,0.01,0,0,0.02 +The Settlers: Rise of an Empire,PC,2007,Strategy,Ubisoft,0.01,0.01,0,0,0.02 +Let's Play Garden,Wii,2010,Simulation,Deep Silver,0.02,0,0,0,0.02 +Umineko no Naku Koro ni San: Shinjitsu to Gensou no Yasoukyoku,PS3,,Adventure,,0,0,0.02,0,0.02 +Pop'n Music 12 Iroha,PS2,2006,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +BeatMania IIDX 11: IIDX Red,PS2,2006,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +Warhammer Online: Age of Reckoning,PC,2008,Role-Playing,GOA,0,0.02,0,0,0.02 +Jikkyou Powerful Pro Yakyuu 12 Ketteiban,GC,2005,Sports,Konami Digital Entertainment,0,0,0.02,0,0.02 +Road Trip: The Arcade Edition,GC,2002,Racing,Zoo Digital Publishing,0.02,0,0,0,0.02 +Juusanshi Engi Engetsu Sangokuden 2,PSP,2014,Action,Idea Factory,0,0,0.02,0,0.02 +No More Heroes: Heroes' Paradise,X360,2010,Action,Marvelous Interactive,0,0,0.02,0,0.02 +Virtua Tennis: World Tour (jp sales),PSP,2005,Sports,Sega,0,0,0.02,0,0.02 +World Series of Poker 2008: Battle for the Bracelets,PSP,2007,Misc,Activision,0.02,0,0,0,0.02 +Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai,PSP,2012,Action,5pb,0,0,0.02,0,0.02 +Cold War,XB,2005,Shooter,DreamCatcher Interactive,0.02,0.01,0,0,0.02 +Steel Battalion: Line of Contact,XB,2004,Simulation,Capcom,0.02,0.01,0,0,0.02 +Naruto Shippuden: Ultimate Ninja Storm Collection,PS3,2016,Action,Namco Bandai Games,0,0.02,0,0,0.02 +Ken to Mahou to Gakuen Mono. 2G,PS3,2010,Role-Playing,Acquire,0,0,0.02,0,0.02 +NBA Starting Five,XB,2002,Sports,Konami Digital Entertainment,0.02,0.01,0,0,0.02 +Kami Naru Kimi to,PSP,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Spy Hunter: Nowhere To Run,PS2,2006,Racing,Midway Games,0.01,0.01,0,0,0.02 +LEGO Harry Potter: Years 1-4,PC,2010,Action,Warner Bros. Interactive Entertainment,0.01,0.01,0,0,0.02 +Ikki Tousen: Eloquent Fist,PSP,2008,Fighting,Marvelous Interactive,0,0,0.02,0,0.02 +Viva Pinata,PC,2007,Simulation,Microsoft Game Studios,0,0.02,0,0,0.02 +Carmen Sandiego: The Secret of the Stolen Drums,XB,2004,Action,BAM! Entertainment,0.02,0.01,0,0,0.02 +Disney's Magical Quest 3 Starring Mickey and Donald,GBA,2003,Action,Capcom,0.02,0.01,0,0,0.02 +Chili Con Carnage,PSP,2007,Shooter,Eidos Interactive,0,0.02,0,0.01,0.02 +Bus Simulator 16,PC,2016,Simulation,Astragon,0,0.02,0,0,0.02 +Rengoku II: The Stairway To H.E.A.V.E.N.,PSP,2006,Action,Konami Digital Entertainment,0.02,0,0,0,0.02 +Teddy Together,3DS,2016,Simulation,Nintendo,0,0.02,0,0,0.02 +Pony Luv,DS,2008,Simulation,GSP,0.02,0,0,0,0.02 +Strike Witches 2: Iyasu Naosu Punipunisuru,DS,2010,Action,Kadokawa Shoten,0,0,0.02,0,0.02 +Omega Quintet,PS4,2014,Role-Playing,Compile Heart,0,0,0.02,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.1,PS3,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Demigod,PC,2009,Strategy,Atari,0,0.02,0,0,0.02 +The Voice,PS3,2014,Action,Activision,0.02,0,0,0,0.02 +"Ed, Edd n Eddy: The Mis-Edventures",XB,2005,Platform,Midway Games,0.02,0.01,0,0,0.02 +Bunmei Haruka: Aoiza Ibunroku,PSP,2011,Action,FuRyu,0,0,0.02,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.6,PS3,2015,Adventure,Namco Bandai Games,0,0,0.02,0,0.02 +Blade Arcus from Shining EX,PS4,2015,Fighting,Sega,0,0,0.02,0,0.02 +Vantage Master Portable,PSP,2008,Role-Playing,Falcom Corporation,0,0,0.02,0,0.02 +Lilpri DS: Hime-Chen! Apple Pink,DS,2010,Adventure,Sega,0,0,0.02,0,0.02 +Star Trek Online,PC,2010,Role-Playing,Atari,0,0.02,0,0,0.02 +Rapala for Kinect,X360,2011,Sports,Activision,0,0.02,0,0,0.02 +Rugby Challenge 3,X360,2016,Sports,Alternative Software,0,0.02,0,0,0.02 +"Hisshou Pachinko*Pachi-Slot Kouryaku Series DS Vol. 1: Shinseiki Evangelion - Magokoro o, Kimi ni",DS,2008,Misc,D3Publisher,0,0,0.02,0,0.02 +Diabolik Lovers: Vandead Carnival,PSV,2014,Action,Idea Factory,0,0,0.02,0,0.02 +O.M.G. 26 - Our Mini Games,DS,2007,Puzzle,505 Games,0.02,0,0,0,0.02 +Ty the Tasmanian Tiger 3: Night of the Quinkan,XB,2005,Action,Zoo Digital Publishing,0.02,0.01,0,0,0.02 +AMF Xtreme Bowling,PS2,2006,Sports,Mastertronic,0.01,0.01,0,0,0.02 +Total Overdose: A Gunslinger's Tale in Mexico,XB,2005,Shooter,Eidos Interactive,0.02,0.01,0,0,0.02 +Bomberman Fantasy Race,PS,1998,Racing,Virgin Interactive,0.01,0.01,0,0,0.02 +Colin McRae Rally 2.0,GBA,2002,Racing,Codemasters,0.02,0.01,0,0,0.02 +Carnage Heart EXA,PSP,2010,Strategy,ArtDink,0,0,0.02,0,0.02 +Tropico 4: Modern Times,PC,2012,Strategy,Kalypso Media,0,0.02,0,0,0.02 +Europa Universalis III Complete,PC,2008,Strategy,Paradox Interactive,0,0.02,0,0,0.02 +Bugriders: The Race of Kings,PS,1997,Racing,GT Interactive,0.01,0.01,0,0,0.02 +Bust-A-Move,3DO,1994,Puzzle,Micro Cabin,0,0,0.02,0,0.02 +Wii de Asobu: Metroid Prime,Wii,,Shooter,Nintendo,0,0,0.02,0,0.02 +Payout Poker & Casino,PSP,,Misc,Unknown,0.02,0,0,0,0.02 +Wangan Midnight Portable,PSP,2007,Racing,Genki,0,0,0.02,0,0.02 +Cross Ange: Tenshi to Ryuu no Rondo tr.,PSV,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Canvas 2,PS2,2006,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Memories Off: Sorekara Again,PS2,2006,Adventure,KID,0,0,0.02,0,0.02 +Tom Clancy's Rainbow Six: Vegas 2,PC,2008,Shooter,Ubisoft,0,0.02,0,0,0.02 +11eyes: CrossOver,X360,2009,Adventure,5pb,0,0,0.02,0,0.02 +Kenka Bancho Otome,PSV,2016,Action,Screenlife,0,0,0.02,0,0.02 +Supermodel Makeover by Lauren Luke,DS,2009,Simulation,Avanquest,0,0.02,0,0,0.02 +George of the Jungle and the Search for the Secret,Wii,2008,Platform,Ignition Entertainment,0.02,0,0,0,0.02 +AirForce Delta Storm,GBA,2002,Shooter,Konami Digital Entertainment,0.02,0.01,0,0,0.02 +Serious Sam HD: Gold Edition,X360,2011,Shooter,Mastertronic,0,0.02,0,0,0.02 +Peter Pan in Disney's Return to Never Land,PS,2002,Platform,Sony Computer Entertainment,0.01,0.01,0,0,0.02 +Ferrari Challenge Trofeo Pirelli Deluxe,Wii,2009,Racing,System 3 Arcade Software,0,0.02,0,0,0.02 +Xenosaga I?II,DS,2006,Role-Playing,Namco Bandai Games,0,0,0.02,0,0.02 +SimCity Societies,PC,2007,Simulation,Electronic Arts,0,0.02,0,0,0.02 +Mesaze!! Tsuri Master: Sekai ni Challenge! Hen,Wii,2008,Sports,Hudson Soft,0,0,0.02,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.9,PS3,2016,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Fishdom 2 Deluxe,PC,2010,Puzzle,Rondomedia,0,0.02,0,0.01,0.02 +Kuusen II,PS2,2004,Simulation,Kadokawa Shoten,0,0,0.02,0,0.02 +Cross Channel: In Memory of All People,X360,2011,Adventure,CyberFront,0,0,0.02,0,0.02 +Bomberman Story DS,DS,2007,Role-Playing,Rising Star Games,0,0,0.02,0,0.02 +Penguins of Madagascar,Wii,2014,Action,Namco Bandai Games,0,0.02,0,0,0.02 +Clannad: Mitsumi Mamoru Sakamichi de - Joukan,PSP,2010,Adventure,Prototype,0,0,0.02,0,0.02 +Brothers in Arms: Hell's Highway,PC,2008,Shooter,Ubisoft,0,0.02,0,0,0.02 +Are You Alice?,PSP,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Future Tactics: The Uprising,GC,2004,Strategy,JoWood Productions,0.02,0,0,0,0.02 +Stronghold Crusader Extreme,PC,2008,Strategy,Gamecock,0,0.02,0,0,0.02 +Kensei: Sacred Fist,PS,1997,Fighting,Konami Digital Entertainment,0.01,0.01,0,0,0.02 +Backyard NFL Football,DS,2007,Sports,Atari,0.02,0,0,0,0.02 +Okashi na Shima no Peter Pan: Sweet Never Land,PSP,2011,Adventure,Quinrose,0,0,0.02,0,0.02 +Urakata Hakuoki,PSP,2013,Adventure,Idea Factory,0,0,0.02,0,0.02 +Cities XL 2011,PC,2010,Simulation,Focus Home Interactive,0,0.02,0,0,0.02 +Kung Fu Panda,PC,2008,Action,Activision,0,0.02,0,0,0.02 +Gift: Prism,PS2,2006,Adventure,Sweets,0,0,0.02,0,0.02 +PDC World Championship Darts: Pro Tour,X360,2010,Sports,O-Games,0,0.02,0,0,0.02 +Shanghai: True Valor,PS,1998,Puzzle,Activision,0.01,0.01,0,0,0.02 +Tokyo Xanadu eX+,PS4,2016,Role-Playing,Nihon Falcom Corporation,0,0,0.02,0,0.02 +Major Dream: Major DS Dream Baseball,DS,2008,Sports,Takara Tomy,0,0,0.02,0,0.02 +"Steins,Gate: Senkei Kousoku no Phonogram",X360,2013,Adventure,5pb,0,0,0.02,0,0.02 +Thunderbirds,GBA,2004,Shooter,Vivendi Games,0.02,0.01,0,0,0.02 +Winning Post 8 2015,PSV,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +Vitamin Z Revolution,PSP,2010,Adventure,D3Publisher,0,0,0.02,0,0.02 +Aria: The Origination ~Aoi Wakusei no El Cielo~,PS2,2008,Adventure,Alchemist,0,0,0.02,0,0.02 +Inkheart,DS,2009,Adventure,DreamCatcher Interactive,0.02,0,0,0,0.02 +Street Fighter X Tekken,PC,2012,Fighting,Capcom,0,0.02,0,0,0.02 +Lunatic Dawn Tempest,PS2,2001,Role-Playing,ArtDink,0,0,0.02,0,0.02 +Ceville,PC,2009,Action,Kalypso Media,0,0.02,0,0,0.02 +Strike Witches: Shirogane no Tsubasa,PSP,2012,Strategy,Kadokawa Shoten,0,0,0.02,0,0.02 +Total Immersion Racing,XB,2002,Racing,Empire Interactive,0.02,0.01,0,0,0.02 +Totally Spies! 2: Undercover,DS,2006,Action,Atari,0.01,0.01,0,0,0.02 +Luxor: The Wrath of Set,PSP,2006,Puzzle,Mumbo Jumbo,0.02,0,0,0,0.02 +Natalie Brooks: Mystery at Hillcrest High,DS,2012,Action,Licensed 4U,0,0.02,0,0,0.02 +NASCAR Heat Evolution,XOne,2016,Racing,Dusenberry Martin Racing,0.02,0,0,0,0.02 +Board Game: Top Shop,PS,1999,Misc,Success,0.01,0.01,0,0,0.02 +NANA: Live Staff Daiboshuu! Shoshinsha Kangei,DS,2007,Action,Konami Digital Entertainment,0,0,0.02,0,0.02 +Castlevania: Lords of Shadow - Reverie,X360,2011,Action,Konami Digital Entertainment,0.02,0,0,0,0.02 +Xia-Xia,DS,2012,Platform,,0,0.02,0,0,0.02 +Cocoto Magic Circus,Wii,2008,Shooter,Neko Entertainment,0.02,0,0,0,0.02 +Zero no Tsukaima: Shou-akuma to Harukaze no Concerto,PS2,2007,Adventure,Marvelous Interactive,0,0,0.02,0,0.02 +Dunamis 15,PS3,2011,Adventure,5pb,0,0,0.02,0,0.02 +DemiKids: Dark Version,GBA,2002,Role-Playing,Atlus,0.02,0.01,0,0,0.02 +Mage Knight: Destiny's Soldier,DS,2006,Strategy,Namco Bandai Games,0.02,0,0,0,0.02 +GT Legends,PC,2005,Racing,Atari,0,0.02,0,0,0.02 +Blender Bros.,GBA,2002,Platform,Unknown,0.02,0.01,0,0,0.02 +Suzumiya Haruhi no Heiretsu,Wii,2009,Adventure,Sega,0,0,0.02,0,0.02 +F1 Race Stars,PC,2012,Racing,Codemasters,0,0.02,0,0,0.02 +DemiKids: Light Version,GBA,2002,Role-Playing,Atlus,0.02,0.01,0,0,0.02 +Nanatsuiro * Drops Pure!!,PS2,2007,Adventure,Media Works,0,0,0.02,0,0.02 +Pe-Jongju to Manabu Kankokugo DS: Test-Hen,DS,2010,Misc,D3Publisher,0,0,0.02,0,0.02 +Escape the Emerald Star,PC,2011,Puzzle,PopCap Games,0.02,0,0,0,0.02 +La Corda d'Oro 4,PSV,2016,Action,Tecmo Koei,0,0,0.02,0,0.02 +Thomas and Friends: Steaming around Sodor,3DS,2015,Action,Avanquest Software,0,0.02,0,0,0.02 +Titanic Mystery,Wii,2010,Puzzle,O-Games,0.02,0,0,0,0.02 +Falcon 4.0: Allied Force,PC,2005,Simulation,Graphsim Entertainment,0,0.02,0,0,0.02 +Bottom of the 9th '97,PS,1997,Sports,Konami Digital Entertainment,0.01,0.01,0,0,0.02 +Shaman King: Chou Senjiryokketsu 3,GBA,2002,Role-Playing,King Records,0,0,0.02,0,0.02 +Ride,X360,2015,Racing,Milestone S.r.l.,0,0.02,0,0,0.02 +Line Rider 2: Unbound,Wii,2008,Puzzle,Deep Silver,0.02,0,0,0,0.02 +HatsuKare * Renai Debut Sengen!,PSP,2013,Adventure,FuRyu,0,0,0.02,0,0.02 +Treasure Chase,DS,2011,Puzzle,Storm City Games,0.02,0,0,0,0.02 +Unreal Anthology,PC,2006,Shooter,Midway Games,0,0.02,0,0,0.02 +X3: Terran War Pack,PC,2012,Misc,Deep Silver,0,0.02,0,0,0.02 +Prison Architect,PS4,2016,Action,Introversion Software,0.01,0.01,0,0,0.02 +G1 Jockey Wii,Wii,2007,Sports,Tecmo Koei,0,0.01,0.02,0,0.02 +Kingdom: Ikkitousen no Ken,PSP,2010,Action,Konami Digital Entertainment,0,0,0.02,0,0.02 +Wrestle Kingdom 2: Pro Wrestling Sekai Taisen,PS2,2007,Fighting,Yuke's,0,0,0.02,0,0.02 +Rugby League Live 3,PS4,2015,Action,Tru Blu Entertainment,0,0.02,0,0,0.02 +Tom Clancy's EndWar,PC,2009,Strategy,Ubisoft,0,0.02,0,0,0.02 +RayCrisis: Series Termination,PS,1999,Shooter,JVC,0.01,0.01,0,0,0.02 +Left 4 Dead,PC,2008,Shooter,Electronic Arts,0,0.02,0,0,0.02 +Bejeweled 2 Deluxe,PC,2006,Puzzle,Focus Home Interactive,0,0.02,0,0,0.02 +Ikki Tousen: Shining Dragon,PS2,2007,Role-Playing,Marvelous Interactive,0,0,0.02,0,0.02 +Kimi ga Aruji de Shitsuji ga Ore de: Oshie Nikki,PS2,2008,Adventure,Minato Station,0,0,0.02,0,0.02 +Toxic Grind,XB,2002,Sports,THQ,0.02,0,0,0,0.02 +DiRT,PC,2007,Racing,Codemasters,0,0.02,0,0,0.02 +Kawasaki Jet Ski,Wii,2008,Racing,Metro 3D,0.02,0,0,0,0.02 +Genkai Tokki: Seven Pirates,PSV,2016,Role-Playing,Compile Heart,0,0,0.02,0,0.02 +Enchanted Arms (JP sales),X360,2006,Role-Playing,Ubisoft,0,0,0.02,0,0.02 +ScrapLand,XB,2005,Action,Deep Silver,0.02,0,0,0,0.02 +Daito Giken Koushiki Pachi-Slot Simulator: Hihouden - Fuujirareta Megami Portable,PSP,2011,Misc,Paon,0,0,0.02,0,0.02 +Geten no Hana,PSP,2013,Misc,Tecmo Koei,0,0,0.02,0,0.02 +Crazy Machines,Wii,2010,Puzzle,DTP Entertainment,0.01,0.01,0,0,0.02 +Harukanaru Toki no Naka de 3 with Izayoiki Aizouban,PSP,2009,Adventure,Tecmo Koei,0,0,0.02,0,0.02 +Blade Arcus from Shining EX,PS3,2015,Fighting,Sega,0,0,0.02,0,0.02 +Brave: The Video Game,Wii,2012,Action,Disney Interactive Studios,0,0.02,0,0,0.02 +Frontlines: Fuel of War,PC,2008,Shooter,THQ,0,0.02,0,0,0.02 +D.Gray-man: Sousha no Shikaku,PS2,2008,Adventure,Konami Digital Entertainment,0,0,0.02,0,0.02 +Indianapolis 500 Evolution,X360,2009,Racing,Zushi Games,0.02,0,0,0,0.02 +Ookami to Koushinryou: Omiowataru Kaze,DS,2009,Adventure,ASCII Media Works,0,0,0.02,0,0.02 +Grey's Anatomy: The Video Game,PC,2009,Adventure,Ubisoft,0,0.02,0,0,0.02 +School Days LxH,PS2,2008,Adventure,Interchannel,0,0,0.02,0,0.02 +Neo Angelique,PS2,2006,Adventure,Tecmo Koei,0,0,0.02,0,0.02 +Big Idea's VeggieTales: LarryBoy and the Bad Apple,PS2,2006,Action,Crave Entertainment,0.01,0.01,0,0,0.02 +Namco Museum Battle Collection (JP sales),PSP,2005,Misc,Sony Computer Entertainment,0,0,0.02,0,0.02 +"Chaos,Head Noah",PSP,2010,Adventure,5pb,0,0,0.02,0,0.02 +Brandish: The Dark Revenant,PSP,2009,Role-Playing,Falcom Corporation,0,0,0.02,0,0.02 +Summon Night: Swordcraft Story,GBA,2003,Role-Playing,Banpresto,0.02,0.01,0,0,0.02 +Samurai Shodown V,XB,2006,Fighting,Ignition Entertainment,0.02,0,0,0,0.02 +Pro Fishing Challenge,XB,2004,Sports,Atlus,0.02,0,0,0,0.02 +Minna no Chizu 2,PSP,2007,Misc,Zenrin,0,0,0.02,0,0.02 +Franklin's Great Adventures,DS,2006,Action,Game Factory,0.02,0,0,0,0.02 +Test Drive Unlimited,PC,2007,Racing,Atari,0,0.02,0,0,0.02 +SAW,PC,2009,Action,Konami Digital Entertainment,0,0.02,0,0,0.02 +Princess Saver! Eternal Love for My Lady,PS2,2010,Adventure,Comfort,0,0,0.02,0,0.02 +To Love-Ru Trouble: Darkness - True Princess,PSV,2015,Action,FuRyu,0,0,0.02,0,0.02 +Tokyo Mew Mew,PS,2002,Role-Playing,Takara,0,0,0.02,0,0.02 +Jitsumei Jikkyou Keiba Dream Classic 2002,PS2,2002,Sports,Namco Bandai Games,0,0,0.02,0,0.02 +Ice Age: Dawn of the Dinosaurs,PC,2009,Action,Activision,0.02,0,0,0,0.02 +Interactive Storybook DS Series 3,DS,2007,Misc,Tommo,0.02,0,0,0,0.02 +Moujuutsukai to Oujisama: Snow Bride Portable,PSP,2012,Adventure,Idea Factory,0,0,0.02,0,0.02 +Twinkle * Crusaders GoGo!,PSP,2010,Adventure,ASCII Media Works,0,0,0.02,0,0.02 +Serious Sam HD: Gold Edition,PC,2010,Shooter,Devolver Digital,0,0.02,0,0,0.02 +Rule of Rose,PS2,2006,Action,505 Games,0.01,0.01,0,0,0.02 +RedCard 20-03,GC,2002,Sports,Midway Games,0.02,0,0,0,0.02 +Homeworld,PC,1998,Strategy,Vivendi Games,0,0.02,0,0,0.02 +Freestyle Metal X,XB,2003,Racing,Midway Games,0.02,0,0,0,0.02 +Shonen Jump's One Piece: Grand Adventure,PS2,2005,Fighting,Namco Bandai Games,0.01,0.01,0,0,0.02 +Pac-Man World Rally,PS2,2006,Racing,Namco Bandai Games,0.01,0.01,0,0,0.02 +Plants vs. Zombies: Garden Warfare,PC,2014,Shooter,Electronic Arts,0,0.02,0,0,0.02 +Max Payne,PC,2001,Shooter,Take-Two Interactive,0,0.02,0,0,0.02 +Uta Kumi 575,PSV,2014,Misc,Sega,0,0,0.02,0,0.02 +Invizimals: The Lost Kingdom,PS3,2013,Action,Sony Computer Entertainment,0,0.02,0,0.01,0.02 +428: Fuusa Sareta Shibuya de,PS3,2009,Adventure,Spike,0,0,0.02,0,0.02 +IL-2 Sturmovik: Forgotten Battles,PC,2003,Simulation,Ubisoft,0,0.02,0,0,0.02 +Overlord,PC,2007,Strategy,Codemasters,0,0.02,0,0,0.02 +Sacred 3,PC,2014,Role-Playing,Deep Silver,0,0.02,0,0,0.02 +The Professor's Brain Trainer: Logic,DS,2005,Puzzle,505 Games,0.02,0,0,0,0.02 +Fritz Chess,Wii,2009,Strategy,Deep Silver,0.02,0.01,0,0,0.02 +Hisshou Pachinko * Pachi-Slot Kouryaku Series Portable Vol. 2: CR Evangelion - Hajimari no Fukuin,PSP,2010,Misc,D3Publisher,0,0,0.02,0,0.02 +NFL Blitz Pro,GC,2003,Sports,Midway Games,0.02,0,0,0,0.02 +Rocket League,PC,2016,Sports,505 Games,0.01,0.01,0,0,0.02 +Balls of Fury,Wii,2007,Sports,Zoo Digital Publishing,0.02,0,0,0,0.02 +18 Wheels of Steel: Extreme Trucker,PC,2009,Racing,Rondomedia,0,0.02,0,0,0.02 +Rugby World Cup 2015,XOne,2015,Sports,Ubisoft,0,0.02,0,0,0.02 +Winning Post 8 2015,PS3,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +Veggy World,DS,2011,Shooter,Jack of All Games,0.02,0,0,0,0.02 +Commandos: Strike Force,XB,2006,Shooter,Eidos Interactive,0.02,0,0,0,0.02 +Ukiyo no Roushi,PSV,2015,Action,Unknown,0,0,0.02,0,0.02 +SBK: Snowboard Kids,DS,2005,Sports,Rising Star Games,0.02,0,0,0,0.02 +Warriors of the Lost Empire (JP sales),PSP,2007,Role-Playing,Mercury Games,0,0,0.02,0,0.02 +Jojo's Bizarre Adventure,PS,1999,Fighting,Virgin Interactive,0.01,0.01,0,0,0.02 +Lode Runner,DS,2006,Puzzle,Hudson Entertainment,0,0,0.02,0,0.02 +Zathura,XB,2005,Adventure,Take-Two Interactive,0.02,0,0,0,0.02 +Cities in Motion Collection,PC,2011,Simulation,Unknown,0,0.02,0,0,0.02 +Evolution Snowboarding,PS2,2002,Sports,Konami Digital Entertainment,0.01,0.01,0,0,0.02 +Jissen Pachinko Hisshouhou! CR Sakura Taisen,PS2,2007,Misc,Sega,0,0,0.02,0,0.02 +Aegis of Earth: Protonovus Assault,PS4,2016,Action,PQube,0.02,0,0,0,0.02 +Freedom Wings,DS,2006,Simulation,Natsume,0.02,0,0,0,0.02 +Super Nazo Puyo Tsuu: Ruruu no Tetsuwan Hanjyouki,SNES,1996,Puzzle,Compile,0,0,0.02,0,0.02 +Zillions of Enemy X: Zetsukai no Crusade,PS3,2013,Role-Playing,Nippon Ichi Software,0,0,0.02,0,0.02 +Dream Chronicles,DS,2010,Adventure,Zoo Games,0.02,0,0,0,0.02 +Kung Fu Panda: Showdown of Legendary Legends,PS3,2015,Action,Little Orbit,0,0.02,0,0,0.02 +The Settlers IV,PC,2001,Strategy,Blue Byte,0,0.02,0,0,0.02 +Happiness! De-Lucks,PS2,2007,Adventure,Marvelous Interactive,0,0,0.02,0,0.02 +Mount & Blade,PC,2008,Role-Playing,Paradox Interactive,0,0.02,0,0,0.02 +Doki Majo Plus,DS,2009,Adventure,SNK Playmore,0,0,0.02,0,0.02 +Eureka Seven Vol. 2: The New Vision,PS2,2006,Shooter,Namco Bandai Games,0,0,0.02,0,0.02 +Love Once: Mermaid's Tears,PS3,2011,Adventure,Unknown,0,0,0.02,0,0.02 +Puzzle Challenge: Crosswords and More!,PS2,2006,Puzzle,Crave Entertainment,0.01,0.01,0,0,0.02 +Mata Hari: Betrayal is only a Kiss Away,PC,2008,Adventure,DTP Entertainment,0,0.02,0,0,0.02 +"Simple 2500 Series Portable!! Vol. 12: The Hohei 2: Senyuu yo, Sakini Ike",PSP,2009,Action,D3Publisher,0,0,0.02,0,0.02 +Muppets Party Cruise,GC,2003,Misc,TDK Mediactive,0.02,0,0,0,0.02 +Quake 4,PC,2005,Shooter,Activision,0,0.02,0,0,0.02 +Maximum Capacity: Hotel Giant,PC,2002,Strategy,JoWood Productions,0,0.02,0,0,0.02 +Sengoku Otome: Legend Battle,PSV,2016,Action,Unknown,0,0,0.02,0,0.02 +Shippuu Mahou Daisakusen: Kingdom-Grandprix,SAT,1996,Shooter,Gaga,0,0,0.02,0,0.02 +Yamasa Digi Portable: Matsuri no Tatsujin - Win-Chan no Natsumatsuri,PSP,2006,Misc,Yamasa Entertainment,0,0,0.02,0,0.02 +Quiz Present Variety Q-Sama!! DS: Pressure Study x Atama Gai Kunaru Drill SP,DS,2011,Misc,Plenty,0,0,0.02,0,0.02 +Fritz Chess,DS,2009,Strategy,Deep Silver,0.02,0,0,0,0.02 +Heart no Kuni no Alice Anniversary Ver.: Wonderful Wonder World,PSP,2011,Adventure,Quinrose,0,0,0.02,0,0.02 +Fuel,PC,2009,Racing,Codemasters,0,0.02,0,0,0.02 +Serious Sam: Next Encounter,GC,2004,Shooter,Global Star,0.02,0,0,0,0.02 +PachiPara 15: Super Umi Monogatari in Okinawa 2,PS3,2010,Misc,Irem Software Engineering,0,0,0.02,0,0.02 +Motto! SoniComi,PS3,2014,Simulation,Kadokawa Games,0,0,0.02,0,0.02 +Let's Play Flight Attendant,DS,2010,Simulation,Deep Silver,0.02,0,0,0,0.02 +Akai Ito DS,DS,2008,Adventure,Alchemist,0,0,0.02,0,0.02 +Knight's Apprentice: Memorick's Adventures,XB,2004,Action,Microids,0.02,0,0,0,0.02 +Saint,Wii,,Shooter,Unknown,0.02,0,0,0,0.02 +Darksiders,PS3,2010,Action,THQ,0.01,0.01,0,0,0.02 +Natsuiro no Sunadokei,PS2,2002,Adventure,Princess Soft,0,0,0.02,0,0.02 +Indigo Prophecy,PC,2005,Adventure,Atari,0,0.02,0,0,0.02 +Jissen Pachi-Slot Hisshouhou! Mister Magic Neo,PS2,2007,Misc,Sega,0,0,0.02,0,0.02 +Tale of a Hero,PC,2010,Adventure,Daedalic,0,0.02,0,0.01,0.02 +Valentino Rossi: The Game,XOne,2016,Racing,Namco Bandai Games,0,0.02,0,0,0.02 +Turbo: Super Stunt Squad,PS3,2013,Sports,D3Publisher,0,0.02,0,0,0.02 +FIFA Soccer 09,PC,2008,Sports,Electronic Arts,0,0.02,0,0,0.02 +The Lord of the Rings: The Battle for Middle-Earth II,PC,2006,Strategy,Electronic Arts,0.01,0.01,0,0,0.02 +Ballblazer Champions,PS,1997,Sports,CTO SpA,0.01,0.01,0,0,0.02 +Steal Princess,DS,,Platform,Unknown,0.02,0,0,0,0.02 +So Blonde,PC,2008,Adventure,Eidos Interactive,0,0.02,0,0,0.02 +Winter Sports 2011,X360,2011,Sports,DTP Entertainment,0,0.02,0,0,0.02 +Koisuru Otome to Shugo no Tate: The Shield of AIGIS,PS2,2008,Adventure,Alchemist,0,0,0.02,0,0.02 +Disney's Meet the Robinsons,DS,2007,Action,Disney Interactive Studios,0.02,0,0,0,0.02 +Casper's Scare School: Classroom Capers,DS,2008,Adventure,Blast! Entertainment Ltd,0.02,0,0,0,0.02 +Moujuutsukai to Oujisama Portable,PSP,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Galaxy Angel II: Eigou Kaiki no Koku,PS2,2009,Strategy,Broccoli,0,0,0.02,0,0.02 +Genroh,PSP,2012,Action,Idea Factory,0,0,0.02,0,0.02 +Otome wa Oanesama Boku ni Koi Shiteru Portable,PSP,2010,Adventure,Alchemist,0,0,0.02,0,0.02 +Iron Phoenix,XB,2005,Fighting,Sega,0.02,0,0,0,0.02 +Legend: Hand of God,PC,2007,Role-Playing,DTP Entertainment,0,0.02,0,0,0.02 +Geon Cube,Wii,2009,Puzzle,P2 Games,0.02,0,0,0,0.02 +Tennis no Oji-Sama: Driving Smash! Side King,DS,2008,Sports,Konami Digital Entertainment,0,0,0.02,0,0.02 +Kuon,PS2,2004,Adventure,Indie Games,0.01,0.01,0,0,0.02 +Kannou Mukashi Banashi Portable,PSP,2012,Adventure,Idea Factory,0,0,0.02,0,0.02 +Umineko no Naku Koro ni: Majo to Suiri no Rinbukyoku,PS3,2010,Adventure,Alchemist,0,0,0.02,0,0.02 +Diabolik Lovers: More Blood,PSV,2015,Adventure,Idea Factory,0,0,0.02,0,0.02 +Triple Crown Championship Snowboarding,Wii,2010,Sports,Destineer,0.02,0,0,0,0.02 +UnchainBlades EXXiV,3DS,2012,Role-Playing,FuRyu,0,0,0.02,0,0.02 +The Fast and the Furious,PSP,2007,Racing,Deep Silver,0.02,0,0,0,0.02 +Fallout Trilogy,PC,2004,Role-Playing,Ubisoft,0,0.02,0,0,0.02 +Carmen Sandiego: The Secret of the Stolen Drums,GC,2004,Action,BAM! Entertainment,0.02,0,0,0,0.02 +The Sims: Complete Collection,PC,2005,Simulation,Electronic Arts,0.01,0.01,0,0,0.02 +Command & Conquer 3: Deluxe Edition,PC,2008,Strategy,Electronic Arts,0,0.02,0,0,0.02 +Dance! It's Your Stage,PS3,2011,Misc,DTP Entertainment,0,0.02,0,0.01,0.02 +Sacred Gold,PC,2005,Role-Playing,Encore,0,0.02,0,0,0.02 +Dies Irae: Amantes Amentes,PSP,2012,Action,Views,0,0,0.02,0,0.02 +Puyo Puyo! 15th Anniversary,PSP,2007,Puzzle,Sega,0,0,0.02,0,0.02 +Mind over Matter,DS,2010,Puzzle,505 Games,0.02,0,0,0,0.02 +The Idolmaster: Gravure For You! Vol.9,PS3,2012,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Discovery Kids: Snake Safari,DS,2009,Simulation,505 Games,0.02,0,0,0,0.02 +Ryu-koku,PS2,2006,Adventure,KID,0,0,0.02,0,0.02 +Maji de Manabu: LEC de Ukaru - DS Hishou Boki 3-Kyuu,DS,2008,Misc,Square Enix,0,0,0.02,0,0.02 +Group S Challenge,XB,2003,Racing,Capcom,0.02,0,0,0,0.02 +GunParade Orchestra: Midori no Shou,PS2,2006,Adventure,Sony Computer Entertainment,0,0,0.02,0,0.02 +Shooter: Starfighter Sanvein,PS,2000,Shooter,Midas Interactive Entertainment,0.01,0.01,0,0,0.02 +Jewel Master: Cradle Of Rome 2,DS,2011,Puzzle,Rising Star Games,0,0.02,0,0,0.02 +Sakura Wars 1 & 2,PSP,2006,Strategy,Sega,0,0,0.02,0,0.02 +Kao Challengers,PSP,2005,Platform,Atari,0.02,0,0,0,0.02 +Brave: The Video Game,DS,2012,Action,Disney Interactive Studios,0,0.02,0,0,0.02 +Order of War,PC,2009,Strategy,Square Enix,0,0.01,0,0,0.02 +Terminator 3: The Redemption,GC,2004,Shooter,Atari,0.02,0,0,0,0.02 +Painkiller,PC,2004,Shooter,DreamCatcher Interactive,0,0.02,0,0,0.02 +Date A Live: Arusu Install,PS3,2014,Adventure,Compile Heart,0,0,0.02,0,0.02 +Canimal Triple,PSV,2014,Misc,Warner Bros. Interactive Entertainment,0,0.02,0,0,0.02 +Tengen Toppa Gurren-Lagann,DS,2007,Action,Konami Digital Entertainment,0,0,0.02,0,0.02 +Sugoi Hebereke,SNES,1994,Fighting,Sunsoft,0,0,0.02,0,0.02 +Pebble Beach Golf Links,SAT,1994,Sports,Sega,0,0,0.02,0,0.02 +Spider-Man: Web of Shadows,PC,2008,Action,Activision,0,0.02,0,0,0.02 +Dakar 2: The World's Ultimate Rally,XB,2003,Racing,Acclaim Entertainment,0.02,0,0,0,0.02 +Jelly Belly: Ballistic Beans,Wii,2009,Puzzle,Zoo Digital Publishing,0.02,0,0,0,0.02 +PopCap Hits!,X360,2011,Misc,PopCap Games,0,0.02,0,0,0.02 +Mario Tennis,3DS,,Sports,,0,0,0.02,0,0.02 +Higurashi Daybreak Portable Mega Edition,PSP,2009,Adventure,Alchemist,0,0,0.02,0,0.02 +Dragon's Lair,DS,2010,Platform,Destineer,0.02,0,0,0,0.02 +Shinken de Watashi ni Koi Shinasai! R,PS3,2012,Action,Minato Station,0,0,0.02,0,0.02 +Whiteout,PS2,2002,Racing,Konami Digital Entertainment,0.01,0.01,0,0,0.02 +Shiratsuyu no Kai,PSP,2013,Adventure,Idea Factory,0,0,0.02,0,0.02 +Dungeon Defenders,PC,2011,Role-Playing,Unknown,0.02,0,0,0,0.02 +Final Fantasy XIV: Heavensward,PS3,2015,Action,Square Enix,0.01,0,0.01,0,0.02 +Sniper Elite V2,WiiU,2013,Shooter,505 Games,0,0.02,0,0,0.02 +World Neverland 2in1 Portable: Olerud Kingdom & Republic of Pluto,PSP,2008,Simulation,fonfun,0,0,0.02,0,0.02 +XGRA: Extreme G Racing Association,GC,2003,Racing,Acclaim Entertainment,0.02,0,0,0,0.02 +Command & Conquer: The First Decade,PC,2006,Strategy,Electronic Arts,0.01,0.01,0,0,0.02 +Thomas & Friends: Hero of the Rails,Wii,2010,Misc,Unknown,0,0.02,0,0,0.02 +Taito Legends 2,PS2,2006,Misc,Empire Interactive,0.01,0.01,0,0,0.02 +World Championship Poker featuring Howard Lederer: All In,Wii,2006,Misc,505 Games,0.02,0,0,0,0.02 +Kill.Switch,GBA,2004,Shooter,Zoo Digital Publishing,0.02,0.01,0,0,0.02 +"Renai Banchou: Inochi Meishi, Koiseyo Otome! Love is Power!!!",PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Jinsei Game Wii,Wii,2007,Misc,Takara Tomy,0,0,0.02,0,0.02 +Heavy Fire: The Chosen Few 3D,3DS,2011,Shooter,Mastiff,0.02,0,0,0,0.02 +Motto Hayaku! Seikaku Ni! Suu Sense Keisan Ryuoku Up Training - SuuTore,DS,2008,Misc,Benesse,0,0,0.02,0,0.02 +Hyakka Hyakurou: Sengoku Ninpoujou,PSV,2016,Adventure,D3Publisher,0,0,0.02,0,0.02 +Jake Hunter: Detective Chronicles,DS,2008,Adventure,Aksys Games,0.02,0,0,0,0.02 +Gekka Ryouran Romance,PSP,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Don Bradman Cricket 14,PS3,2014,Sports,Tru Blu Entertainment,0,0.02,0,0,0.02 +Guess the Logos,XB,2004,Puzzle,Sega,0.02,0,0,0,0.02 +Ore no Yome: Anata Dake no Hanayome,X360,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Crime Scene,DS,2009,Adventure,Nobilis,0,0.02,0,0,0.02 +Military History: Commander - Europe at War,PSP,2009,Strategy,Slitherine Software,0,0.01,0,0.01,0.02 +NightTruth: Explanation of the Paranormal - The Making of Nighttruth: Voice Selection,SAT,1996,Misc,Sonnet,0,0,0.02,0,0.02 +Final Approach 2: 1st Priority,PS2,2008,Adventure,Princess Soft,0,0,0.02,0,0.02 +Stormrise,PC,2009,Strategy,Sega,0,0.02,0,0,0.02 +Gochuumon wa Usagi Desu ka?? Wonderful Party!,PSV,2016,Adventure,5pb,0,0,0.02,0,0.02 +Moujuutsukai to Oujisama: Snow Bride,PS2,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Detective Jinguuji Saburo: Ronde Revenge,3DS,2012,Action,Arc System Works,0,0,0.02,0,0.02 +Casper: Spirit Dimensions,GC,2002,Platform,TDK Mediactive,0.02,0,0,0,0.02 +Meitantei Evangelion,PS2,2007,Adventure,Broccoli,0,0,0.02,0,0.02 +Tsuyo Kiss 2 Portable,PSP,2010,Adventure,NetRevo,0,0,0.02,0,0.02 +Butt-Ugly Martians: Zoom or Doom!,PS2,2002,Racing,Vivendi Games,0.01,0.01,0,0,0.02 +Mar Heaven: Karudea no Akuma,DS,2006,Role-Playing,Konami Digital Entertainment,0,0,0.02,0,0.02 +F1 2016 (Codemasters),PC,2016,Racing,Codemasters,0,0.02,0,0,0.02 +Brain Dead 13,PS,1996,Adventure,Coconuts Japan,0.01,0.01,0,0,0.02 +Spider-Man 3,PC,2007,Platform,Activision,0.02,0,0,0,0.02 +"Robotics,Notes",X360,2012,Adventure,5pb,0,0,0.02,0,0.02 +Hoppie,DS,2011,Platform,Jack of All Games,0.02,0,0,0,0.02 +Rugby League Team Manager 2015,PC,2015,Action,Alternative Software,0,0.02,0,0,0.02 +Shaberu! DS Oryouri Navi: Marugoto Teikoku Hotel: Saikouhou no Ryouri-chou ga Oshieru Katei Ryouri,DS,2007,Misc,Tecmo Koei,0,0,0.02,0,0.02 +The Lord of the Rings Online: Mines of Moria,PC,2008,Role-Playing,Codemasters Online,0,0.02,0,0,0.02 +T.A.C. Heroes : Big Red One,DS,2010,Strategy,Storm City Games,0.02,0,0,0,0.02 +War Leaders: Clash of Nations,PC,2009,Strategy,CDV Software Entertainment,0,0.02,0,0,0.02 +Dungeons & Dragons: Shadow over Mystara,PS3,2013,Role-Playing,Capcom,0,0,0.02,0,0.02 +The King of Fighters NeoWave,XB,2006,Fighting,SNK Playmore,0.02,0,0,0,0.02 +Super PickUps,PS2,2007,Racing,XS Games,0.01,0.01,0,0,0.02 +Puzzle Quest: Challenge of the Warlords,PSP,2007,Puzzle,D3Publisher,0.01,0,0,0,0.02 +Aquanaut's Holiday,PS,1995,Adventure,Sony Computer Entertainment,0.01,0.01,0,0,0.02 +Negima!? Chou Mahora Taisen Chuu: Checkiin Zenin Shuugou! Yappari Onsen Kichaimashitaa,DS,2007,Adventure,Marvelous Interactive,0,0,0.02,0,0.02 +Runaway: A Twist of Fate,DS,,Adventure,Focus Home Interactive,0,0.02,0,0,0.02 +Hot 'n' Cold,DS,2009,Action,Majesco Entertainment,0.02,0,0,0,0.02 +Nisenochigiri,PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Wakeboarding Unleashed Featuring Shaun Murray,GBA,2003,Sports,Aspyr,0.01,0.01,0,0,0.02 +The Testament of Sherlock Holmes,X360,2012,Adventure,Focus Home Interactive,0,0.02,0,0,0.02 +Kikou Heidan J-Phoenix: Cobalt Shoutaihen,PS2,2002,Action,Takara,0,0,0.02,0,0.02 +Last Escort,PS2,2006,Adventure,D3Publisher,0,0,0.02,0,0.02 +Meikyuu Cross Blood: Reloaded,X360,2011,Action,Unknown,0,0,0.02,0,0.02 +Livly Garden,DS,2010,Simulation,Marvelous Interactive,0,0,0.02,0,0.02 +Nicktoons Collection: Game Boy Advance Video Volume 3,GBA,2005,Misc,,0.01,0.01,0,0,0.02 +Elminage III: Ankoku no Shito to Yaiyou no Kyuuden,PSP,2011,Role-Playing,Starfish,0,0,0.02,0,0.02 +Commando: Steel Disaster,DS,2008,Shooter,Lexicon Entertainment,0.02,0,0,0,0.02 +Aria: The Natural ~Tooi Yume no Mirage~,PS2,2006,Adventure,Alchemist,0,0,0.02,0,0.02 +Hellgate: London,PC,2007,Role-Playing,Electronic Arts,0,0.02,0,0,0.02 +Katekyoo Hitman Reborn! Dream Hyper Battle! Wii,Wii,2008,Fighting,Marvelous Interactive,0,0,0.02,0,0.02 +The Awakened Fate Ultimatum,PS3,2014,Role-Playing,Nippon Ichi Software,0,0,0.02,0,0.02 +Gal Gun,PS3,2012,Shooter,Alchemist,0,0,0.02,0,0.02 +Chuck E. Cheese's Super Collection,Wii,2011,Action,UFO Interactive,0.02,0,0,0,0.02 +Hakuouki: Yuugi Roku DS,DS,2011,Adventure,Idea Factory,0,0,0.02,0,0.02 +Mystery Tales 2: The Spirit Mask,DS,2011,Puzzle,Unknown,0,0.02,0,0,0.02 +Kung Fu Panda: Showdown of Legendary Legends,3DS,2015,Action,Little Orbit,0,0.02,0,0,0.02 +Shonen Jump's Shaman King: Master of Spirits 2,GBA,2005,Role-Playing,Konami Digital Entertainment,0.01,0.01,0,0,0.02 +Dead Rising,PS4,2016,Action,Capcom,0.01,0,0,0,0.02 +Homefront: The Revolution,PC,2016,Shooter,Deep Silver,0,0.02,0,0,0.02 +Toki no Kizuna: Hanayui Tsuzuri,PSP,2013,Adventure,Idea Factory,0,0,0.02,0,0.02 +The Technomancer,XOne,2016,Role-Playing,Focus Home Interactive,0.01,0.01,0,0,0.02 +Rinne no Lagrange: Kamogawa Days,PS3,2012,Adventure,Namco Bandai Games,0,0,0.02,0,0.02 +TOCA Race Driver 3,PC,2006,Racing,Codemasters,0,0.02,0,0,0.02 +Airport Simulator,PC,2011,Simulation,Unknown,0,0.02,0,0,0.02 +Casper's Scare School: Spooky Sports Day,Wii,2009,Sports,Blast! Entertainment Ltd,0.02,0,0,0,0.02 +Code R,SAT,1998,Adventure,Quintet,0,0,0.02,0,0.02 +The Idolmaster: Gravure For You! Vol.8,PS3,2012,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Disney Sports Football,GBA,2002,Sports,Unknown,0.01,0.01,0,0,0.02 +Oil Rush,PC,2012,Strategy,Iceberg Interactive,0,0.02,0,0,0.02 +Cabela's Big Game Hunter: Pro Hunts,WiiU,2014,Shooter,Activision,0.02,0,0,0,0.02 +Chicken Hunter,DS,2007,Shooter,Phoenix Games,0.02,0,0,0,0.02 +Hakuoki: Shinkai - Furi no Shou,PSV,2015,Action,Idea Factory,0,0,0.02,0,0.02 +Demolition Company: Gold Edition,PC,2011,Simulation,,0,0.02,0,0,0.02 +Headhunter: Redemption,XB,2004,Action,Sega,0.02,0,0,0,0.02 +Onechanbara Special,PSP,2011,Action,D3Publisher,0,0,0.02,0,0.02 +Daikaijuu Battle: Ultra Coliseum,Wii,2008,Fighting,Namco Bandai Games,0,0,0.02,0,0.02 +Saki: Achiga-Hen Portable,PSP,2013,Adventure,Alchemist,0,0,0.02,0,0.02 +Bella Sara 2 - The Magic of Drasilmare,3DS,2013,Adventure,Big Ben Interactive,0,0.02,0,0,0.02 +Minna de Dokusho: Keatai Shousetsu Desu,PSP,2008,Misc,Dorart,0,0,0.02,0,0.02 +Polar Bowler,DS,2008,Sports,Mumbo Jumbo,0.02,0,0,0,0.02 +Prehistorik Man,GBA,2001,Platform,THQ,0.01,0.01,0,0,0.02 +F1 2002,GBA,2002,Racing,"Destination Software, Inc",0.01,0.01,0,0,0.02 +Chicago Enforcer,XB,2005,Shooter,Kemco,0.02,0,0,0,0.02 +Jinguuji Saburou DS: Akai Chou,DS,2010,Adventure,Arc System Works,0,0,0.02,0,0.02 +Dance Dance Revolution Extra Mix,PS,2001,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +UnchainBlades EXXiV,PSP,2012,Role-Playing,FuRyu,0,0,0.02,0,0.02 +Princess Isabella: A Witch's Curse,Wii,2010,Adventure,Destineer,0.02,0,0,0,0.02 +Meitantei Conan: Kieta Hakase to Machigai Sagashi no Tou,DS,2008,Adventure,Namco Bandai Games,0,0,0.02,0,0.02 +The Legend of Heroes: Trails in the Sky Third Chapter,PSV,2016,Role-Playing,Nihon Falcom Corporation,0,0,0.02,0,0.02 +Pippa Funnell: Ranch Rescue,Wii,2007,Adventure,Ubisoft,0,0.02,0,0,0.02 +Jewel Link: Galactic Quest,DS,2012,Action,Avanquest Software,0,0.02,0,0,0.02 +Super Bowling,N64,1999,Sports,Athena,0.02,0,0,0,0.02 +Rat Attack!,N64,2000,Puzzle,Mindscape,0.02,0,0,0,0.02 +Kawaii Koinu DS 3,DS,2010,Simulation,MTO,0,0,0.02,0,0.02 +Chuugen no Hasha: Sangoku Shouseiden,PSP,2006,Strategy,Namco Bandai Games,0,0,0.02,0,0.02 +Chevrolet Camaro: Wild Ride,DS,2010,Racing,Storm City Games,0.02,0,0,0,0.02 +The Sims 2: Happy Holiday Stuff,PC,2006,Simulation,Electronic Arts,0.01,0.01,0,0,0.02 +Largo Winch .// Commando Sar,PS,2002,Adventure,Ubisoft,0.01,0.01,0,0,0.02 +Joker no Kuni no Alice: Wonderful Wonder World,PSP,2011,Adventure,Quinrose,0,0,0.02,0,0.02 +Cross Treasures,DS,2009,Role-Playing,Square Enix,0,0,0.02,0,0.02 +Ruff Trigger: The Vanocore Conspiracy,PS2,2006,Platform,Natsume,0.01,0.01,0,0,0.02 +Silent Bomber,PS,1999,Action,Virgin Interactive,0.01,0.01,0,0,0.02 +Samurai & Dragons,PSV,2012,Action,Sega,0,0,0.02,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.7,PS3,2015,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Elminage Original: Majo to Megami to Kamigami no Yubiwa,PSP,2011,Role-Playing,Starfish,0,0,0.02,0,0.02 +TalkMan,PSP,2006,Misc,Sony Computer Entertainment,0,0,0.02,0,0.02 +XGRA: Extreme G Racing Association,XB,2003,Racing,Acclaim Entertainment,0.02,0,0,0,0.02 +Uta no * Prince-Sama,PSP,2010,Adventure,Broccoli,0,0,0.02,0,0.02 +Ridge Racer Unbounded,PC,2012,Racing,Namco Bandai Games,0,0.02,0,0,0.02 +Elminage Gothic: Ulm Zakir to Yami no Gishiki,PSP,2012,Role-Playing,Starfish,0,0,0.02,0,0.02 +Planetarium Creator Ohira Takayuki Kanshuu: HomeStar Portable - 21st Century Star Navigator,PSP,2006,Misc,Sega,0,0,0.02,0,0.02 +Crayon Shin-Chan: Uchuu de Achoo!? Yuujou no Oba-Karate!!,3DS,2011,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Invizimals: The Resistance,PSV,2014,Role-Playing,Sony Computer Entertainment,0,0.02,0,0,0.02 +Anima - Gate of Memories,PS4,2016,Action,Avanquest,0,0.02,0,0,0.02 +B-17: Fortress in the Sky,DS,2007,Simulation,DSI Games,0.02,0,0,0,0.02 +Mushishi: Amefuru Sato,DS,2008,Simulation,Marvelous Interactive,0,0,0.02,0,0.02 +Arcana Famiglia: Vascello Phantasma no Majutsushi,PSP,2012,Action,Comfort,0,0,0.02,0,0.02 +The Legend of Heroes: Trails in the Sky Second Chapter,PS3,2013,Role-Playing,Falcom Corporation,0,0,0.02,0,0.02 +Motocross Mania 3,XB,2005,Racing,Take-Two Interactive,0.01,0,0,0,0.02 +Psycho-Pass: Mandatory Happiness,PSV,2016,Adventure,Nippon Ichi Software,0,0.01,0.01,0,0.02 +ESPN MLS ExtraTime 2002,GC,2002,Sports,Konami Digital Entertainment,0.02,0,0,0,0.02 +Winning Post 7: Maximum 2007,PS2,2007,Sports,Tecmo Koei,0,0,0.02,0,0.02 +Resident Evil: Umbrella Corps,PS4,2016,Action,Capcom,0,0,0.02,0,0.02 +Strike Witches: Anata to Dekiru Koto - A Little Peaceful Days,PS2,2010,Action,Russel,0,0,0.02,0,0.02 +Vitamin R,PSP,2013,Adventure,D3Publisher,0,0,0.02,0,0.02 +Fist of the North Star: Ken's Rage 2,WiiU,2013,Fighting,Tecmo Koei,0,0,0.02,0,0.02 +Maximum Racing: Crash Car Racer,Wii,2010,Racing,Nordic Games,0.01,0.01,0,0,0.02 +Dragon Ball Z: Buu's Fury / Dragon Ball GT: Transformation,GBA,2006,Action,Atari,0.01,0.01,0,0,0.02 +Deus Ex: Mankind Divided,PC,2016,Role-Playing,Square Enix,0,0.02,0,0,0.02 +Guitar Freaks V2 & DrumMania V2,PS2,2006,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +Backyard Baseball '09,PS2,2008,Sports,Atari,0.01,0.01,0,0,0.02 +Puzzle City,DS,2009,Puzzle,Destineer,0.02,0,0,0,0.02 +Gakuen K: Wonderful School Days,PSP,2014,Adventure,Idea Factory,0,0,0.02,0,0.02 +Worms,X360,2007,Strategy,Microsoft Game Studios,0,0.02,0,0,0.02 +RollerCoaster Tycoon World,PC,2016,Simulation,Atari,0,0.02,0,0,0.02 +Pastel Chime Continue,PSP,2010,Adventure,5pb,0,0,0.02,0,0.02 +Trapped Dead,PC,2011,Strategy,Iceberg Interactive,0,0.02,0,0,0.02 +Super Fruit Fall,Wii,2006,Puzzle,System 3 Arcade Software,0.01,0,0,0,0.02 +Zwei!!,PSP,2008,Role-Playing,Falcom Corporation,0,0,0.02,0,0.02 +Pump It Up: Exceed,XB,2005,Misc,Mastiff,0.01,0,0,0,0.02 +Ro-Kyu-Bu! Lost Secret,PSP,2013,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +CV Casting Voice,PS3,2014,Adventure,Namco Bandai Games,0,0,0.02,0,0.02 +Littlest Pet Shop,PC,2008,Simulation,Electronic Arts,0,0.02,0,0,0.02 +Net High,PSV,2015,Adventure,Marvelous Games,0,0,0.02,0,0.02 +Malice,PS2,2004,Platform,Evolved Games,0.01,0.01,0,0,0.02 +Defendin' De Penguin,DS,2008,Strategy,Zushi Games,0.02,0,0,0,0.02 +The Sims 2: Family Fun Stuff,PC,2006,Simulation,Electronic Arts,0,0.01,0,0,0.02 +Sega Ages 2500 Series Vol. 32: Phantasy Star Complete Collection,PS2,2008,Role-Playing,Sega,0,0,0.02,0,0.02 +Worldwide Soccer Manager 2007,PC,2006,Sports,Sega,0,0.02,0,0,0.02 +Heroes of the Pacific,PC,2005,Simulation,Codemasters,0,0.02,0,0,0.02 +Kokoro Connect: Yochi Random,PSP,2012,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Tenkai Knights: Brave Battle,3DS,2014,Action,Namco Bandai Games,0.01,0.01,0,0,0.02 +Mount & Blade: Warband,PC,2010,Role-Playing,Paradox Interactive,0.01,0.01,0,0,0.02 +Horrid Henry: Missions of Mischief,Wii,2010,Adventure,SouthPeak Games,0,0.02,0,0,0.02 +Dark Tales: Edgar Allan Poe's The Premature Burial,PC,2012,Puzzle,Focus Multimedia,0,0.02,0,0,0.02 +Painkiller: Hell & Damnation,X360,2013,Shooter,Nordic Games,0,0.01,0,0,0.02 +Resident Evil Zero,PC,2016,Action,Capcom,0.01,0.01,0,0,0.02 +Warship Gunner 2 Portable,PSP,2009,Simulation,Tecmo Koei,0,0,0.02,0,0.02 +Nervous Brickdown,DS,2007,Puzzle,Eidos Interactive,0,0.01,0,0,0.02 +Downtown Nekketsu Jidaigek,3DS,2015,Action,Arc System Works,0,0,0.02,0,0.02 +Mini Ninjas,PC,2009,Action,Eidos Interactive,0,0.02,0,0,0.02 +Legend of Kay Anniversary,PS4,2015,Action,Nordic Games,0,0.02,0,0,0.02 +NHL 09,PC,2008,Sports,Electronic Arts,0,0.02,0,0,0.02 +Spanish for Everyone!,DS,2007,Puzzle,Activision,0.02,0,0,0,0.02 +Battle Princess of Arcadias,PS3,2013,Role-Playing,Nippon Ichi Software,0,0,0.02,0,0.02 +Nobunaga's Ambition: Tenshouki with Power-Up Kit HD Version,PSV,2015,Strategy,Tecmo Koei,0,0,0.02,0,0.02 +Germany's Next Topmodel 2011,Wii,2011,Simulation,7G//AMES,0,0.02,0,0,0.02 +Uchuu Keiji Tamashii: The Space Sheriff Spirits,PS2,2006,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Angelique Retour,PSV,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +Winx Club: Saving Alfea,DS,2014,Action,Namco Bandai Games,0.02,0,0,0,0.02 +UFO: Trilogy,PC,2007,Strategy,Unknown,0,0.02,0,0,0.02 +Mount & Blade Collection,PC,2012,Role-Playing,Paradox Interactive,0,0.02,0,0,0.02 +Car Battler Joe,GBA,2001,Role-Playing,Victor Interactive,0.01,0.01,0,0,0.02 +Vietcong,PC,2003,Shooter,Gathering of Developers,0,0.02,0,0,0.02 +StormLover Karen!!,PSP,2011,Adventure,D3Publisher,0,0,0.02,0,0.02 +Digimon Rumble Arena 2,XB,2004,Fighting,Atari,0.01,0,0,0,0.02 +"Steins,Gate: Hiyoku Renri no Darling",PS3,2012,Adventure,5pb,0,0,0.02,0,0.02 +Ten Pin Alley 2,Wii,2008,Sports,XS Games,0.02,0,0,0,0.02 +Coded Soul: Uke Keigareshi Idea,PSP,2008,Role-Playing,Sony Computer Entertainment,0,0,0.02,0,0.02 +Starship Troopers,PC,2005,Shooter,Empire Interactive,0,0.02,0,0,0.02 +AIR,PSP,2007,Adventure,Prototype,0,0,0.02,0,0.02 +Crysis: Warhead,PC,2008,Shooter,Electronic Arts,0,0.02,0,0,0.02 +Hana to Otome ni Shukufuku o: Harekaze no Okurimono,PS2,2010,Adventure,Alchemist,0,0,0.02,0,0.02 +Dino Dini's Kick Off Revival,PS4,2016,Sports,Avanquest,0,0.02,0,0,0.02 +Garfield Gets Real,DS,2009,Action,Zushi Games,0,0.02,0,0,0.02 +Mighty No. 9,WiiU,2016,Platform,Deep Silver,0.01,0.01,0,0,0.02 +Atlantic Quest,PC,2011,Puzzle,Avanquest,0,0.02,0,0,0.02 +Tycoon City: New York,PC,2006,Strategy,Atari,0,0.02,0,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.5,PS3,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Agatha Christie: The ABC Murders,PC,2016,Adventure,Microids,0,0.02,0,0,0.02 +Virtua Pro Football,PS2,2006,Sports,Sega,0,0,0.02,0,0.02 +Date-A-Live Twin Edition: Rio Reincarnation,PSV,2015,Action,Compile Heart,0,0,0.02,0,0.02 +Adidas Power Soccer 98,PS,1998,Sports,Psygnosis,0.01,0.01,0,0,0.02 +Natsuiro High School: Seishun Hakusho,PS4,2015,Action,D3Publisher,0,0,0.02,0,0.02 +Black Rose Valkyrie,PS4,2016,Role-Playing,Idea Factory,0,0,0.02,0,0.02 +Yu-Gi-Oh! 5D's Wheelie Breakers (JP sales),Wii,,Racing,Unknown,0,0,0.02,0,0.02 +Heroes VS,PSP,2013,Fighting,Namco Bandai Games,0,0,0.02,0,0.02 +Kazoku Keikaku,PSP,2010,Adventure,CyberFront,0,0,0.02,0,0.02 +Sotsugyou II: Neo Generation Special,3DO,1995,Simulation,Imageworks,0,0,0.02,0,0.02 +"Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)",PC,2009,Shooter,Activision,0.02,0,0,0,0.02 +Agatha Christie's The ABC Murders,PS4,2016,Adventure,Microids,0.01,0.01,0,0,0.02 +Tom Clancy's Splinter Cell Classic Trilogy HD,PS3,2011,Action,Ubisoft,0.02,0,0,0,0.02 +Aoishiro,PS2,2008,Adventure,Success,0,0,0.02,0,0.02 +Rainbow Islands Revolution,DS,2005,Platform,Rising Star Games,0.01,0,0,0,0.02 +"Warhammer 40,000: Dawn of War: Soulstorm",PC,2008,Strategy,THQ,0,0.02,0,0,0.02 +Virtual Kasparov,GBA,2002,Strategy,Titus,0.01,0.01,0,0,0.02 +Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.,XB,2005,Platform,Global Star,0.01,0,0,0,0.02 +Dynasty Warriors 8: Empires,PSV,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +Mary King's Riding School,DS,2008,Simulation,Ghostlight,0,0.02,0,0,0.02 +Devil Survivor: Over Clock,3DS,2015,Strategy,Atlus,0,0,0.02,0,0.02 +PC Engine Best Collection: Tengai Makyou Collection,PSP,2008,Role-Playing,Hudson Soft,0,0,0.02,0,0.02 +Commandos 3: Destination Berlin,PC,2003,Strategy,Eidos Interactive,0,0.02,0,0,0.02 +Otoko Yukaku,PSV,2015,Action,D3Publisher,0,0,0.02,0,0.02 +Speed Kings,GC,2003,Racing,Acclaim Entertainment,0.01,0,0,0,0.02 +Spirits and Demons: 5 Game Pack,PC,2015,Misc,Focus Multimedia,0,0.02,0,0,0.02 +Rose to Tasogare no Kojou,PSV,2016,Action,Nippon Ichi Software,0,0,0.02,0,0.02 +Army Rescue,Wii,2009,Shooter,UFO Interactive,0.02,0,0,0,0.02 +Azada,3DS,2012,Puzzle,Licensed 4U,0,0.02,0,0,0.02 +ESPN MLS ExtraTime 2002,XB,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.02 +Zettai Meikyuu Grimm: Nanatsu no Kagi to Rakuen no Otome,PSP,2010,Misc,Karin Entertainment,0,0,0.02,0,0.02 +Dreamer Series: Horse Trainer,DS,2008,Simulation,DreamCatcher Interactive,0.02,0,0,0,0.02 +Hogs of War,PS,2000,Strategy,Infogrames,0.01,0.01,0,0,0.02 +Katekyoo Hitman Reborn! Dream Hyper Battle!,PS2,2007,Fighting,Marvelous Interactive,0,0,0.02,0,0.02 +Muchi Muchi Pork & Pink Sweets,X360,2011,Shooter,Cave,0,0,0.02,0,0.02 +Point Blank 3,PS,2000,Shooter,Namco Bandai Games,0.01,0.01,0,0,0.02 +Meiji Toukyou Renka,PSP,2013,Adventure,Broccoli,0,0,0.02,0,0.02 +Sengoku Basara: Sanada Yukimura-Den,PS3,2016,Action,Capcom,0,0,0.02,0,0.02 +Hakuoki: Shinkai - Hana no Shou,PSV,2016,Adventure,Idea Factory,0,0,0.02,0,0.02 +Mushihimesama,X360,2012,Action,Cave,0,0,0.02,0,0.02 +Uru: Ages Beyond Myst,PC,2003,Adventure,Ubisoft,0,0.02,0,0,0.02 +Higurashi no Naku Koro ni: Jan,PSP,2009,Misc,AQ Interactive,0,0,0.02,0,0.02 +Soukoku no Kusabi: Hiiro no Kakera 3 - Ashita e no Tobira,PSP,2012,Action,Idea Factory,0,0,0.02,0,0.02 +Elvandia Story,PS2,2007,Role-Playing,Spike,0,0,0.02,0,0.02 +Triggerheart Excelica Enhanced,PS2,2009,Shooter,Alchemist,0,0,0.02,0,0.02 +Puzzle Star Sweep,PS,1997,Puzzle,Midas Interactive Entertainment,0.01,0.01,0,0,0.02 +Battle Spirits: Kiseki no Hasha,PSP,2009,Role-Playing,Namco Bandai Games,0,0,0.02,0,0.02 +X-Plane 10 Global,PC,2013,Simulation,Aerosoft,0,0.02,0,0,0.02 +Chrysler Classic Racing,DS,2008,Racing,Zoo Games,0.02,0,0,0,0.02 +The Conveni 4,PS2,2006,Simulation,Hamster Corporation,0,0,0.02,0,0.02 +The Cheetah Girls,GBA,2006,Misc,Disney Interactive Studios,0.01,0,0,0,0.02 +Charlie's Angels,GC,2003,Action,Ubisoft,0.01,0,0,0,0.02 +WRC 2: FIA World Rally Championship,PC,2011,Racing,Ubisoft,0,0.01,0,0,0.02 +uDraw Studio: Instant Artist,X360,2011,Misc,THQ,0.01,0.01,0,0,0.02 +Seitokai no Ichizon: DS-suru Seitokai,DS,2010,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Teenage Mutant Ninja Turtles Double Pack,GBA,2006,Action,Konami Digital Entertainment,0.01,0,0,0,0.02 +Prism Ark: Awake,PS2,2008,Adventure,5pb,0,0,0.02,0,0.02 +Rozen Maiden: Duellwalzer,PS2,2006,Adventure,Taito,0,0,0.02,0,0.02 +Rugby 06,XB,2006,Sports,Electronic Arts,0.01,0,0,0,0.02 +Marvel Avengers: Battle for Earth,X360,2012,Action,Ubisoft,0.02,0,0,0,0.02 +Winter Blast: 9 Snow & Ice Games,Wii,2010,Sports,Destineer,0.02,0,0,0,0.02 +Natsuiro High School: Seishun Hakusho,PS3,2015,Action,D3Publisher,0,0,0.02,0,0.02 +Kamen Rider: Battride War II,WiiU,2014,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Shrek / Shark Tale Game Boy Advance Video,GBA,2006,Misc,Hasbro Interactive,0.01,0,0,0,0.02 +Urban Chaos: Riot Response,XB,2006,Shooter,Eidos Interactive,0.01,0,0,0,0.02 +Ginga Fukei Densetsu: Sapphire,TG16,1995,Shooter,Hudson Soft,0,0,0.02,0,0.02 +Katekyoo Hitman Reborn!! Let's Ansatsu!? Nerawareta 10 Daime!,PS2,2007,Action,Marvelous Interactive,0,0,0.02,0,0.02 +The Mummy,GBA,2002,Action,Ubisoft,0.01,0,0,0,0.02 +Guitar Freaks V3 & DrumMania V3,PS2,2007,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +The Talos Principle,PS4,2015,Puzzle,Devolver Digital,0,0.02,0,0,0.02 +The Crow: City of Angels,PS,1997,Action,Acclaim Entertainment,0.01,0.01,0,0,0.02 +Legendary,PC,2008,Shooter,Atari,0,0.01,0,0,0.02 +Snow Portable,PSP,2007,Adventure,Prototype,0,0,0.02,0,0.02 +Poyo Poyo Kansatsu Nikki,3DS,2012,Action,IE Institute,0,0,0.02,0,0.02 +Jinsei Game DS,DS,2006,Misc,Atlus,0,0,0.02,0,0.02 +Guitar Freaks & DrumMania: Masterpiece Gold,PS2,2007,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +Broken Sword: The Sleeping Dragon,XB,2003,Adventure,THQ,0.01,0,0,0,0.02 +Reversal Challenge,DS,2009,Misc,Tommo,0.02,0,0,0,0.02 +Wild West Shootout,Wii,2010,Shooter,Unknown,0.01,0.01,0,0,0.02 +Miyako,PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Motto NUGA-CEL!,PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Yu-Gi-Oh! GX: The Beginning of Destiny (JP sales),PS2,2007,Strategy,Konami Digital Entertainment,0,0,0.02,0,0.02 +11eyes: CrossOver,PSP,2010,Adventure,5pb,0,0,0.02,0,0.02 +Super Dodge Ball,NG,1995,Sports,Technos Japan Corporation,0,0,0.02,0,0.02 +Tsuki ni Yori Sou Otome no Sahou: Hidamari no Hibi,PSV,2015,Adventure,dramatic create,0,0,0.02,0,0.02 +Gon: BakuBakuBakuBaku Adventure,3DS,2012,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Style Book: Junior City,DS,2006,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Amatsumi Sora ni! Kumo no Hatate ni,PSV,2015,Adventure,Prototype,0,0,0.02,0,0.02 +Garfield's Nightmare,DS,2007,Platform,Game Factory,0.01,0,0,0,0.02 +Earth Seeker,Wii,2011,Role-Playing,Kadokawa Shoten,0,0,0.02,0,0.02 +Downtown Nekketsu Koushinkyoku: Soreyuke Daiundoukai All-Star Special,PS3,2015,Action,Arc System Works,0,0,0.02,0,0.02 +Lovely x Cation 1 & 2,PSV,2015,Action,5pb,0,0,0.02,0,0.02 +Barbie as the Princess and the Pauper,GBA,2004,Adventure,Vivendi Games,0.01,0,0,0,0.02 +Blood Bowl: Legendary Edition,PC,2010,Sports,Focus Home Interactive,0,0.01,0,0,0.02 +Tantei Opera: Milky Holmes,PSP,2010,Adventure,Unknown,0,0,0.02,0,0.02 +Pirates of the Burning Sea,PC,2008,Role-Playing,Koch Media,0,0.01,0,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.8,PS3,2016,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Mary King's Riding School 2,Wii,2009,Simulation,Midas Interactive Entertainment,0,0.02,0,0,0.02 +Micro Machines V4,PSP,2006,Racing,Codemasters,0.01,0,0,0,0.02 +Entaku no Seito: The Eternal Legend,PSP,2012,Role-Playing,Kadokawa Games,0,0,0.02,0,0.02 +New Atelier Rorona: Hajimari no Monogatari,3DS,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +WorldShift,PC,2009,Strategy,Playlogic Game Factory,0.02,0,0,0,0.02 +The Crew: Wild Run,PC,2015,Action,Ubisoft,0,0.02,0,0,0.02 +Casper's Scare School: Spooky Sports Day,DS,2009,Sports,Blast! Entertainment Ltd,0.02,0,0,0,0.02 +7 Roses: A Darkness Rises,PC,2015,Misc,Avanquest Software,0,0.02,0,0,0.02 +My Hero: Doctor,DS,2009,Action,Majesco Entertainment,0.02,0,0,0,0.02 +Sega Ages 2500 Series Vol. 29: Monster World Complete Collection,PS2,2007,Role-Playing,Sega,0,0,0.02,0,0.02 +Bakumatsu Rock: Ultra Soul,PSV,2014,Misc,Marvelous Interactive,0,0,0.02,0,0.02 +Metal Fight Beyblade Portable: Chouzetsu Tensei Vulcan Horses,PSP,2010,Action,Takara Tomy,0,0,0.02,0,0.02 +Cabela's Alaskan Adventure,PS2,,Sports,Unknown,0.01,0.01,0,0,0.02 +Elf Bowling 1 & 2,DS,2005,Sports,Ignition Entertainment,0.02,0,0,0,0.02 +Niko Puchi Girls Runway,3DS,2015,Misc,Happinet,0,0,0.02,0,0.02 +MotoGP 14,PSV,2014,Racing,Milestone S.r.l.,0,0.01,0,0,0.02 +Bomberman 2,DS,2008,Puzzle,Hudson Soft,0,0.01,0,0,0.02 +Arabians Lost: The Engagement on Desert,PS2,2007,Adventure,Prototype,0,0,0.02,0,0.02 +Densha de Go! Tokubetsu-hen: Fukkatsu Shouwa no Yamatesen,DS,2010,Simulation,Square Enix,0,0,0.02,0,0.02 +Summon Night Granthese: Horobi no Ken to Yakusoku no Kishi,PS2,2010,Role-Playing,Namco Bandai Games,0,0,0.02,0,0.02 +Gakken DS: Shin TOEIC Test Kanzen Kouryaku,DS,2007,Misc,Gakken,0,0,0.02,0,0.02 +SD Gundam Sangokuden Brave Battle Warriors: Shin Mirisha Taisen,DS,2010,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Peggle Nights,PC,2008,Puzzle,PopCap Games,0,0.01,0,0,0.02 +Starry ? Sky: After Summer,PSP,2013,Misc,Asgard,0,0,0.02,0,0.02 +Puzzle Guzzle,PSP,2007,Puzzle,DHM Interactive,0.02,0,0,0,0.02 +ESPN NFL Primetime 2002,XB,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.02 +Gallop Racer Inbreed,PS2,2006,Sports,Tecmo Koei,0,0,0.02,0,0.02 +Myth Makers: Super Kart GP,Wii,2007,Racing,Popcorn Arcade,0.01,0,0,0,0.02 +Red Ninja: End of Honor,XB,2005,Action,Vivendi Games,0.01,0,0,0,0.02 +Ketsui: Kizuna Jigoku Tachi Extra,X360,2010,Shooter,5pb,0,0,0.02,0,0.02 +Frisbee Disc Freestyle / Frisbee Disc Golf,DS,2007,Sports,DSI Games,0.02,0,0,0,0.02 +Call of Duty: Modern Warfare Trilogy,PS3,2016,Shooter,Activision,0,0.01,0,0,0.02 +The King of Fighters Collection: The Orochi Saga (JP sales),PS2,2006,Fighting,Ignition Entertainment,0,0,0.02,0,0.02 +Emergency 2012,DS,2010,Simulation,Rondomedia,0,0.02,0,0,0.02 +Command & Conquer 3: Kane's Wrath,PC,2008,Strategy,Electronic Arts,0,0.01,0,0,0.02 +Suzumiya Haruhi-Chan no Mahjong,PSP,2011,Misc,Kadokawa Shoten,0,0,0.02,0,0.02 +Tsuki no Hikari: Shizumeru Kane no Satsujin,PS2,2002,Adventure,Victor Interactive,0,0,0.02,0,0.02 +Aqua Panic!,DS,2009,Puzzle,Neko Entertainment,0.01,0.01,0,0,0.02 +James Bond 007: Blood Stone,PC,2010,Shooter,Activision,0.02,0,0,0,0.02 +Writing and Speaking Beautiful Japanese DS,DS,,Misc,Unknown,0,0,0.02,0,0.02 +Sega Ages 2500 Series Vol. 26: Dynamite Deka,PS2,2006,Action,Sega,0,0,0.02,0,0.02 +Kong: The Animated Series,GBA,2002,Action,BAM! Entertainment,0.01,0,0,0,0.02 +Heavy Fire: Afghanistan,PC,2011,Shooter,Mastiff,0.02,0,0,0,0.02 +Let's Dance with Mel B,X360,2011,Sports,Black Bean Games,0,0.02,0,0,0.02 +Agatha Christie: Death on the Nile,PC,2008,Adventure,Big Fish Games,0,0.01,0,0,0.02 +The Crew: Wild Run,XOne,2015,Action,Ubisoft,0,0.02,0,0,0.02 +Toukiden 2,PS3,2016,Action,Tecmo Koei,0,0,0.02,0,0.02 +Koisuru Otome to Shugo no Tate Portable,PSP,2010,Adventure,Alchemist,0,0,0.02,0,0.02 +PachiPara 3D: Ooumi Monogatari 2 - Pachi Pro Fuuunroku Hana,3DS,2012,Action,Irem Software Engineering,0,0,0.02,0,0.02 +Nodame Cantabile: Tanoshii Ongaku no Jikan Desu,DS,2010,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Iridium Runners,PS2,2008,Racing,SouthPeak Games,0.01,0.01,0,0,0.02 +Ben 10 Omniverse 2,3DS,2013,Action,Namco Bandai Games,0,0.02,0,0,0.02 +"Shounen Onmyouji: Tsubasa Yoima, Ten e Kaere",PS2,2007,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Bakumatsu Renka: Karyuu Kenshi-den,PS2,2007,Adventure,D3Publisher,0,0,0.02,0,0.02 +Dancing on Ice,DS,2010,Sports,Ghostlight,0,0.02,0,0,0.02 +Tiny Toon Adventures: Wacky Stackers,GBA,2001,Puzzle,Conspiracy Entertainment,0.01,0,0,0,0.02 +Princess Frontier Portable,PSP,2011,Adventure,Alchemist,0,0,0.02,0,0.02 +Rock Blast,Wii,2010,Puzzle,UFO Interactive,0.02,0,0,0,0.02 +Touch Detective (JP sales),DS,2006,Adventure,505 Games,0,0,0.02,0,0.02 +Tomb Raider: Legend,PC,2006,Action,Eidos Interactive,0,0.01,0,0,0.02 +Emergency Mayhem,Wii,2008,Racing,Codemasters,0.02,0,0,0,0.02 +Rising Zan: The Samurai Gunman,PS,1998,Action,Agetec,0.01,0.01,0,0,0.02 +Mai-Otome Hime: Otome Butou Shi,PS2,2006,Fighting,Sunrise Interactive,0,0,0.02,0,0.02 +Robopon 2: Cross Version,GBA,2001,Role-Playing,Hudson Entertainment,0.01,0,0,0,0.02 +TMNT: Mutant Melee,XB,2005,Fighting,Konami Digital Entertainment,0.01,0,0,0,0.02 +Ultimate Puzzle Games,GBA,2005,Puzzle,Telegames,0.01,0,0,0,0.02 +Combat Flight Simulator 3: Battle for Europe,PC,2002,Simulation,Microsoft Game Studios,0.01,0.01,0,0,0.02 +Kimikare: New Semester,PSP,2012,Action,Idea Factory,0,0,0.02,0,0.02 +Katekyoo Hitman Reborn! Kindan no Yami no Delta,PS2,2008,Action,Marvelous Interactive,0,0,0.02,0,0.02 +Haneru no Tobira Wii: Girigirissu,Wii,2007,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +RoboCop,XB,2003,Shooter,Titus,0.01,0,0,0,0.02 +Elminage II: Sousei no Megami to Unmei no Daichi,PSP,2009,Role-Playing,Starfish,0,0,0.02,0,0.02 +Lara Croft and the Temple of Osiris,PC,2014,Action,Square Enix,0,0.02,0,0,0.02 +Final Fantasy XIV: Heavensward,PC,2015,Action,Square Enix,0.01,0.01,0,0,0.02 +Grisaia no Rakuen: Le Eden de la Grisaia,PSV,2014,Adventure,Prototype,0,0,0.02,0,0.02 +Blazing Souls,PS2,2006,Role-Playing,Idea Factory,0,0,0.02,0,0.02 +Seinaru Kana: Orichalcum no Na no Motoni,PSP,2012,Action,CyberFront,0,0,0.02,0,0.02 +NHL 2K3,GC,2002,Sports,Sega,0.01,0,0,0,0.02 +PDC World Championship Darts 2009,Wii,2009,Sports,Oxygen Interactive,0,0.02,0,0,0.02 +Tour de France 2014,PS3,2014,Sports,Focus Home Interactive,0,0.02,0,0,0.02 +The Hustle: Detroit Streets,XB,2006,Sports,Activision,0.01,0,0,0,0.02 +Tail of the Sun,PS,1996,Role-Playing,ArtDink,0.01,0.01,0,0,0.02 +Canada Hunt,Wii,2010,Sports,Virtual Play Games,0.02,0,0,0,0.02 +Space Channel 5: Ulala's Cosmic Attack,GBA,2002,Misc,Atari,0.01,0,0,0,0.02 +Airline Tycoon,PC,2000,Simulation,Interplay,0,0.01,0,0,0.02 +Virtua Quest,PS2,,Role-Playing,Unknown,0.01,0.01,0,0,0.02 +Disney Sports Basketball,GBA,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.02 +Bejeweled Blitz,PC,2010,Puzzle,Mastertronic,0,0.01,0,0,0.02 +Ozzy & Drix,GBA,2003,Platform,Midway Games,0.01,0,0,0,0.02 +Barnyard Blast: Swine of the Night,DS,2008,Platform,Big Ben Interactive,0.02,0,0,0,0.02 +SBK09 Superbike World Championship,PS3,2009,Racing,Black Bean Games,0,0.01,0,0,0.02 +Song of the Deep,PC,2016,Action,Insomniac Games,0.02,0,0,0,0.02 +Yamasa Digi World SP: Moeyo! Kung Fu Shukujo,PS2,2006,Misc,Yamasa Entertainment,0,0,0.02,0,0.02 +Nobunaga no Yabou: Soutensoku with Power-Up Kit,PSP,2011,Strategy,Tecmo Koei,0,0,0.02,0,0.02 +Disney Sports Football,GC,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.02 +Castle Shikigami 2,PS2,2004,Shooter,Play It,0.01,0.01,0,0,0.02 +Wizardry Twin Pack,PS3,2011,Role-Playing,Acquire,0,0,0.02,0,0.02 +Rabbids Invasion: The Interactive TV Show,PS4,2014,Misc,Ubisoft,0,0.01,0,0,0.02 +Moe Star: Moeru Toudai Eigojuku,DS,2008,Misc,Mirai Shounen,0,0,0.02,0,0.02 +Gadget Racers (PAL),PS2,2002,Racing,Zoo Digital Publishing,0,0,0.02,0,0.02 +Pulse Racer,XB,2003,Racing,Jaleco,0.01,0,0,0,0.02 +Freestyle Metal X,GC,2003,Racing,Midway Games,0.01,0,0,0,0.02 +Tegami Bachi: Kokoro Tsumugu Mono e,PSP,2010,Role-Playing,Konami Digital Entertainment,0,0,0.02,0,0.02 +NEVES,DS,2007,Puzzle,Ignition Entertainment,0.01,0,0,0,0.02 +Unreal Tournament 2004,PC,2004,Shooter,Atari,0,0.01,0,0,0.02 +NBA 07,PS2,2006,Sports,Sony Computer Entertainment,0.01,0.01,0,0,0.02 +Antiphona no Seikahime: Tenshi no Gakufu Op.A,PSP,2009,Role-Playing,Nippon Ichi Software,0,0,0.02,0,0.02 +Rogue Trooper,XB,2006,Shooter,Eidos Interactive,0.01,0,0,0,0.02 +Spirits & Spells,GC,2003,Platform,Wanadoo,0.01,0,0,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.2,PS3,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Balls of Fury,DS,2007,Sports,Zoo Digital Publishing,0.02,0,0,0,0.02 +50 Classic Games,3DS,2012,Misc,Avanquest Software,0,0.02,0,0,0.02 +The Longest Journey,PC,1999,Adventure,Empire Interactive,0,0.01,0,0,0.02 +Eyeshield 21: Portable Edition,PSP,2006,Role-Playing,Konami Digital Entertainment,0,0,0.02,0,0.02 +Stronghold Legends,PC,2006,Strategy,Take-Two Interactive,0,0.01,0,0,0.02 +Kabushiki Baibai Trainer: Kabutore! Next,DS,2007,Simulation,Konami Digital Entertainment,0,0,0.02,0,0.02 +Machi: Unmei no Kousaten,PSP,2006,Adventure,ChunSoft,0,0,0.02,0,0.02 +Winning Post 8 2016,PS4,2016,Simulation,Tecmo Koei,0,0,0.02,0,0.02 +Golden Nugget Casino DS,DS,2005,Misc,Majesco Entertainment,0.02,0,0,0,0.02 +Machi-ing Maker 4,PS3,2011,Strategy,D3Publisher,0,0,0.02,0,0.02 +World Class Rugby 2: Kokunai Gekitou Hen '93,SNES,1994,Sports,Misawa,0,0,0.02,0,0.02 +Pirates PlundArrr,Wii,2010,Action,Majesco Entertainment,0.02,0,0,0,0.02 +"Robotics,Notes",PSV,2014,Adventure,5pb,0,0,0.02,0,0.02 +Ketsui Death Label,DS,2008,Shooter,Arika,0,0,0.02,0,0.02 +Prince of Stride,PSV,2015,Adventure,Kadokawa Games,0,0,0.02,0,0.02 +Syberia II,PC,2004,Adventure,MC2 Entertainment,0,0.01,0,0,0.02 +SD Gundam Force,GBA,2004,Shooter,Namco Bandai Games,0.01,0,0,0,0.02 +Mechanic Master 2,DS,2010,Puzzle,Crave Entertainment,0.02,0,0,0,0.02 +Dungeons - The Dark Lord,PC,2011,Strategy,Kalypso Media,0,0.01,0,0,0.02 +Clover no Kuni no Alice: Wonderful Wonder World,PSP,2011,Adventure,Quinrose,0,0,0.02,0,0.02 +Shonen Jump's Yu-Gi-Oh! GX Card Almanac,DS,,Misc,Konami Digital Entertainment,0,0,0.02,0,0.02 +Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 9: CR Fever Captain Harlock,PS2,2007,Misc,D3Publisher,0,0,0.02,0,0.02 +Lost: Via Domus,PC,2008,Action,Ubisoft,0,0.01,0,0,0.02 +Monster High 13 Wishes,3DS,2013,Action,Little Orbit,0,0.02,0,0,0.02 +GA - Geijutsuka Art Design Class: Slapstick Wonder Land,PSP,2010,Adventure,Russel,0,0,0.02,0,0.02 +Planetarian: Chiisana Hoshi no Yume,PSP,2009,Adventure,Prototype,0,0,0.02,0,0.02 +Roommate Asami: Okusama wa Joshikousei,PS2,2002,Adventure,Datam Polystar,0,0,0.02,0,0.02 +Cabbage Patch Kids: The Patch Puppy Rescue,GBA,2007,Misc,D3Publisher,0.01,0,0,0,0.02 +Sarah: Keeper of the Unicorn,DS,2009,Adventure,DreamCatcher Interactive,0.02,0,0,0,0.02 +Pirates: Legend of the Black Buccaneer,PS2,2006,Adventure,10TACLE Studios,0.01,0.01,0,0,0.02 +Back to the Future: The Game,XOne,2015,Adventure,Telltale Games,0,0.02,0,0,0.02 +Post Mortem,PC,2003,Adventure,Microids,0,0.01,0,0,0.02 +Ultraman Star Chronicles,PSP,2013,Strategy,Namco Bandai Games,0,0,0.02,0,0.02 +Ginga Tetsudou 999 DS,DS,2010,Adventure,Culture Brain,0,0,0.02,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.3,PS3,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Amagoushi no Yakata,PS2,2007,Adventure,Nippon Ichi Software,0,0,0.02,0,0.02 +Aedis Eclipse: Generation of Chaos,PSP,2006,Role-Playing,Idea Factory,0.02,0,0,0,0.02 +This War of Mine,PS4,2016,Action,Deep Silver,0,0.01,0,0,0.02 +Franklin: A Birthday Surprise,PS2,2006,Misc,Game Factory,0.01,0.01,0,0,0.02 +Nil Admirari no Tenbin: Teito Genwaku Toukidan,PSV,2016,Adventure,Idea Factory,0,0,0.02,0,0.02 +Without Warning,XB,,Shooter,Capcom,0.01,0,0,0,0.02 +Marvel Superheroes 3D: Grandmaster's Challenge,Wii,2010,Action,Neko Entertainment,0,0.01,0,0,0.02 +Suzunone Seven: Rebirth Knot,PS2,2010,Adventure,Alchemist,0,0,0.02,0,0.02 +Arslan: The Warriors of Legend,XOne,2016,Action,Tecmo Koei,0.01,0,0,0,0.02 +"Hanayaka Kana, Ware ga Ichizoku: Tasogare Polarstar",PSP,2013,Adventure,Idea Factory,0,0,0.02,0,0.02 +Zoids Dash,DS,2006,Role-Playing,Tomy Corporation,0,0,0.02,0,0.02 +Digimon Rumble Arena,PS,2001,Fighting,Namco Bandai Games,0.01,0.01,0,0,0.02 +Vitamin X Evolution Plus,PSP,2010,Adventure,D3Publisher,0,0,0.02,0,0.02 +Disciples III: Renaissance,PC,2010,Strategy,Kalypso Media,0,0.01,0,0,0.02 +Revolution: 25th Anniversary Collection,PC,2016,Adventure,Koch Media,0,0.02,0,0,0.02 +MX vs. ATV Supercross Encore,XOne,2015,Sports,Nordic Games,0.02,0,0,0,0.02 +Final Fight: Streetwise,XB,2006,Action,Capcom,0.01,0,0,0,0.02 +Goblin Commander: Unleash the Horde,GC,2003,Strategy,Jaleco,0.01,0,0,0,0.02 +Super Speed Machines,DS,2009,Racing,Midas Interactive Entertainment,0.02,0,0,0,0.02 +Nano Diver,PSP,2011,Action,Takara Tomy,0,0,0.02,0,0.02 +Elkrone no Atelier: Dear for Otomate,PSP,2012,Action,Idea Factory,0,0,0.02,0,0.02 +DJ Star,DS,2009,Misc,Deep Silver,0.01,0,0,0,0.02 +Top Gear RPM Tuning,XB,2005,Racing,Wanadoo,0.01,0,0,0,0.02 +Cookie & Cream,DS,2007,Platform,505 Games,0.01,0,0,0,0.02 +Memories Off: Yubikiri no Kioku,X360,2010,Adventure,5pb,0,0,0.02,0,0.02 +Otometeki Koi Kakumei * Love Revo!! DS,DS,2008,Adventure,GungHo,0,0,0.02,0,0.02 +Clue / Mouse Trap / Perfection / Aggravation,DS,2006,Misc,Unknown,0.02,0,0,0,0.02 +Football Manager 2007,X360,,Sports,Sega,0,0.01,0,0,0.02 +TV Anime Idolm@ster: Cinderella Girls G4U! Pack Vol.4,PS3,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Elven Legacy Collection,PC,2010,Strategy,Paradox Interactive,0,0.01,0,0,0.02 +My Ballet Studio,DS,2009,Simulation,505 Games,0.01,0,0,0,0.02 +Postman Pat: Special Delivery Service,DS,2009,Misc,GSP,0,0.01,0,0,0.02 +Cross + Channel,PSP,2010,Adventure,CyberFront,0,0,0.02,0,0.02 +LEGO Star Wars II: The Original Trilogy,PC,2006,Action,Activision,0,0.01,0,0,0.02 +Summer Challenge: Athletics Tournament,Wii,2011,Sports,PQube,0,0.01,0,0,0.02 +Kochira Katsushikaku Kameari Kouenmae Hashutsujo: Machiteba Tengoku! Makereba Jigoku! Ryoutsuryuu Ikkakusenkin Daisakusen!,DS,2010,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Just Cause,PC,2006,Action,Eidos Interactive,0,0.01,0,0,0.02 +Abunai: Koi no Sousa Shitsu,PSV,2015,Action,Asgard,0,0,0.02,0,0.02 +Blazing Angels: Squadrons of WWII,PC,2006,Simulation,Ubisoft,0.01,0,0,0,0.02 +Let's Yoga!,DS,2007,Misc,Konami Digital Entertainment,0,0,0.02,0,0.02 +Zero no Tsukaima: Muma ga Tsumugu Yokaze no Nocturne,PS2,2007,Adventure,Marvelous Interactive,0,0,0.02,0,0.02 +Memories Off: Yubikiri no Kikou,PSP,2011,Adventure,5pb,0,0,0.02,0,0.02 +L.G.S: Shinsetsu Houshinengi,PSP,2012,Action,Idea Factory,0,0,0.02,0,0.02 +Battle Engine Aquila,XB,2003,Shooter,Atari,0.01,0,0,0,0.02 +Turbo: Super Stunt Squad,Wii,2013,Sports,D3Publisher,0,0.02,0,0,0.02 +Hurry Up Hedgehog!,DS,2009,Racing,O-Games,0.02,0,0,0,0.02 +Hands On! Tangrams,DS,2009,Puzzle,Storm City Games,0.02,0,0,0,0.02 +Puzzle Chronicles,DS,2010,Puzzle,Konami Digital Entertainment,0.01,0,0,0,0.02 +Discworld II: Mortality Bytes!,PS,1996,Adventure,Psygnosis,0.01,0.01,0,0,0.02 +One Piece Mansion,PS,2001,Action,Capcom,0.01,0.01,0,0,0.02 +Uchi no 3 Shimai DS,DS,2008,Misc,Culture Brain,0,0,0.02,0,0.02 +Divinity: Original Sin,PC,2014,Role-Playing,Focus Home Interactive,0,0.02,0,0,0.02 +Soul Eater: Monotone Princess,Wii,2008,Action,Square Enix,0,0,0.02,0,0.02 +Strike Witches: Shirogane no Tsubasa,X360,2010,Strategy,CyberFront,0,0,0.02,0,0.02 +Big Idea's VeggieTales: LarryBoy and the Bad Apple,GBA,2006,Action,Crave Entertainment,0.01,0,0,0,0.02 +Still Life 2,PC,2009,Adventure,Rondomedia,0,0.01,0,0,0.02 +Metal Fight Beyblade: Choujou Kessen! Big Bang Bladers,DS,2010,Action,Hudson Soft,0,0,0.02,0,0.02 +Clock Zero: Shuuen no Ichibyou - ExTime,PSV,2015,Action,Idea Factory,0,0,0.02,0,0.02 +Moujuutsukai to Oujisama,PS2,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Root Infinity Rexx,PSV,2015,Adventure,Idea Factory,0,0,0.02,0,0.02 +Cube,PSP,2007,Puzzle,D3Publisher,0.02,0,0,0,0.02 +Shinseiki GPX Cyber Formula: Road To The INFINITY 4,PS2,2007,Racing,Sunrise Interactive,0,0,0.02,0,0.02 +Army Men: Major Malfunction,XB,2006,Shooter,Global Star,0.01,0,0,0,0.02 +Dunamis 15,X360,2011,Adventure,5pb,0,0,0.02,0,0.02 +Sansuu Puzzle de Migaku: Gakken Otona no Shikou Sense,DS,2007,Misc,Gakken,0,0,0.02,0,0.02 +Worms World Party,PC,2001,Strategy,Virgin Interactive,0,0.01,0,0,0.02 +Yoake Yori Ruriiro na Portable,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Big Bass Fishing,PS,2002,Action,Take-Two Interactive,0,0,0.02,0,0.02 +Reine des Fleurs,PSV,2015,Action,Idea Factory,0,0,0.02,0,0.02 +Gears of War,PC,2007,Shooter,Microsoft Game Studios,0,0.01,0,0,0.02 +Densha de Go! Shinkansen EX: Sanyou Shinkansen-hen,Wii,2007,Simulation,Taito,0,0,0.02,0,0.02 +Namco Museum 50th Anniversary (JP sales),PS2,2005,Misc,Namco Bandai Games,0,0,0.02,0,0.02 +Gummy Bears Magical Medallion,Wii,2011,Platform,Storm City Games,0.02,0,0,0,0.02 +Colin McRae Rally 2005,PC,2004,Racing,Codemasters,0,0.01,0,0,0.02 +Mana Khemia 2: Ochita Gakuen to Renkinjutsushi Tachi Portable+,PSP,2009,Role-Playing,Gust,0,0,0.02,0,0.02 +LEGO Star Wars: The Video Game,PC,2005,Action,Eidos Interactive,0,0.01,0,0,0.02 +"Moshi, Kono Sekai ni Kami-sama ga Iru to suru Naraba.",PSV,2016,Adventure,,0,0,0.02,0,0.02 +Dark Void,PC,2010,Action,Capcom,0,0.01,0,0,0.02 +Chou!! Super Nep League DS,DS,2008,Sports,Jaleco,0,0,0.02,0,0.02 +Irritating Stick,PS,1998,Action,Saurus,0.01,0.01,0,0,0.02 +WTA Tour Tennis,GBA,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.02 +Kaleidoeve,PSV,2015,Adventure,HuneX,0,0,0.02,0,0.02 +Judge Dredd: Dredd Vs Death,XB,2003,Shooter,Vivendi Games,0.01,0,0,0,0.02 +Star Trek: Legacy,PC,2006,Simulation,Ubisoft,0,0.01,0,0,0.02 +NHL 16,X360,2015,Sports,Electronic Arts,0,0.02,0,0,0.02 +Wall-E,PC,2008,Platform,THQ,0,0.01,0,0,0.02 +Simple 2000 Series Vol. 105: The Maid Fuku to Kikanjuu,PS2,2006,Action,D3Publisher,0,0,0.02,0,0.02 +Davis Cup Tennis,GBA,2002,Sports,Ubisoft,0.01,0,0,0,0.02 +Pro Rally,GC,2002,Racing,Ubisoft,0.01,0,0,0,0.02 +XCOM 2,XOne,2016,Strategy,Take-Two Interactive,0.01,0.01,0,0,0.02 +Football Academy,DS,2009,Sports,Electronic Arts,0,0.01,0,0,0.02 +Kimi ni Todoke: Sodateru Omoi,DS,2009,Adventure,Banpresto,0,0,0.02,0,0.02 +Call of Duty: Modern Warfare Trilogy,X360,2016,Shooter,Activision,0.01,0.01,0,0,0.02 +Let's Pilates!,DS,2007,Misc,Konami Digital Entertainment,0.02,0,0,0,0.02 +Memories Off #5: Encore,PS2,2007,Adventure,CyberFront,0,0,0.02,0,0.02 +Brave Story: Boku no Kioku to Negai,DS,2006,Role-Playing,Namco Bandai Games,0,0,0.02,0,0.02 +Zombie Hunters 2,PS2,2006,Action,Essential Games,0,0,0.02,0,0.02 +WRC 5: FIA World Rally Championship,X360,2015,Sports,Bigben Interactive,0,0.02,0,0,0.02 +Custom Drive,PSP,2012,Action,D3Publisher,0,0,0.02,0,0.02 +Ferrari: The Race Experience,Wii,,Racing,System 3 Arcade Software,0,0.01,0,0,0.02 +Tsuyo Kiss 2 Gakki: Swift Love,PS2,2009,Adventure,Revolution (Japan),0,0,0.02,0,0.02 +Achtung Panzer: Kharkov 1943,PC,2010,Strategy,Mamba Games,0,0.01,0,0,0.02 +Konductra,DS,2006,Puzzle,O3 Entertainment,0.02,0,0,0,0.02 +Samurai Jack: The Shadow of Aku,GC,2004,Action,Sega,0.01,0,0,0,0.02 +Winning Post 7 2013,PSV,2013,Sports,Tecmo Koei,0,0,0.02,0,0.02 +Platypus,PSP,2006,Shooter,Funsta,0.02,0,0,0,0.02 +Command & Conquer 4: Tiberian Twilight,PC,2010,Strategy,Electronic Arts,0,0.01,0,0,0.02 +The Incredibles: Rise of the Underminer,PC,2005,Action,THQ,0.01,0,0,0,0.02 +Winter Sports 3: The Great Tournament,X360,2010,Sports,Tradewest,0,0.01,0,0,0.02 +Farm Frenzy,PC,2008,Strategy,Mumbo Jumbo,0.01,0,0,0,0.02 +Ore wa Shoujo Mangaka,PSP,2012,Action,Giza10,0,0,0.02,0,0.02 +Busou Renkin: Youkoso Papillon Park e,PS2,2007,Action,Marvelous Interactive,0,0,0.02,0,0.02 +A Vampyre Story,PC,2008,Adventure,Crimson Cow,0,0.01,0,0,0.02 +Puyo Puyo Tetris,WiiU,2014,Puzzle,Sega,0,0,0.02,0,0.02 +Exhibition Volume 6,XB,2004,Misc,Microsoft Game Studios,0.01,0,0,0,0.02 +Oshiri Kajiri Mushi no Rhythm Lesson DS: Kawai Ongaku Kyoushitsu Kanshuu,DS,2008,Misc,Sega,0,0,0.02,0,0.02 +The Haunted: Hell's Reach,PC,2011,Shooter,Visco,0.02,0,0,0,0.02 +Phoenix Wright: Ace Attorney Trilogy,3DS,2014,Adventure,Capcom,0,0,0.02,0,0.02 +Kuma no Pooh-San: 100 Acre no Mori no Cooking Book,DS,2011,Misc,Disney Interactive Studios,0,0,0.02,0,0.02 +LifeSigns: Surgical Unit,DS,2005,Simulation,JoWood Productions,0.01,0.01,0,0,0.02 +I Love Horses: Rider's Paradise,Wii,2010,Simulation,Destineer,0.02,0,0,0,0.02 +Kao the Kangaroo Round 2,GC,2005,Platform,JoWood Productions,0.01,0,0,0,0.02 +Majesty 2 Collection,PC,2011,Strategy,Paradox Interactive,0,0.01,0,0,0.02 +Sniper Elite,PC,2005,Shooter,MC2 Entertainment,0,0.01,0,0,0.02 +The Dark Hills of Cherai,PC,2009,Puzzle,Unknown,0,0.01,0,0,0.02 +FIFA Soccer 08,PC,2007,Sports,Electronic Arts,0,0.01,0,0,0.02 +Zoey 101: Field Trip Fiasco,DS,2007,Action,THQ,0.02,0,0,0,0.02 +Dream C Club: GoGo,PS3,2014,Adventure,D3Publisher,0,0,0.02,0,0.02 +Battle Spirits: Hero's Soul,PSP,2010,Role-Playing,Namco Bandai Games,0,0,0.02,0,0.02 +Usavichi: Game no Jikan,DS,2011,Action,Namco Bandai Games,0,0,0.02,0,0.02 +Pachi-Slot Higrashi no Naku Koro ni Matsuri,PS2,2010,Misc,Alchemist,0,0,0.02,0,0.02 +Otona no Renai Shousetsu: Harlequin Selection,DS,2010,Misc,Nintendo,0,0,0.02,0,0.02 +White Album 2: Shiawase no Mukougawa,PSV,2013,Adventure,Aqua Plus,0,0,0.02,0,0.02 +W.L.O. Sekai Renai Kikousen,X360,2010,Adventure,5pb,0,0,0.02,0,0.02 +Psychedelica of the Black Butterfly,PSV,2015,Action,Idea Factory,0,0,0.02,0,0.02 +Final Fantasy XI: All-In-One Pack 2006,X360,2006,Role-Playing,Square Enix,0,0,0.02,0,0.02 +Joint Operations: Combined Arms,PC,2009,Shooter,NovaLogic,0.01,0,0,0,0.02 +Poupee Girl DS 2: Elegant Mint / Sweet Pink Style,DS,2010,Misc,Alvion,0,0,0.02,0,0.02 +Winning Post 7: Maximum 2007,PS3,2007,Sports,Tecmo Koei,0,0,0.02,0,0.02 +Monster Trux Offroad,Wii,2007,Racing,Popcorn Arcade,0.01,0,0,0,0.02 +Assault Suit Leynos,PS4,2016,Shooter,Rising Star Games,0.01,0,0,0,0.02 +Dragon Booster,DS,2005,Shooter,Konami Digital Entertainment,0.02,0,0,0,0.02 +Germany's Next Topmodel 2011,DS,2011,Simulation,7G//AMES,0,0.01,0,0,0.02 +Drakensang: The Dark Eye,PC,2009,Role-Playing,Eidos Interactive,0.01,0,0,0,0.02 +Storm Lover 2nd,PSP,2013,Misc,D3Publisher,0,0,0.02,0,0.02 +Kadenz fermata//Akkord:fortissimo,PSV,2014,Adventure,5pb,0,0,0.02,0,0.02 +DuckTales: Remastered,PC,2013,Action,Capcom,0,0.01,0,0,0.02 +Transformers: Prime,Wii,2012,Action,Activision,0,0.01,0,0,0.02 +Contrast,PC,2013,Platform,Focus Home Interactive,0,0.01,0,0,0.02 +Arcana Famiglia 2,PSP,2013,Adventure,Comfort,0,0,0.02,0,0.02 +Taishou Moebius Line Vitable,PSV,2016,Adventure,dramatic create,0,0,0.02,0,0.02 +Gaist Crusher God,3DS,2014,Action,Capcom,0,0,0.02,0,0.02 +Shinkyoku Soukai Polyphonica,PS2,2007,Adventure,Prototype,0,0,0.02,0,0.02 +PDC World Championship Darts 2008,DS,,Sports,Unknown,0.01,0,0,0,0.02 +San Goku Shi DS 2,DS,2007,Strategy,Tecmo Koei,0,0,0.02,0,0.02 +Strongest Tokyo University Shogi DS,DS,1985,Action,Mycom,0,0,0.02,0,0.02 +Shin Sangoku Musou Online: Souten Ranbu,PS3,2010,Action,Tecmo Koei,0,0,0.02,0,0.02 +Elven Legacy,PC,2009,Strategy,Paradox Interactive,0.01,0,0,0,0.02 +V-Rally 3,XB,2003,Racing,Atari,0.01,0,0,0,0.02 +Full House Kiss 2,PS2,2006,Adventure,Capcom,0,0,0.02,0,0.02 +Dead to Rights,GBA,2004,Shooter,Zoo Digital Publishing,0.01,0,0,0,0.02 +Thunder Force VI,PS2,2008,Shooter,Sega,0,0,0.02,0,0.02 +Majesty 2: The Fantasy Kingdom Sim,PC,2009,Simulation,Paradox Interactive,0.01,0,0,0,0.02 +Turbo: Super Stunt Squad,3DS,2013,Sports,D3Publisher,0,0.01,0,0,0.02 +Dinotopia: The Sunstone Odyssey,GC,,Action,Unknown,0.01,0,0,0,0.02 +Daito Giken Koushiki Pachi-Slot Simulator: Ossu! Misao + Maguro Densetsu Portable,PSP,2010,Misc,Paon,0,0,0.02,0,0.02 +Dance! It's Your Stage,Wii,,Misc,DTP Entertainment,0,0.01,0,0,0.02 +PachiPara 3D,3DS,2011,Misc,Irem Software Engineering,0,0,0.02,0,0.02 +Command & Conquer Collection,PC,2003,Strategy,Electronic Arts,0.01,0,0,0,0.02 +Kiss Bell,PSV,2014,Adventure,Giga,0,0,0.02,0,0.02 +Earth Defense Force 2017 (old JP sales),X360,2006,Shooter,D3Publisher,0,0,0.02,0,0.02 +Sengoku Hime: Senran ni Mau Otometachi,PS2,2009,Adventure,Yeti,0,0,0.02,0,0.02 +GTI Club: Supermini Festa!,Wii,2010,Racing,Konami Digital Entertainment,0.01,0,0,0,0.02 +MuvLuv Double Pack,PSV,2016,Adventure,5pb,0,0,0.02,0,0.02 +Koihime Enbu,PS4,2016,Fighting,Yeti,0,0,0.02,0,0.02 +Romance of the Three Kingdoms XII,WiiU,2012,Strategy,Tecmo Koei,0,0,0.02,0,0.02 +Worldwide Soccer Manager 2006,PC,2004,Sports,Sega,0,0.01,0,0,0.02 +Sora no Otoshimono Forte: Dreamy Season,DS,2011,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Mission: Impossible - Operation Surma,GC,2004,Platform,Atari,0.01,0,0,0,0.02 +Trigger Man,GC,2004,Shooter,Crave Entertainment,0.01,0,0,0,0.02 +Yuu Yuu Hakusho DS: Ankoku Bujutsukai Hen,DS,2006,Action,Takara Tomy,0,0,0.02,0,0.02 +Hiiro no Kakera Portable,PSP,2008,Adventure,Idea Factory,0,0,0.02,0,0.02 +Antz Extreme Racing,XB,2002,Racing,Empire Interactive,0.01,0,0,0,0.02 +Enemy Territory: Quake Wars,PC,2007,Shooter,Activision,0.01,0,0,0,0.02 +Truck Racer,Wii,2009,Racing,Nordic Games,0,0.01,0,0,0.02 +The Sims 4: Luxury Party Stuff,PC,2015,Simulation,Electronic Arts,0,0.01,0,0,0.02 +"Nogizaka Haruka no Himitsu Cosplay, Hajime Mashita",PS2,2008,Adventure,ASCII Media Works,0,0,0.02,0,0.02 +Triggerheart Exelica,DC,2007,Shooter,Warashi,0,0,0.02,0,0.02 +Jet Impulse,DS,,Simulation,Nintendo,0,0,0.02,0,0.02 +Games Explosion!,GBA,2006,Action,THQ,0.01,0,0,0,0.02 +Tennis no Oji-Sama: Card Hunter,PS2,2007,Strategy,Konami Digital Entertainment,0,0,0.02,0,0.02 +Portable Island: Tenohira Resort,PSP,2006,Simulation,Namco Bandai Games,0,0,0.02,0,0.02 +Night Wizard the Video Game: Denial of the World,PS2,2008,Adventure,5pb,0,0,0.02,0,0.02 +Sengoku Efuda Yuugi: Hototogisu Ran,PSP,2008,Misc,Irem Software Engineering,0,0,0.02,0,0.02 +Tokyo Friend Park II DS,DS,2006,Misc,Rocket Company,0,0,0.02,0,0.02 +Saenai Kanojo no Sodatekata: Blessing Flowers,PSV,2015,Action,5pb,0,0,0.02,0,0.02 +Adventure Time: The Secret of the Nameless,3DS,2014,Adventure,Little Orbit,0.01,0,0,0,0.02 +Kao the Kangaroo Round 2,PS2,2005,Platform,JoWood Productions,0.01,0.01,0,0,0.02 +Shin Hisui no Shizuku: Hiiro no Kakera 2 Portable,PSP,2010,Adventure,Idea Factory,0,0,0.02,0,0.02 +Robopon 2: Ring Version,GBA,2001,Role-Playing,Hudson Entertainment,0.01,0,0,0,0.02 +Evil Genius,PC,2004,Strategy,Vivendi Games,0,0.01,0,0,0.02 +Dragon Tales: Dragon Adventures,GBA,2003,Platform,NewKidCo,0.01,0,0,0,0.02 +Moe Moe 2-ji Taisen (Ryoku) * Deluxe,PSP,2008,Adventure,System Soft,0,0,0.02,0,0.02 +Dream Dancer,DS,,Misc,,0.01,0,0,0,0.02 +Powerbike,DS,2009,Racing,Majesco Entertainment,0.01,0,0,0,0.02 +Violet no Atelier: Gramnad no Renkinjutsushi 2 - Gunjou no Omoide,PSP,2011,Role-Playing,Gust,0,0,0.02,0,0.02 +Magic Encyclopedia: Moonlight,DS,2010,Misc,Foreign Media Games,0,0.01,0,0,0.02 +Rayman 10th Anniversary,GBA,2005,Platform,Ubisoft,0.01,0,0,0,0.02 +Elminage II DS Remix: Sousei no Megami to Unmai no Daichi,DS,2010,Role-Playing,Starfish,0,0,0.02,0,0.02 +Online Chess Kingdoms,PSP,2006,Misc,Konami Digital Entertainment,0.01,0,0,0,0.02 +Gaku ? Ou: The Royal Seven Stars,PSP,2012,Role-Playing,Alchemist,0,0,0.02,0,0.02 +Pillars of Eternity,PC,2014,Role-Playing,Paradox Interactive,0,0.01,0,0,0.02 +RollerCoaster Tycoon: Gold Edition,PC,2002,Strategy,Infogrames,0.01,0,0,0,0.02 +Professional Farmer 2016,PS4,2015,Action,Namco Bandai Games,0,0.01,0,0,0.02 +Storm Lover Kai!!,PSP,2012,Action,D3Publisher,0,0,0.02,0,0.02 +Race Driver: Create & Race,DS,2007,Racing,Codemasters,0.01,0,0,0,0.02 +Nurarihyon no Mago: Hyakki Ryouran Taisen,PS3,2011,Fighting,Konami Digital Entertainment,0,0,0.02,0,0.02 +Minna to Issho,PSV,2011,Misc,Sony Computer Entertainment,0,0,0.02,0,0.02 +Harukanaru Toki no Naka de 6,PSP,2015,Action,Tecmo Koei,0,0,0.02,0,0.02 +Hummer Badlands,XB,2006,Racing,Global Star,0.01,0,0,0,0.02 +I Doll U,PSV,2015,Adventure,Idea Factory,0,0,0.02,0,0.02 +Enkaku Sousa: Sana e no 23 Hiai,PSP,2009,Adventure,Sony Computer Entertainment,0,0,0.02,0,0.02 +Katekyoo Hitman Reborn! DS: Mafia Daishuugou Bongole Festival,DS,2008,Action,Takara Tomy,0,0,0.02,0,0.02 +Pippa Funnell 2: Farm Adventures,DS,2007,Simulation,Ubisoft,0,0.01,0,0,0.02 +Iron Soldier 3,PS,1999,Simulation,Telegames,0.01,0.01,0,0,0.02 +Oyaku de Asoberu DS Ehon: Ukkari Penelope,DS,2008,Simulation,Tecmo Koei,0,0,0.02,0,0.02 +Space Invaders Revolution,DS,2005,Shooter,Rising Star Games,0.01,0,0,0,0.02 +Barbie and Her Sisters Puppy Rescue,PS3,2015,Action,Namco Bandai Games,0,0.01,0,0,0.02 +Worms: WMD,PS4,2016,Action,Sold Out,0.01,0.01,0,0,0.02 +Myst,PSP,2006,Adventure,Midway Games,0,0.01,0,0,0.02 +UNO 52,DS,2006,Misc,Zoo Digital Publishing,0.01,0,0,0,0.02 +Tiger & Bunny: Hero's Day,PSP,2013,Action,D3Publisher,0,0,0.02,0,0.02 +Storm Lover 2nd V,PSV,2016,Adventure,D3Publisher,0,0,0.02,0,0.02 +Grisaia no Meikyuu: Le Labyrinthe de la Grisaia,PSV,2014,Adventure,Prototype,0,0,0.02,0,0.02 +Touhou Genso Rondo: Bullet Ballet,PS4,2016,Shooter,Nippon Ichi Software,0.01,0,0,0,0.02 +Accel World: Kasoku no Chouten,PS3,2013,Adventure,Namco Bandai Games,0,0,0.02,0,0.02 +Poupee Girl DS,DS,2009,Misc,Alvion,0,0,0.02,0,0.02 +Pachinko Kaou: Misora Hibari,PS2,2007,Misc,Hackberry,0,0,0.02,0,0.02 +Just Cause,PS2,2006,Action,Eidos Interactive,0.01,0.01,0,0,0.02 +Choro Q,PS2,2003,Racing,Zoo Digital Publishing,0.01,0.01,0,0,0.02 +Narcissus: Moshimo Ashita ga Runara,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.02,0,0.02 +Girl Friend Beta: Kimi to Sugosu Natsuyasumi,PSV,2015,Action,Namco Bandai Games,0,0,0.02,0,0.02 +IHRA Drag Racing: Sportsman Edition,XB,2006,Racing,Bethesda Softworks,0.01,0,0,0,0.02 +"Sharin no Kuni, Himawari no Shoujo",X360,2010,Adventure,5pb,0,0,0.02,0,0.02 +Guild Wars: Factions,PC,2006,Role-Playing,NCSoft,0,0.01,0,0,0.02 +Simple DS Series Vol. 42: The Haioku Byoutou,DS,2008,Adventure,D3Publisher,0,0,0.02,0,0.02 +Drone Tactics,DS,2007,Strategy,Success,0.01,0,0,0,0.02 +Technic Beat,PS2,2002,Misc,Arika,0.01,0.01,0,0,0.02 +So-Ra-No-Wo-To: Otome no Gojuusou,PSP,2010,Adventure,Compile Heart,0,0,0.02,0,0.02 +Farming Simulator 2014,PSV,2014,Simulation,Focus Home Interactive,0.01,0,0,0,0.02 +Imperium Romanum,PC,2008,Strategy,Kalypso Media,0,0.01,0,0,0.02 +Ship Simulator 2008,PC,2007,Simulation,Lighthouse Interactive,0,0.01,0,0,0.02 +Curse of the Amsterdam Diamond,DS,2012,Puzzle,Easy Interactive,0,0.01,0,0,0.02 +Sengoku,PC,2011,Strategy,Paradox Interactive,0,0.01,0,0,0.02 +Yume Neko DS,DS,2008,Simulation,Sega,0,0,0.02,0,0.02 +Dream C Club,PS3,2012,Simulation,D3Publisher,0,0,0.02,0,0.02 +IGT Slots: Lucky Larry's Lobstermania,PC,2011,Simulation,Masque Publishing,0.01,0,0,0,0.02 +Sid Meier's Civilization Revolution 2+,PSV,2015,Strategy,Take-Two Interactive,0,0,0.02,0,0.02 +SBK Superbike World Championship,PS2,2008,Racing,Black Bean Games,0.01,0.01,0,0,0.02 +Memories Off 6: Next Relation,PS2,2009,Adventure,5pb,0,0,0.02,0,0.02 +Scared Rider Xechs,PS2,2010,Adventure,RED Entertainment,0,0,0.02,0,0.02 +Vitamin X: Detective B6,PSP,2012,Adventure,D3Publisher,0,0,0.02,0,0.02 +Misshitsu no Sacrifice,PSP,2010,Adventure,D3Publisher,0,0,0.02,0,0.02 +You Don't Know Jack,PC,1995,Misc,Vivendi Games,0.01,0,0,0,0.02 +Ouran Koukou Host Bu,PS2,2007,Adventure,Idea Factory,0,0,0.02,0,0.02 +Lotus Challenge,GC,2004,Racing,Ignition Entertainment,0.01,0,0,0,0.02 +Meiji Toukyou Renka: Twilight Kiss,PSP,2015,Action,Broccoli,0,0,0.02,0,0.02 +Xblaze: Lost Memories,PS3,2015,Adventure,Arc System Works,0.01,0,0,0,0.02 +Turok,PC,2008,Action,Touchstone,0,0.01,0,0,0.01 +Coven and Labyrinth of Refrain,PSV,2016,Action,Nippon Ichi Software,0,0,0.01,0,0.01 +Super Battle For Money Sentouchuu: Kyuukyoku no Shinobu to Battle Player Choujou Kessen!,3DS,2016,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Dragon Zakura DS,DS,2007,Misc,Electronic Arts,0,0,0.01,0,0.01 +Chameleon: To Dye For!,DS,2006,Puzzle,505 Games,0.01,0,0,0,0.01 +Hotel Giant DS,DS,2008,Simulation,Nobilis,0,0.01,0,0,0.01 +Sora no Otoshimono: DokiDoki Summer Vacation,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Blackthorne,GBA,2003,Action,Activision,0.01,0,0,0,0.01 +Don Bradman Cricket 14,X360,2014,Sports,Tru Blu Entertainment,0,0.01,0,0,0.01 +DokuSui: DokiDoki Suikoden,PSP,2011,Role-Playing,Irem Software Engineering,0,0,0.01,0,0.01 +Shinseiki Evangelion: Battle Orchestra Portable,PSP,2009,Fighting,Broccoli,0,0,0.01,0,0.01 +Donkey Kong Jungle Beat,Wii,2008,Platform,Nintendo,0,0.01,0,0,0.01 +Bomberman (jp sales),PSP,2006,Puzzle,Konami Digital Entertainment,0,0,0.01,0,0.01 +Blazblue: Continuum Shift Extend,PSP,2012,Fighting,Arc System Works,0,0,0.01,0,0.01 +S.Y.K: Shinsetsu Saiyuuki,PS2,2009,Adventure,Idea Factory,0,0,0.01,0,0.01 +Football Manager Live,PC,2009,Sports,Sega,0,0.01,0,0,0.01 +Captain Morgane and the Golden Turtle,Wii,2012,Adventure,Reef Entertainment,0,0.01,0,0,0.01 +Black Cat,PS2,2006,Action,Capcom,0,0,0.01,0,0.01 +One Piece: Daikaizoku Coliseum,3DS,2016,Fighting,Namco Bandai Games,0,0,0.01,0,0.01 +Mortal Kombat,PC,1994,Fighting,Acclaim Entertainment,0.01,0,0,0,0.01 +Smart Kid's Mega Game Mix,DS,2009,Misc,UFO Interactive,0.01,0,0,0,0.01 +Diary Girl,DS,2008,Misc,Konami Digital Entertainment,0.01,0,0,0,0.01 +Red Stone DS: Akaki Ishi ni Michibikareshi Monotachi,DS,2011,Role-Playing,Unknown,0,0,0.01,0,0.01 +Serious Sam II,PC,2005,Shooter,Take-Two Interactive,0,0.01,0,0,0.01 +Wand of Fortune: Mirai e no Prologue Portable,PSP,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +Sengoku Hime: Senran ni Mau Otometachi,PSP,2009,Adventure,Yeti,0,0,0.01,0,0.01 +Secret Game Portable,PSP,2010,Adventure,Yeti,0,0,0.01,0,0.01 +Demon Gaze 2,PSV,2014,Role-Playing,Experience Inc.,0,0,0.01,0,0.01 +Neverwinter Nights 2: Mask of the Betrayer,PC,2007,Role-Playing,Atari,0,0.01,0,0,0.01 +Kimi no Yuusha,DS,2008,Role-Playing,SNK Playmore,0,0,0.01,0,0.01 +Call of Juarez,PC,2006,Shooter,Ubisoft,0,0.01,0,0,0.01 +Tom Clancy's Ghost Recon Advanced Warfighter (weekly JP sales),X360,2006,Shooter,Ubisoft,0,0,0.01,0,0.01 +UEFA Champions League 2006-2007,PSP,2007,Sports,Electronic Arts,0.01,0,0,0,0.01 +Codename: Panzers Phase Two,PC,2005,Strategy,CDV Software Entertainment,0,0.01,0,0,0.01 +Nobunaga no Yabou Online: Houou no Shou,PS3,2012,Strategy,Ackkstudios,0,0,0.01,0,0.01 +Rise of Flight: Iron Cross Edition,PC,2010,Simulation,Aerosoft,0.01,0,0,0,0.01 +Cosmetic Paradise: Make no Kiseki,DS,2008,Misc,Global A Entertainment,0,0,0.01,0,0.01 +Unreal Tournament 2003,PC,2002,Shooter,Atari,0,0.01,0,0,0.01 +Nobunaga no Yabou DS,DS,2006,Strategy,Tecmo Koei,0,0,0.01,0,0.01 +God Eater Off Shot: Soma Shikkuzaru-hen Twin Pack & Animation Vol.4,PS4,2016,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Uppers,PSV,2016,Action,Marvelous Entertainment,0,0,0.01,0,0.01 +Wand of Fortune Portable,PSP,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +Wiffle Ball Advance,DS,2007,Sports,Zoo Digital Publishing,0.01,0,0,0,0.01 +Rengoku II: The Stairway to H.E.A.V.E.N. (jp sales),PSP,2006,Action,Konami Digital Entertainment,0,0,0.01,0,0.01 +Simple DS Series Vol. 14: The Jidousha Kyoushuujo DS,DS,2007,Misc,D3Publisher,0,0,0.01,0,0.01 +The Last Remnant,PC,2009,Role-Playing,Square Enix,0,0.01,0,0,0.01 +Ten Pin Alley 2,GBA,2004,Sports,XS Games,0.01,0,0,0,0.01 +Himawari: Pebble in the Sky Portable,PSP,2010,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Wand of Fortune R,PSV,2016,Adventure,Idea Factory,0,0,0.01,0,0.01 +Katekyoo Hitman Reborn Nerae!? Ring x Bongole Returns,PS2,2008,Adventure,Marvelous Interactive,0,0,0.01,0,0.01 +My Little Baby,DS,2008,Simulation,CDV Software Entertainment,0,0.01,0,0,0.01 +Kono Aozora ni Yakusoku o: Tenohira no Rakuen,PSP,2009,Adventure,TGL,0,0,0.01,0,0.01 +Shinobi Koutsutsu,PSP,2014,Adventure,Idea Factory,0,0,0.01,0,0.01 +NiGHTS into dreams...,PS2,2008,Platform,Sega,0,0,0.01,0,0.01 +WinBack 2: Project Poseidon,PS2,2006,Shooter,Tecmo Koei,0.01,0.01,0,0,0.01 +Kaitou Rousseau,DS,2006,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Utawarerumono: Futari no Hakuoro,PS3,2016,Misc,Aqua Plus,0,0,0.01,0,0.01 +WRC 5: FIA World Rally Championship,XOne,2015,Sports,Bigben Interactive,0,0.01,0,0,0.01 +Totally Spies! Totally Party,PS2,2008,Misc,Ubisoft,0.01,0.01,0,0,0.01 +GunParade Orchestra: Ao no Shou,PS2,2006,Adventure,Sony Computer Entertainment,0,0,0.01,0,0.01 +Impossible Creatures,PC,2002,Strategy,Microsoft Game Studios,0,0.01,0,0,0.01 +Puyo Pop Fever,GC,2004,Puzzle,Sega,0.01,0,0,0,0.01 +Wizardry XTH: Unlimited Students,PS2,2006,Role-Playing,Michaelsoft,0,0,0.01,0,0.01 +Raven's Cry,PS4,2015,Role-Playing,TopWare Interactive,0,0.01,0,0,0.01 +Instant Brain,X360,2011,Adventure,Cave,0,0,0.01,0,0.01 +Guitar Hero III: Legends of Rock,PC,2007,Misc,Aspyr,0.01,0,0,0,0.01 +Blitzkrieg 2 Anthology,PC,2008,Strategy,Ascaron Entertainment GmbH,0,0.01,0,0,0.01 +Rayman Raving Rabbids,PC,2006,Misc,Ubisoft,0,0.01,0,0,0.01 +God Eater Off Shot:Shiou-hen Twin Pack & Animation Vol.5,PS4,2016,Misc,Namco Bandai Games,0,0,0.01,0,0.01 +Abunai: Koi no Sousa Shitsu,PSP,2012,Action,Quinrose,0,0,0.01,0,0.01 +Coronation Street: The Mystery of the Missing Hotpot Recipe,PC,2011,Adventure,Avanquest,0,0.01,0,0,0.01 +Battle Worlds: Kronos,PC,2016,Strategy,Nordic Games,0,0.01,0,0,0.01 +SoulLink Extension,PS2,2006,Adventure,Interchannel,0,0,0.01,0,0.01 +Banjo-Kazooie,X360,2008,Platform,Microsoft Game Studios,0,0.01,0,0,0.01 +Samurai Shodown Anthology (JP sales),PS2,2008,Fighting,Ignition Entertainment,0,0,0.01,0,0.01 +Winning Post 7 Maximum 2008,PS2,2008,Sports,Tecmo Koei,0,0,0.01,0,0.01 +Sangoku Koi Senki: Otome no Heihou!,PS2,2011,Adventure,Prototype,0,0,0.01,0,0.01 +PDC World Championship Darts 2008,PSP,,Sports,Oxygen Interactive,0.01,0,0,0,0.01 +WRC: FIA World Rally Championship,PC,,Racing,Black Bean Games,0,0.01,0,0,0.01 +Alfa Romeo Racing Italiano,PS2,2005,Racing,Black Bean Games,0.01,0.01,0,0,0.01 +"Pachi-Slot Teiou: Golgo 13 Las Vegas (JP sales, but wrong system)",PS2,2002,Misc,Media Entertainment,0,0,0.01,0,0.01 +Digger Simulator,PC,2011,Simulation,Excalibur Publishing,0,0.01,0,0,0.01 +Turbo: Super Stunt Squad,X360,2013,Sports,D3Publisher,0,0.01,0,0,0.01 +Super Robot Taisen XO,X360,2006,Strategy,Banpresto,0,0,0.01,0,0.01 +Kaitou Joker: Toki o Koeru Kaitou to Ushinawareta Houseki,3DS,2015,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Aquaman: Battle for Atlantis,XB,,Action,Unknown,0.01,0,0,0,0.01 +Pachitte Chonmage Tatsujin 16: Pachinko Hissatsu Shigotojin III,PS2,2010,Misc,Hackberry,0,0,0.01,0,0.01 +IL-2 Sturmovik,PC,2001,Simulation,Blue Byte,0,0.01,0,0,0.01 +Mortal Kombat: Tournament Edition,GBA,2003,Fighting,Midway Games,0.01,0,0,0,0.01 +SeaWorld Adventure Parks: Shamu's Deep Sea Adventure,XB,2005,Adventure,Activision,0.01,0,0,0,0.01 +East India Company,PC,2009,Strategy,Paradox Interactive,0.01,0,0,0,0.01 +World Poker Tour,GBA,2005,Misc,Take-Two Interactive,0.01,0,0,0,0.01 +Sousaku Alice to Oujisama!,3DS,2015,Simulation,Happinet,0,0,0.01,0,0.01 +Empire Deluxe,PC,1992,Strategy,New World Computing,0.01,0,0,0,0.01 +Umihara Kawase Jun: Second Edition Kanzenban,DS,2009,Puzzle,Genterprise,0,0,0.01,0,0.01 +Infinite Stratos 2: Love and Purge,PSV,2015,Action,5pb,0,0,0.01,0,0.01 +Fab 5 Soccer,DS,2008,Sports,Destineer,0.01,0,0,0,0.01 +Destiny Links,DS,2009,Role-Playing,Namco Bandai Games,0,0,0.01,0,0.01 +Best Of Tests,DS,2008,Puzzle,Conspiracy Entertainment,0.01,0,0,0,0.01 +Egg Mania: Eggstreme Madness,XB,2002,Puzzle,Kemco,0.01,0,0,0,0.01 +Virtua Tennis 3,PC,2007,Sports,Sega,0,0.01,0,0,0.01 +Pro Angler Moves,PS3,2012,Sports,"Interworks Unlimited, Inc.",0.01,0,0,0,0.01 +Sakura Sakura: Haru Urara,PSP,2010,Adventure,GN Software,0,0,0.01,0,0.01 +Uta no * Prince-Sama: Sweet Serenade,PSP,2011,Adventure,Broccoli,0,0,0.01,0,0.01 +The Legend of Heroes: Trails in the Sky Third Chapter,PS3,2013,Role-Playing,Falcom Corporation,0,0,0.01,0,0.01 +Road Trip: Shifting Gears,GBA,2002,Racing,Zoo Digital Publishing,0.01,0,0,0,0.01 +"Iza, Shutsujin! Koisen",PSP,2011,Adventure,Quinrose,0,0,0.01,0,0.01 +Major Dream: Major Wii Nagero! Gyroball!!,Wii,2008,Sports,Takara Tomy,0,0,0.01,0,0.01 +Hiiro no Kakera: Shin Tamayori Hime Denshou,PS2,2009,Adventure,Idea Factory,0,0,0.01,0,0.01 +Datenshi no Amai Yuuwaku x Kaikan Phrase,DS,2010,Adventure,FuRyu,0,0,0.01,0,0.01 +Honda ATV Fever,DS,2010,Racing,Storm City Games,0.01,0,0,0,0.01 +Grooverider: Slot Car Thunder,XB,2003,Racing,Encore,0.01,0,0,0,0.01 +Superstars V8 Racing,X360,2009,Racing,Black Bean Games,0,0.01,0,0,0.01 +Grand Theft Auto III,PC,2002,Action,Take-Two Interactive,0,0.01,0,0,0.01 +Bakumatsu Koihana: Shinsengumi DS,DS,2008,Adventure,D3Publisher,0,0,0.01,0,0.01 +Resident Evil 5 HD,PS4,2016,Action,Capcom,0.01,0,0,0,0.01 +Miyako: Awayuki no Utage,PSP,2012,Action,Idea Factory,0,0,0.01,0,0.01 +Super PickUps,Wii,2009,Racing,XS Games,0.01,0,0,0,0.01 +Ben 10 Omniverse 2,X360,2013,Action,Namco Bandai Games,0,0.01,0,0,0.01 +Rewrite,PSV,2014,Adventure,Prototype,0,0,0.01,0,0.01 +Konami Classics Vol. 2,X360,2009,Misc,Konami Digital Entertainment,0.01,0,0,0,0.01 +Aeon Flux,XB,2005,Action,THQ,0.01,0,0,0,0.01 +Tobidase! Kagaku-kun Chikyuu Daitanken! Nazo no Chinkai Seibutsu ni Idome!,DS,2011,Misc,Namco Bandai Games,0,0,0.01,0,0.01 +Kana: Imouto,PSP,2010,Adventure,CyberFront,0,0,0.01,0,0.01 +Barbie and Her Sisters Puppy Rescue,WiiU,2015,Action,Namco Bandai Games,0,0.01,0,0,0.01 +Rock N' Roll Racing,SNES,1993,Racing,Interplay,0,0,0.01,0,0.01 +Higurashi no Naku Koro ni Iki,PS3,2015,Action,Kaga Create,0,0,0.01,0,0.01 +Marginal #4: Idol of Supernova,PSV,2014,Adventure,Idea Factory,0,0,0.01,0,0.01 +Nodame Cantabile,PS2,2007,Misc,Banpresto,0,0,0.01,0,0.01 +Paranormal Pursuit: The Gifted One,PC,2015,Action,Alawar Entertainment,0,0.01,0,0,0.01 +DoDonPachi Saidaioujou,X360,2013,Shooter,Cave,0,0,0.01,0,0.01 +Last Escort: Club Katze,PS2,2010,Adventure,D3Publisher,0,0,0.01,0,0.01 +1/2 Summer +,PSP,2013,Adventure,Kaga Create,0,0,0.01,0,0.01 +Winning Post 7 Maximum 2008,PS3,2008,Sports,Tecmo Koei,0,0,0.01,0,0.01 +Psycho-Pass,XOne,2014,Adventure,5pb,0,0,0.01,0,0.01 +Brain Exercise With Dr. Kawashima,PC,2009,Puzzle,Namco Bandai Games,0,0.01,0,0,0.01 +Tears to Tiara: Kakan no Daichi Portable,PSP,2010,Adventure,Aqua Plus,0,0,0.01,0,0.01 +Games Around the World,DS,2010,Misc,Zoo Games,0.01,0,0,0,0.01 +Football Manager 2005,PC,2004,Sports,Sega,0,0.01,0,0,0.01 +Hitotsu Tobashi Renai V,PSV,2015,Adventure,Kaga Create,0,0,0.01,0,0.01 +Ninja Gaiden Sigma 2,PSV,2013,Action,Tecmo Koei,0,0,0.01,0,0.01 +Turbo Trainz,Wii,2012,Racing,Mastertronic,0,0.01,0,0,0.01 +Theatre Of War,PC,2007,Strategy,Kalypso Media,0,0.01,0,0,0.01 +Nintendogs and Cats Golden Retriever and New Friends,3DS,2011,Action,Nintendo,0,0.01,0,0,0.01 +Young Justice: Legacy,X360,2013,Action,Namco Bandai Games,0,0.01,0,0,0.01 +Tantei Jinguuji Saburo DS: Fuserareta Shinjitsu,DS,2009,Adventure,Arc System Works,0,0,0.01,0,0.01 +Monster Rancher Advance 2,GBA,2002,Simulation,Tecmo Koei,0.01,0,0,0,0.01 +Voodoo Chronicles: First Sign,PC,2011,Adventure,ValuSoft,0.01,0,0,0,0.01 +Umineko no Naku Koro ni Portable 1,PSP,2011,Adventure,Alchemist,0,0,0.01,0,0.01 +Dr. Slump & Arale-Chan,DS,2008,Adventure,Namco Bandai Games,0,0,0.01,0,0.01 +Geten no Hana: Yume Akari,PSP,2014,Misc,Tecmo Koei,0,0,0.01,0,0.01 +Festa!! Hyper Girls Party,PS2,2006,Adventure,KID,0,0,0.01,0,0.01 +Collar x Malice,PSV,2016,Action,Idea Factory,0,0,0.01,0,0.01 +Kikiite Hajimaru: Eigo Kaiwa Training - KikiTore,DS,2008,Misc,Benesse,0,0,0.01,0,0.01 +Vanark,PS,1999,Shooter,Jaleco,0.01,0.01,0,0,0.01 +Dragon's Dogma Online: Season 2,PS4,2016,Action,Capcom,0,0,0.01,0,0.01 +Game Book DS: Sword World 2.0,DS,2009,Role-Playing,Broccoli,0,0,0.01,0,0.01 +WTA Tour Tennis,XB,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.01 +Norn + Nonette: Last Era,PSV,2015,Action,Idea Factory,0,0,0.01,0,0.01 +BlazBlue: Calamity Trigger,PC,2010,Fighting,PQube,0,0.01,0,0,0.01 +Furious Karting,XB,2003,Racing,Atari,0.01,0,0,0,0.01 +WSC REAL 09: World Snooker Championship,PS3,2009,Sports,Deep Silver,0,0.01,0,0,0.01 +Harry Potter and the Chamber of Secrets,PC,2002,Action,Electronic Arts,0,0.01,0,0,0.01 +Pet Shop Monogatari DS 2,DS,2010,Simulation,Taito,0,0,0.01,0,0.01 +Mystery Legends: Beauty and the Beast,PC,2012,Puzzle,Focus Multimedia,0,0.01,0,0,0.01 +Fuuraiki 3,PSV,2015,Action,Unknown,0,0,0.01,0,0.01 +Chokkan! Asonde Relaxuma,DS,2008,Action,Rocket Company,0,0,0.01,0,0.01 +Hot Wheels: Stunt Track Challenge / World Race,GBA,2006,Racing,"Destination Software, Inc",0.01,0,0,0,0.01 +Minna no Conveni,DS,2010,Simulation,Taito,0,0,0.01,0,0.01 +Accel World: Kasoku no Chouten,PSP,2013,Adventure,Namco Bandai Games,0,0,0.01,0,0.01 +SoulCalibur Legends (JP sales),Wii,2007,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Izumo 2,PS2,2006,Adventure,GN Software,0,0,0.01,0,0.01 +Entaku no Seito: Students of Round,X360,2011,Role-Playing,ChunSoft,0,0,0.01,0,0.01 +Bratz: Forever Diamondz,PS2,2006,Adventure,THQ,0.01,0.01,0,0,0.01 +Isshoni Gohan. Portable,PSP,2013,Adventure,Boost On,0,0,0.01,0,0.01 +PC Engine Best Collention: Ginga Ojousama Densetsu Collection,PSP,2008,Adventure,Hudson Soft,0,0,0.01,0,0.01 +King of Fighters 2002: Unlimited Match Tougeki Ver.,PS2,2010,Fighting,SNK Playmore,0,0,0.01,0,0.01 +Monkey Madness: Island Escape,DS,2010,Action,Storm City Games,0.01,0,0,0,0.01 +Malice,XB,2004,Platform,Evolved Games,0.01,0,0,0,0.01 +Raven Squad: Operation Hidden Dagger,PC,2009,Shooter,Evolved Games,0.01,0,0,0,0.01 +htoL#NiQ: The Firefly Diary,PSV,2014,Platform,Nippon Ichi Software,0,0,0.01,0,0.01 +Tiger Woods PGA Tour 2005,PC,2004,Sports,Electronic Arts,0,0.01,0,0,0.01 +Deus Ex,PC,2000,Role-Playing,Eidos Interactive,0,0.01,0,0,0.01 +Rosario to Vampire: Tanabata no Miss Youkai Gakuen,DS,2008,Adventure,Capcom,0,0,0.01,0,0.01 +Ouka Sengoku Portable,PSP,2012,Adventure,Alchemist,0,0,0.01,0,0.01 +Smiley World: Island Challenge,DS,2009,Puzzle,Zoo Digital Publishing,0.01,0,0,0,0.01 +Order Up!!,3DS,2011,Action,Funbox Media,0,0.01,0,0,0.01 +Wallace & Gromit: Curse of the Were-Rabbit,XB,2005,Adventure,Konami Digital Entertainment,0.01,0,0,0,0.01 +Hanayamata: Yosakoi Live,PSV,2014,Adventure,Namco Bandai Games,0,0,0.01,0,0.01 +Shepherd's Crossing,PSP,2009,Simulation,Success,0,0,0.01,0,0.01 +Dark Parables: The Exiled Prince,PC,2011,Puzzle,Unknown,0,0.01,0,0,0.01 +Military History: Commander - Europe at War,DS,2009,Strategy,Slitherine Software,0,0.01,0,0,0.01 +Tactics Layer: Ritina Guard Senki,DS,2009,Strategy,D3Publisher,0,0,0.01,0,0.01 +We Sing 80s,Wii,2012,Misc,Nordic Games,0,0.01,0,0,0.01 +Republique,PS4,2016,Action,Nippon Ichi Software,0,0.01,0.01,0,0.01 +San-X Character Channel: All-Star Daishuugou!,DS,2008,Action,MTO,0,0,0.01,0,0.01 +Rail Simulator,PC,2007,Simulation,Electronic Arts,0,0.01,0,0,0.01 +Putty Squad,PS3,2013,Platform,System 3,0,0.01,0,0,0.01 +Sega Golf Club: Miyazato San Kyoudai Naizou,PS3,2006,Sports,Sega,0,0,0.01,0,0.01 +Rozen Maiden: Gebetgarten,PS2,2007,Fighting,Taito,0,0,0.01,0,0.01 +Resistance Dual Pack,PS3,2011,Shooter,Sony Computer Entertainment,0,0.01,0,0,0.01 +Princess Arthur,PSP,2013,Misc,Idea Factory,0,0,0.01,0,0.01 +Sakura-Sou no Pet na Kanojo,PSP,2013,Adventure,Kadokawa Games,0,0,0.01,0,0.01 +Fatal Fury: Battle Archives Volume 2 (JP sales),PS2,2007,Fighting,SNK Playmore,0,0,0.01,0,0.01 +Tantei Jinguuji Saburo: Hai to Diamond,PSP,2009,Adventure,Arc System Works,0,0,0.01,0,0.01 +BattleForge,PC,2009,Strategy,Electronic Arts,0,0.01,0,0,0.01 +Jewel Quest II,PC,2007,Puzzle,Avanquest,0,0.01,0,0,0.01 +Toro to Morimori,PS3,2009,Misc,Sony Computer Entertainment,0,0,0.01,0,0.01 +Sonic & All-Stars Racing Transformed,PC,2013,Racing,Sega,0,0.01,0,0,0.01 +Satisfashion,Wii,2010,Misc,Destineer,0.01,0,0,0,0.01 +Homeworld Remastered Collection,PC,,Strategy,,0,0.01,0,0,0.01 +Metal Slug Anthology,PS2,2007,Shooter,Ignition Entertainment,0,0,0.01,0,0.01 +K-1 Grand Prix,PS,1999,Fighting,Jaleco,0.01,0.01,0,0,0.01 +Shorts,DS,,Platform,Unknown,0.01,0,0,0,0.01 +Legoland,PC,1999,Action,LEGO Media,0,0.01,0,0,0.01 +Rave Master: Special Attack Force!,GBA,2002,Fighting,Konami Digital Entertainment,0.01,0,0,0,0.01 +Simple 2000 Series Vol. 120: The Saigo no Nippon Tsuwamono,PS2,2007,Strategy,D3Publisher,0,0,0.01,0,0.01 +AKB1/48: Idol to Guam de Koishitara...,X360,,Misc,,0,0,0.01,0,0.01 +Casper,GBA,2002,Adventure,Microids,0.01,0,0,0,0.01 +Hyakka Yakou,PSV,2015,Action,Unknown,0,0,0.01,0,0.01 +Adventure Time: The Secret of the Nameless,X360,2014,Adventure,Little Orbit,0.01,0,0,0,0.01 +Hakuoki: Reimeiroku DS,DS,2012,Action,Idea Factory,0,0,0.01,0,0.01 +Shin Hayarigami 2,PSV,2016,Adventure,Nippon Ichi Software,0,0,0.01,0,0.01 +Ro-Kyu-Bu! Secret Photo Op,PSV,2014,Adventure,Kadokawa Games,0,0,0.01,0,0.01 +Caladrius,X360,2013,Shooter,Moss,0,0,0.01,0,0.01 +Who Wants to be a Millionaire: 2nd Edition,DS,2008,Misc,Ubisoft,0,0.01,0,0,0.01 +Duel Love: Koisuru Otome wa Shouri no Megami,DS,2008,Adventure,Namco Bandai Games,0,0,0.01,0,0.01 +Super Robot Monkey Team: Game Boy Advance Video Volume 1,GBA,2005,Misc,,0.01,0,0,0,0.01 +Freekstyle,GBA,2003,Racing,Zoo Digital Publishing,0.01,0,0,0,0.01 +Groovin' Blocks,Wii,2009,Puzzle,Zoo Games,0.01,0,0,0,0.01 +Tomoyo After: It's a Wonderful Life CS Edition,PS2,2007,Adventure,Prototype,0,0,0.01,0,0.01 +Gardening Guide: How to get Green Fingers,DS,2009,Misc,Mindscape,0,0.01,0,0,0.01 +Aa Megami-samaa,PS2,2007,Adventure,Marvelous Interactive,0,0,0.01,0,0.01 +Bunmei Kaika: Aoiza Ibunroku Saien,PSP,2012,Action,FuRyu,0,0,0.01,0,0.01 +Tsukigime Ranko's Longest Day,PS3,2014,Action,Namco Bandai Games,0,0.01,0,0,0.01 +Bakumatsu Rock,PSP,2014,Action,Marvelous Entertainment,0,0,0.01,0,0.01 +Far East of Eden II: Manji Maru,DS,2006,Role-Playing,Hudson Soft,0,0,0.01,0,0.01 +Family Jockey,Wii,2008,Sports,Namco Bandai Games,0,0,0.01,0,0.01 +Thunder Alley,GBA,2004,Racing,XS Games,0.01,0,0,0,0.01 +Dynasty Warriors: Eiketsuden,PS4,2016,Action,Tecmo Koei,0,0,0.01,0,0.01 +Spider-Man: Friend or Foe,PC,2007,Action,Activision,0.01,0,0,0,0.01 +Carmageddon: Max Damage,XOne,2016,Action,Stainless Games,0.01,0.01,0,0,0.01 +Nyaruko-San: Nafushigatai Game no You na Mono,PSV,2013,Adventure,5pb,0,0,0.01,0,0.01 +New Interpretation Stranger of Sword City,PSV,2016,Role-Playing,Experience Inc.,0,0,0.01,0,0.01 +Soshite Kono Uchuu ni Kirameku Kimi no Shi XXX,PS2,2007,Adventure,Datam Polystar,0,0,0.01,0,0.01 +Victory Spike,PS,1996,Sports,Imagineer,0,0,0.01,0,0.01 +Sengoku Basara 2 Heroes,Wii,2007,Action,Capcom,0,0,0.01,0,0.01 +Double Sequence: The Q-Virus Invasion,DS,2008,Puzzle,Zoo Digital Publishing,0.01,0,0,0,0.01 +Brothers in Arms: Furious 4,X360,,Shooter,,0.01,0,0,0,0.01 +Hi Hi Puffy AmiYumi: The Genie & the Amp,DS,2006,Action,D3Publisher,0.01,0,0,0,0.01 +Densetsu no Yuusha no Densetsu: Legendary Saga,PSP,2010,Role-Playing,Kadokawa Shoten,0,0,0.01,0,0.01 +Zero no Tsukaima: Maigo no Period to Ikusen no Symphony,PS2,2008,Adventure,Marvelous Interactive,0,0,0.01,0,0.01 +Marvel: Ultimate Alliance,PC,2006,Role-Playing,Activision,0.01,0,0,0,0.01 +Broken Sword 5: The Serpent's Curse,XOne,2015,Adventure,Revolution Software,0,0.01,0,0,0.01 +Shitsuji ga Aruji o Erabu Toki,PSV,2016,Adventure,Unknown,0,0,0.01,0,0.01 +Batman: A Telltale Game Series,PS3,2016,Adventure,Telltale Games,0,0.01,0,0,0.01 +Hiiro no Kakera: Shin Tamayori Hime Denshou Portable,PSP,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +Kao the Kangaroo,GBA,2001,Platform,Titus,0.01,0,0,0,0.01 +Builder's Block,PS,1999,Strategy,EON Digital Entertainment,0.01,0,0,0,0.01 +Seisou no Amazones,3DS,2013,Role-Playing,Arc System Works,0,0,0.01,0,0.01 +Phantasy Star Online 2 Episode 4: Deluxe Package,PSV,2017,Role-Playing,Sega,0,0,0.01,0,0.01 +F.E.A.R. Perseus Mandate,PC,2007,Shooter,Vivendi Games,0.01,0,0,0,0.01 +Mahjong Taikai IV,PS3,2006,Misc,Tecmo Koei,0,0,0.01,0,0.01 +Valentino Rossi: The Game,PC,2016,Racing,Namco Bandai Games,0,0.01,0,0,0.01 +FlatOut: Ultimate Carnage,PC,2008,Racing,Empire Interactive,0,0.01,0,0,0.01 +Agarest Senki: Re-appearance,PS3,,Role-Playing,Idea Factory,0,0,0.01,0,0.01 +Ultraman Fighting Evolution 0,PSP,2006,Fighting,Banpresto,0,0,0.01,0,0.01 +Gokuhou!! Mecha Mote Iinchou: Girls Motekawa Box,DS,2009,Simulation,Konami Digital Entertainment,0,0,0.01,0,0.01 +Aquaman: Battle for Atlantis,GC,2003,Action,TDK Mediactive,0.01,0,0,0,0.01 +Strider (2014),PS3,2014,Platform,Capcom,0,0,0.01,0,0.01 +Jinsei Game Q DS: Shouwa no Dekigoto,DS,2007,Misc,Takara Tomy,0,0,0.01,0,0.01 +The Book of Unwritten Tales 2,WiiU,2016,Adventure,Nordic Games,0,0.01,0,0,0.01 +Doraemon Wii: Himitsu Douguou Ketteisen!,Wii,2007,Misc,Sega,0,0,0.01,0,0.01 +Goku Makaimura Kai,PSP,2007,Platform,Capcom,0,0,0.01,0,0.01 +No Fate! Only the Power of Will,X360,2010,Adventure,Alchemist,0,0,0.01,0,0.01 +Conflict: Denied Ops,PC,2008,Shooter,Eidos Interactive,0,0.01,0,0,0.01 +Makai Senki Disgaea 3 Append Disc: Raspberyl-hen Hajime Mashita,PS3,2009,Role-Playing,Nippon Ichi Software,0,0,0.01,0,0.01 +Championship Manager 2010,PC,2009,Sports,Eidos Interactive,0,0.01,0,0,0.01 +Simple DS Series Vol. 41: The Bakudan Shori-Han,DS,2008,Action,D3Publisher,0,0,0.01,0,0.01 +Paragon,PS4,2016,Action,Epic Games,0.01,0,0,0,0.01 +Naxat Soft Reachmania Vol. 1: CR Galaxy Angel,PS2,2008,Misc,Naxat Soft,0,0,0.01,0,0.01 +"Hanayaka Kana, Ware ga Ichizoku",PSP,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +Mamoru-kun wa Norowarete Shimatta!,X360,2009,Shooter,G.Rev,0,0,0.01,0,0.01 +Sengoku Hime 2 Arashi: Hyakubana Senran Tatsukaze no Gotoku,PSP,2010,Strategy,System Soft,0,0,0.01,0,0.01 +"Myself, Yourself",PS2,2007,Adventure,Yeti,0,0,0.01,0,0.01 +Kurogane Kaikitan,PSV,2015,Adventure,Minato Station,0,0,0.01,0,0.01 +Starry ? Sky: After Autumn,PSP,2011,Misc,Aqua Plus,0,0,0.01,0,0.01 +Dokuro,PSV,2012,Action,GungHo,0,0,0.01,0,0.01 +Slide Adventure: Mag Kid,DS,2007,Action,Nintendo,0,0,0.01,0,0.01 +Smuggler's Run,GBA,2002,Racing,Rebellion,0.01,0,0,0,0.01 +The Humans: Meet the Ancestors!,DS,2009,Puzzle,Deep Silver,0.01,0,0,0,0.01 +"Chaos,Head Noah",PSV,2014,Adventure,5pb,0,0,0.01,0,0.01 +Battlestations: Midway,PC,2007,Strategy,Eidos Interactive,0,0.01,0,0,0.01 +Farming Simulator 15 Expansion Pack,PC,2015,Action,Focus Home Interactive,0,0.01,0,0,0.01 +Jan Sangoku Musou,PS2,2006,Misc,Tecmo Koei,0,0,0.01,0,0.01 +Assetto Corsa,XOne,2016,Racing,505 Games,0,0.01,0,0,0.01 +Kono Aozora ni Yakusoku o: Melody of the Sun and Sea,PS2,2007,Adventure,Alchemist,0,0,0.01,0,0.01 +Monster Bomber,DS,2006,Puzzle,505 Games,0.01,0,0,0,0.01 +Rakushou! Pachi-Slot Sengen 6: Rio 2 Cruising Vanadis,PS2,2009,Misc,Tecmo Koei,0,0,0.01,0,0.01 +Fatal Fury: Battle Archives Volume 1 (JP sales),PS2,2006,Fighting,Ignition Entertainment,0,0,0.01,0,0.01 +CT Special Forces 2: Back in the Trenches,GBA,2003,Shooter,LSP Games,0.01,0,0,0,0.01 +Kamaitachi no Yoru 2: Tokubetsu Hen,PSP,2006,Adventure,ChunSoft,0,0,0.01,0,0.01 +The Chronicles of Riddick: Assault on Dark Athena,PC,2009,Shooter,Vivendi Games,0,0.01,0,0,0.01 +The Ultimate Battle of the Sexes,Wii,2010,Misc,DTP Entertainment,0.01,0.01,0,0,0.01 +Root Double: Before Crime After Days,X360,2012,Action,Yeti,0,0,0.01,0,0.01 +War for the Overworld,PC,2015,Strategy,Unknown,0,0.01,0,0,0.01 +TimeShift,PC,2007,Shooter,Vivendi Games,0.01,0,0,0,0.01 +ef - a fairy tale of the two.,PS2,2010,Adventure,Comfort,0,0,0.01,0,0.01 +The Train Giant,PC,2012,Strategy,Ascaron Entertainment,0,0.01,0,0,0.01 +Sangoku Koi Senki: Omoide Gaeshi - CS Edition,PSV,2016,Adventure,Prototype,0,0,0.01,0,0.01 +FairlyLife: MiracleDays,PSP,2010,Adventure,Piacci,0,0,0.01,0,0.01 +Surf's Up,GC,2007,Sports,Ubisoft,0.01,0,0,0,0.01 +Jambo! Safari Animal Rescue,DS,2009,Simulation,Sega,0.01,0,0,0,0.01 +Death Connection Portable,PSP,2011,Adventure,Idea Factory,0,0,0.01,0,0.01 +Rainbow Islands: Revolution,PSP,2005,Action,Rising Star Games,0.01,0,0,0,0.01 +Legend of Kay Anniversary,WiiU,2015,Action,Nordic Games,0,0.01,0,0,0.01 +Rakushou! Pachi-Slot Sengen 4,PS2,2006,Misc,Tecmo Koei,0,0,0.01,0,0.01 +Nitroplus Blasterz: Heroines Infinite Duel,PS3,2015,Fighting,Nitroplus,0,0,0.01,0,0.01 +Moe Moe 2-Ji Daisenryaku 2,PSP,2010,Strategy,System Soft,0,0,0.01,0,0.01 +Tsuyo Kiss 3 Portable,PSP,2012,Action,NetRevo,0,0,0.01,0,0.01 +Fireman Sam: Action Stations,DS,2013,Action,Avanquest Software,0,0.01,0,0,0.01 +Tetris Ultimate,PSV,2014,Puzzle,Ubisoft,0,0.01,0,0,0.01 +Durarara!! Relay,PSV,2015,Action,Kadokawa Games,0,0,0.01,0,0.01 +Moto Racer Advance,GBA,2002,Racing,Ubisoft,0.01,0,0,0,0.01 +Duel Masters: Shadow of the Code,GBA,2004,Misc,Atari,0.01,0,0,0,0.01 +Full Auto 2: Battlelines,PSP,2007,Racing,Sega,0,0.01,0,0,0.01 +Freaky Flyers,GC,,Racing,Unknown,0.01,0,0,0,0.01 +Army Men: Air Combat - The Elite Missions,GC,2003,Shooter,3DO,0.01,0,0,0,0.01 +Rally Championship,GC,2003,Racing,SCi,0.01,0,0,0,0.01 +Happy Dance Collection,Wii,2008,Misc,Namco Bandai Games,0,0,0.01,0,0.01 +Space Hulk,PSV,2015,Strategy,Funbox Media,0,0.01,0,0,0.01 +Fuun Shinsengumi Bakumatsuden Portable,PSP,2009,Action,From Software,0.01,0,0,0,0.01 +Musou Tourou,PSP,2009,Strategy,Nippon Ichi Software,0,0,0.01,0,0.01 +Really? Really! DS,DS,2009,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Gakuen Hetalia,DS,2012,Adventure,Idea Factory,0,0,0.01,0,0.01 +Daiya no Kuni no Alice: Wonderful Mirror World,PSP,2013,Adventure,Quinrose,0,0,0.01,0,0.01 +Touch Detective 3: Does Funghi Dream of Bananas?,3DS,2014,Adventure,Success,0,0,0.01,0,0.01 +Dungeon Explorer: Warriors of Ancient Arts,PSP,2007,Role-Playing,Rising Star Games,0.01,0,0,0,0.01 +Period Cube: Torikago no Amadeus,PSV,2016,Action,Idea Factory,0,0,0.01,0,0.01 +Tringo,GBA,2006,Puzzle,Liquid Games,0.01,0,0,0,0.01 +Jam Sessions: Sing and Play Guitar (jp sales),DS,2007,Misc,Ubisoft,0,0,0.01,0,0.01 +Binary Star,PSV,2014,Adventure,Idea Factory,0,0,0.01,0,0.01 +MXGP 2,PC,2016,Racing,Milestone S.r.l.,0,0.01,0,0,0.01 +Professional Farmer 2016,PSV,2015,Action,Namco Bandai Games,0,0.01,0,0,0.01 +RalliSport Challenge(JP sales),XB,2002,Racing,Microsoft Game Studios,0,0,0.01,0,0.01 +Dragon Quest X: All in One Package,WiiU,2015,Role-Playing,Square Enix,0,0,0.01,0,0.01 +Inversion,PC,,Shooter,Namco Bandai Games,0.01,0,0,0,0.01 +Wedding Planner: Dream Weddings Guaranteed,DS,2010,Simulation,DTP Entertainment,0,0.01,0,0,0.01 +Element Hunter,DS,2009,Role-Playing,Namco Bandai Games,0,0,0.01,0,0.01 +Ultraman Fighting Evolution 3,PS2,2004,Fighting,Banpresto,0,0,0.01,0,0.01 +Rondo of Swords (jp sales),DS,2007,Role-Playing,Success,0,0,0.01,0,0.01 +The Eye of Judgment: Legends,PSP,2010,Strategy,Sony Computer Entertainment,0,0,0.01,0,0.01 +"Chaos,Child",PS4,2015,Adventure,5pb,0,0,0.01,0,0.01 +Greg Hastings' Tournament Paintball Max'd,PS2,2006,Shooter,Activision,0.01,0,0,0,0.01 +Whac-A-Mole,GBA,2005,Puzzle,Zoo Digital Publishing,0.01,0,0,0,0.01 +Nakayoshi All-Stars: Mezase Gakuen Idol,DS,2008,Misc,Creative Core,0,0,0.01,0,0.01 +Shinseiki Evangelion: Koutetsu no Girlfriend Tokubetsu-Hen Portable,PSP,2009,Adventure,CyberFront,0,0,0.01,0,0.01 +Fullmetal Alchemist: Prince of the Dawn,Wii,2009,Adventure,Square Enix,0,0,0.01,0,0.01 +Command & Conquer Renegade,PC,2002,Shooter,Electronic Arts,0,0.01,0,0,0.01 +Grooverider: Slot Car Thunder,GC,2003,Racing,Encore,0.01,0,0,0,0.01 +H2O+: Footprints in the Sand,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Fashionable Puppy: Oshare na Koinu DS,DS,2007,Simulation,MTO,0,0,0.01,0,0.01 +Sekirei: Mirai Kara no Okurimono,PS2,2009,Adventure,Alchemist,0,0,0.01,0,0.01 +Cities: Skylines Snowfall,PC,2016,Simulation,Paradox Development,0,0.01,0,0,0.01 +Ultimate Board Game Collection,PS2,2006,Misc,Xplosiv,0.01,0,0,0,0.01 +Dinotopia: The Sunstone Odyssey,XB,2003,Action,TDK Mediactive,0.01,0,0,0,0.01 +Idol Janshi Suchie-Pai IV,PS2,2007,Misc,Jaleco,0,0,0.01,0,0.01 +Dungeons & Dragons: Neverwinter Nights - Complete,PC,2011,Misc,Atari,0.01,0,0,0,0.01 +Natsuzora no Monologue,PSP,2013,Adventure,Otomate,0,0,0.01,0,0.01 +Kenka Banchou Portable,PSP,2009,Action,Spike,0,0,0.01,0,0.01 +World Snooker Challenge 2005,PSP,2005,Sports,Sega,0,0.01,0,0,0.01 +Juiced 2: Hot Import Nights,PC,2007,Racing,THQ,0,0.01,0,0,0.01 +G1 Jockey 4 2008,PS3,2008,Sports,Tecmo Koei,0,0.01,0,0,0.01 +Monster Jam,PC,2007,Racing,Activision,0.01,0,0,0,0.01 +Icewind Dale II,PC,2002,Role-Playing,Interplay,0,0.01,0,0,0.01 +The Amazing Spider-Man (DS & Mobile Versions),PSP,2009,Action,Eidos Interactive,0,0.01,0,0,0.01 +Mario vs. Donkey Kong: Tipping Stars,WiiU,2015,Puzzle,Nintendo,0,0,0.01,0,0.01 +Ishin Renka: Ryouma Gaiden,PSP,2010,Adventure,D3Publisher,0,0,0.01,0,0.01 +NHL 2K7,XB,2006,Sports,Take-Two Interactive,0.01,0,0,0,0.01 +Shirahana no Ori: Hiiro no Kakera 4 - Shiki no Uta,PSP,2013,Adventure,Idea Factory,0,0,0.01,0,0.01 +Act of Aggression,PC,2015,Strategy,Focus Home Interactive,0,0.01,0,0,0.01 +Powerdrome,XB,2004,Racing,Evolved Games,0.01,0,0,0,0.01 +Fallout Anthology,PC,2015,Action,Bethesda Softworks,0,0.01,0,0,0.01 +Tropico 3: Gold Edition,PC,2010,Strategy,Kalypso Media,0,0.01,0,0,0.01 +Survivor,Wii,2010,Adventure,Valcon Games,0.01,0,0,0,0.01 +Hakuouki: Shinsengumi Kitan,PS3,,Adventure,Unknown,0.01,0,0,0,0.01 +Dance with Devils,PSV,2016,Action,,0,0,0.01,0,0.01 +Wand of Fortune,PS2,2009,Adventure,Idea Factory,0,0,0.01,0,0.01 +Arabians Lost: The Engagement on Desert,PSP,2012,Adventure,Quinrose,0,0,0.01,0,0.01 +Gobliiins 4,PC,2009,Adventure,Kalypso Media,0,0.01,0,0,0.01 +S.Y.K: Shinsetsu Saiyuuki Portable,PSP,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +"Crouching Tiger, Hidden Dragon",XB,2003,Action,Ubisoft,0.01,0,0,0,0.01 +Meru Purana,PS,1996,Strategy,Gust,0,0,0.01,0,0.01 +Cross Edge Dash,X360,2009,Role-Playing,Compile Heart,0,0,0.01,0,0.01 +Colin McRae Rally 04,PC,2004,Racing,Codemasters,0,0.01,0,0,0.01 +Super Bubble Pop,XB,2002,Puzzle,Jaleco,0.01,0,0,0,0.01 +Fullmetal Alchemist: Trading Card Game,DS,2007,Misc,Destineer,0.01,0,0,0,0.01 +Luxor: Pharaoh's Challenge,DS,2007,Puzzle,Funsta,0,0.01,0,0,0.01 +Grand Prix Legends,PC,1997,Racing,Vivendi Games,0,0.01,0,0,0.01 +Fate/kaleid liner Prisma Illya,3DS,2014,Action,Kadokawa Games,0,0,0.01,0,0.01 +Hoshigami: Ruining Blue Earth Remix,DS,2007,Role-Playing,505 Games,0,0,0.01,0,0.01 +Akatsuki no Amaneka to Aoi Kyojin,PSP,2010,Strategy,CyberFront,0,0,0.01,0,0.01 +Pilot Academy,PSP,2006,Simulation,Rising Star Games,0,0.01,0,0,0.01 +Poker for Dummies,PC,2008,Misc,Electronic Arts,0,0.01,0,0,0.01 +John Daly's ProStroke Golf,X360,2010,Sports,O-Games,0.01,0,0,0,0.01 +TrackMania Turbo,PC,2016,Action,Ubisoft,0,0.01,0,0,0.01 +Darkened Skye,GC,2002,Adventure,TDK Mediactive,0.01,0,0,0,0.01 +Sakura-Sou no Pet na Kanojo,PSV,2013,Adventure,Kadokawa Games,0,0,0.01,0,0.01 +WSC REAL 09: World Snooker Championship,X360,2009,Sports,Deep Silver,0,0.01,0,0,0.01 +World Snooker Championship 2007,X360,2007,Sports,Sega,0,0.01,0,0,0.01 +Handball 16,X360,2015,Sports,Bigben Interactive,0,0.01,0,0,0.01 +Wand of Fortune: Mirai e no Prologue,PS2,2010,Adventure,Idea Factory,0,0,0.01,0,0.01 +Alone in the Dark,PC,2008,Adventure,Atari,0,0.01,0,0,0.01 +Nova Usagi no Game de Ryuugaku!? DS,DS,2007,Misc,Konami Digital Entertainment,0,0,0.01,0,0.01 +LMA Manager 2007,X360,2006,Sports,Codemasters,0,0.01,0,0,0.01 +San-X: Chara Sagashi Land,DS,2007,Action,MTO,0,0,0.01,0,0.01 +Heart no Kuni no Alice,PSP,2009,Adventure,Prototype,0,0,0.01,0,0.01 +Petz: Hamsterz Life 2,GBA,2007,Misc,Ubisoft,0.01,0,0,0,0.01 +The Technomancer,PC,2016,Role-Playing,Focus Home Interactive,0,0.01,0,0,0.01 +Pro Evolution Soccer 2010,PC,2009,Sports,Konami Digital Entertainment,0,0.01,0,0,0.01 +Memories Off,PSP,2008,Adventure,5pb,0,0,0.01,0,0.01 +Tenchu San Portable,PSP,2009,Action,From Software,0,0,0.01,0,0.01 +Ratchet & Clank: Full Frontal Assault,PSV,2012,Adventure,Sony Computer Entertainment,0.01,0,0,0,0.01 +Vitamin X,PS2,2007,Adventure,D3Publisher,0,0,0.01,0,0.01 +The Wild West,DS,2007,Action,Majesco Entertainment,0.01,0,0,0,0.01 +The Amazing Spider-Man 2 (2014),PC,2014,Action,Activision,0,0.01,0,0,0.01 +Saint Seiya Omega: Ultimate Cosmo,PSP,2012,Fighting,Namco Bandai Games,0,0,0.01,0,0.01 +Sega Rally Revo,PC,2007,Racing,Sega,0,0.01,0,0,0.01 +"Element Girl: Love, Fashion and Friends",DS,2008,Adventure,DTP Entertainment,0,0.01,0,0,0.01 +"Sakigake!! Otokojuku - Nihon yo, Kore ga Otoko Dearu!",PS3,2014,Fighting,Namco Bandai Games,0,0,0.01,0,0.01 +Teenage Mutant Ninja Turtles (3DS),3DS,2013,Action,Activision,0.01,0,0,0,0.01 +Time Leap,X360,2009,Adventure,Prototype,0,0,0.01,0,0.01 +The Godfather (JP sales),X360,2006,Action,Electronic Arts,0,0,0.01,0,0.01 +thinkSMART: Chess for Kids,DS,2011,Misc,Mentor Interactive,0.01,0,0,0,0.01 +World Heroes Anthology,PS2,2007,Fighting,Ignition Entertainment,0,0,0.01,0,0.01 +"Chaos,Child",PS3,2015,Adventure,5pb,0,0,0.01,0,0.01 +"th!nk Logic Trainer",Wii,2009,Puzzle,Conspiracy Entertainment,0.01,0,0,0,0.01 +"Tennis no Oji-Sama: Doubles no Oji-Sama - Boys, Be Glorious!",DS,2009,Sports,Konami Digital Entertainment,0,0,0.01,0,0.01 +Routes PE,PS2,2007,Adventure,Aqua Plus,0,0,0.01,0,0.01 +Winning Eleven: Pro Evolution Soccer 2007,PC,2006,Sports,Konami Digital Entertainment,0,0.01,0,0,0.01 +Uchida Yasuou Mystery: Meitantei Senken Mitsuhiko Series: Fukutoshin Renzoku Satsujin Jiken,DS,2009,Adventure,D3Publisher,0,0,0.01,0,0.01 +Railfan,PS3,2006,Simulation,Ongakukan,0,0,0.01,0,0.01 +SoniPro,3DS,2014,Adventure,imageepoch Inc.,0,0,0.01,0,0.01 +Real Crimes: The Unicorn Killer,DS,2011,Puzzle,Unknown,0,0.01,0,0,0.01 +Akatsuki no Goei Trinity,PSP,2012,Adventure,5pb,0,0,0.01,0,0.01 +ESPN NBA 2Night 2002,XB,2002,Sports,Konami Digital Entertainment,0.01,0,0,0,0.01 +Virtua Quest,GC,,Role-Playing,Unknown,0.01,0,0,0,0.01 +Aladdin Magic Racer,Wii,2011,Racing,Big Ben Interactive,0.01,0,0,0,0.01 +Goat Simulator,XOne,2016,Simulation,Koch Media,0,0.01,0,0,0.01 +Golden Time: Vivid Memories,PSV,2014,Adventure,ASCII Media Works,0,0,0.01,0,0.01 +Kamigami no Asobi InFinite,PSV,2016,Adventure,Broccoli,0,0,0.01,0,0.01 +Shinseiki Evangelion: Koutetsu no Girlfriend 2nd Portable,PSP,2009,Adventure,CyberFront,0,0,0.01,0,0.01 +Clive Barker's Jericho,PC,2007,Shooter,Codemasters,0,0.01,0,0,0.01 +Tenjin Ranman: Happy GO Lucky!!,PSP,2010,Adventure,Russel,0,0,0.01,0,0.01 +Getsuei Gakuen: kou,PSV,2013,Adventure,Arc System Works,0,0,0.01,0,0.01 +Worms 2,PC,1997,Strategy,Microprose,0,0.01,0,0,0.01 +The Cages: Pro Style Batting Practice,Wii,2010,Sports,Konami Digital Entertainment,0.01,0,0,0,0.01 +Brothers Conflict: Precious Baby,PSV,2017,Action,Idea Factory,0,0,0.01,0,0.01 +Shin Sangoku Musou 4 Special,X360,2005,Action,Tecmo Koei,0,0,0.01,0,0.01 +Bullet Soul: Tama Tamashii,X360,2011,Shooter,5pb,0,0,0.01,0,0.01 +G1 Jockey 4 2007,PS2,2007,Sports,Tecmo Koei,0,0,0.01,0,0.01 +Colin McRae Rally 2005 plus,PSP,2005,Racing,Codemasters,0,0,0.01,0,0.01 +Heart no Kuni no Alice: Wonderful Twin World,PSP,2014,Adventure,Quinrose,0,0,0.01,0,0.01 +Madagascar: Escape 2 Africa,PC,2008,Action,Activision,0.01,0,0,0,0.01 +Wade Hixton's Counter Punch,GBA,2004,Sports,"Destination Software, Inc",0.01,0,0,0,0.01 +Junjou Romanchika: Koi no Doki Doki Daisakusen,PS2,2008,Adventure,Marvelous Interactive,0,0,0.01,0,0.01 +Legacy of Kain: Defiance,PC,2003,Action,Eidos Interactive,0,0.01,0,0,0.01 +Assassin's Creed Chronicles,XOne,2016,Action,Ubisoft,0,0.01,0,0,0.01 +King's Bounty: Armored Princess,PC,2009,Role-Playing,1C Company,0,0.01,0,0,0.01 +Hyperdimension Neptunia mk2,PS3,2011,Action,Nippon Ichi Software,0,0.01,0,0,0.01 +Shin Koihime Musou: Otome Taisen * Sangokushi Engi,PS3,2014,Adventure,Views,0,0,0.01,0,0.01 +Rugby League Live 3,XOne,2015,Action,Tru Blu Entertainment,0,0.01,0,0,0.01 +Winx Club: Saving Alfea,3DS,2014,Action,Namco Bandai Games,0,0.01,0,0,0.01 +Heart no Kuni no Alice,PS2,2008,Adventure,Prototype,0,0,0.01,0,0.01 +Shijyou Saikyou no Deshi Kenichi: Gekitou! Ragnarok Hachikengou,PS2,2007,Fighting,Capcom,0,0,0.01,0,0.01 +Art Academy: Home Studio,WiiU,2015,Misc,Nintendo,0,0,0.01,0,0.01 +Juggler DS,DS,2008,Misc,Commseed,0,0,0.01,0,0.01 +Katekyoo Hitman Reborn! Kindan no Yami no Delta,Wii,2008,Action,Marvelous Interactive,0,0,0.01,0,0.01 +Rugby World Cup 2015,PC,2015,Sports,Ubisoft,0,0.01,0,0,0.01 +"Horse Life 4: My Horse, My Friend, My Champion",3DS,2015,Action,Unknown,0,0.01,0,0,0.01 +Razor Freestyle Scooter,GBA,2001,Sports,Ubisoft,0.01,0,0,0,0.01 +Outdoors Unleashed: Alaska 3D,3DS,2011,Sports,Mastiff,0.01,0,0,0,0.01 +Vitamin Y,DS,2008,Adventure,D3Publisher,0,0,0.01,0,0.01 +Egg Mania: Eggstreme Madness,GC,2002,Puzzle,Kemco,0.01,0,0,0,0.01 +Help Wanted: 50 Wacky Jobs (jp sales),Wii,2008,Simulation,Hudson Soft,0,0.01,0.01,0,0.01 +Magicians Academy,PS2,2007,Role-Playing,Enterbrain,0,0,0.01,0,0.01 +"Memories Off #5: Togireta Film",PSP,2009,Adventure,5pb,0,0,0.01,0,0.01 +Exstetra,3DS,2013,Role-Playing,FuRyu,0,0,0.01,0,0.01 +Lucian Bee's: Resurrection Supernova,PS2,2009,Adventure,5pb,0,0,0.01,0,0.01 +Amnesia Later,PSV,2014,Misc,Idea Factory,0,0,0.01,0,0.01 +MotoGP 15,X360,2015,Racing,Milestone S.r.l.,0,0.01,0,0,0.01 +Azure Striker Gunvolt: Striker Pack,3DS,2016,Action,Inti Creates,0,0,0.01,0,0.01 +Captain Rainbow,Wii,2008,Adventure,Nintendo,0,0,0.01,0,0.01 +Total War Attila: Tyrants & Kings,PC,2016,Strategy,Koch Media,0,0.01,0,0,0.01 +Space Raiders,GC,2003,Shooter,Taito,0.01,0,0,0,0.01 +DoDonPachi Daifukkatsu: Black Label,X360,2011,Shooter,Cave,0,0,0.01,0,0.01 +"Shinobi, Koi Utsutsu: Setsugetsuka Koi Emaki",PSV,2015,Action,Idea Factory,0,0,0.01,0,0.01 +Ishin no Arashi: Shippuu Ryuumeden,DS,2010,Strategy,Tecmo Koei,0,0,0.01,0,0.01 +Agatha Christie: Peril at End House,PC,2009,Adventure,JoWood Productions,0,0.01,0,0,0.01 +Muv-Luv Alternative,PS3,2012,Simulation,5pb,0,0,0.01,0,0.01 +Dengeki Gakuen RPG: Cross of Venus Special,DS,2011,Role-Playing,ASCII Media Works,0,0,0.01,0,0.01 +Dragon Ball Z for Kinect,X360,2012,Fighting,Namco Bandai Games,0.01,0,0,0,0.01 +Hospital Tycoon,PC,2007,Strategy,Codemasters,0,0.01,0,0,0.01 +Smart Boy's Winter Wonderland,DS,2008,Misc,UFO Interactive,0.01,0,0,0,0.01 +Koi Sentai Love & Peace the P.S.P: Power Zenkai! Special Youso Tenkomori de Portable Ka Daisakusen de Aru!,PSP,2012,Action,Broccoli,0,0,0.01,0,0.01 +Case Closed: One Truth Prevails,Wii,2007,Adventure,Nobilis,0,0,0.01,0,0.01 +Slotter Mania P: Tetsuya Shinjuku vs Ueno,PSP,2010,Misc,Dorart,0,0,0.01,0,0.01 +Bomberman,Wii,2008,Puzzle,Hudson Entertainment,0,0,0.01,0,0.01 +Micro Machines V4,PS2,2006,Racing,Codemasters,0.01,0,0,0,0.01 +SBK Superbike World Championship,PSP,2008,Racing,Black Bean Games,0.01,0,0,0,0.01 +Summer Athletics,PC,2008,Sports,DTP Entertainment,0,0.01,0,0,0.01 +Daito Giken Koushiki Pachi-Slot Simulator: 24 - Twenty-Four,PS2,2008,Misc,Paon,0,0,0.01,0,0.01 +The Smurfs,3DS,,Action,Unknown,0,0.01,0,0,0.01 +Legends of Oz: Dorothy's Return,3DS,2014,Puzzle,,0,0.01,0,0,0.01 +Unending Bloody Call,PSP,2012,Action,Asgard,0,0,0.01,0,0.01 +Shutsugeki! Otometachi no Senjou 2: Ikusabana no Kizuna,PSP,2011,Strategy,System Soft,0,0,0.01,0,0.01 +Snood 2: On Vacation,GBA,2005,Puzzle,Zoo Digital Publishing,0.01,0,0,0,0.01 +The Land Before Time: Into the Mysterious Beyond,GBA,2006,Platform,Game Factory,0.01,0,0,0,0.01 +Irotoridori no Sekai: World's End Re-Birth,PSV,2015,Action,HuneX,0,0,0.01,0,0.01 +Satomi Hakkenden: Hachi Tamanoki,PSP,2014,Adventure,Quinrose,0,0,0.01,0,0.01 +"Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)",PC,2010,Shooter,Activision,0.01,0,0,0,0.01 +Naraku no Shiro,PS2,2008,Adventure,Nippon Ichi Software,0,0,0.01,0,0.01 +Shinigami to Shoujo,PSP,2011,Adventure,Takuyo,0,0,0.01,0,0.01 +Mystereet,PS2,2006,Adventure,Yeti,0,0,0.01,0,0.01 +Rabbids Invasion: The Interactive TV Show,XOne,2014,Misc,Ubisoft,0,0.01,0,0,0.01 +Samurai Shodown: Warrios Rage,PS,1999,Fighting,SNK,0.01,0,0,0,0.01 +Romeo Vs. Juliet,PSP,2013,Adventure,Quinrose,0,0,0.01,0,0.01 +The Rise of the Argonauts,PC,2008,Role-Playing,Codemasters,0,0.01,0,0,0.01 +Trine,PC,2009,Action,Nobilis,0,0.01,0,0,0.01 +Palais de Reine,PS2,2007,Strategy,Interchannel-Holon,0,0,0.01,0,0.01 +Pony Friends 2,PC,2009,Simulation,Eidos Interactive,0,0.01,0,0,0.01 +Balloon Pop 2,3DS,2012,Puzzle,UFO Interactive,0.01,0,0,0,0.01 +Deal or No Deal,PC,2006,Misc,Focus Home Interactive,0,0.01,0,0,0.01 +National Geographic Panda (JP sales),DS,2008,Simulation,Ubisoft,0,0,0.01,0,0.01 +Knights in the Nightmare: DHE Series Special Pack,DS,2008,Role-Playing,Sting,0,0,0.01,0,0.01 +DJ Max Technika Tune,PSV,2012,Misc,CyberFront,0,0,0.01,0,0.01 +Teenage Mutant Ninja Turtles,Wii,2007,Action,Konami Digital Entertainment,0,0.01,0,0,0.01 +Crossroad Crisis,PS,2000,Puzzle,Success,0.01,0,0,0,0.01 +Bakumatsu Rock: Ultra Soul,PSP,2014,Misc,Marvelous Interactive,0,0,0.01,0,0.01 +Tengai Makyo: Dai Yon no Mokushiroku,PSP,2006,Role-Playing,Hudson Soft,0,0,0.01,0,0.01 +Akatsuki no Goei Trinity,PS3,2012,Adventure,5pb,0,0,0.01,0,0.01 +Karnaaj Rally,GBA,2003,Racing,Jaleco,0.01,0,0,0,0.01 +Style Book: Cinnamoroll,DS,2006,Misc,Namco Bandai Games,0,0,0.01,0,0.01 +Shirogane no Soleil: Contract to the Future - Mirai e no Keiyaku,PS2,2008,Adventure,Russel,0,0,0.01,0,0.01 +Blazer Drive,DS,2008,Role-Playing,Sega,0,0,0.01,0,0.01 +Onigokko! Portable,PSP,2013,Adventure,Alchemist,0,0,0.01,0,0.01 +Hoshizora no Comic Garden,DS,2008,Adventure,D3Publisher,0,0,0.01,0,0.01 +Kiniro no Corda 3,3DS,2015,Adventure,Tecmo Koei,0,0,0.01,0,0.01 +Hirameki Action: Chibikko Wagyan no Daiki na Bouken,DS,2009,Action,Namco Bandai Games,0,0,0.01,0,0.01 +S?bastien Loeb Rally Evo,XOne,2016,Racing,Milestone S.r.l,0,0.01,0,0,0.01 +Hitman (2016),XOne,2016,Action,Square Enix,0,0.01,0,0,0.01 +STORM: Frontline Nation,PC,2011,Strategy,Unknown,0,0.01,0,0,0.01 +Metal Gear Solid HD Edition,X360,2011,Action,Konami Digital Entertainment,0,0,0.01,0,0.01 +Time Travelers,PSP,2012,Adventure,Level 5,0,0,0.01,0,0.01 +Mushi Bugyou,3DS,2013,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Patrician IV: Gold Edition,PC,2011,Misc,Kalypso Media,0,0.01,0,0,0.01 +Transformers: Fall of Cybertron,PC,2012,Action,Activision,0.01,0,0,0,0.01 +Sea Monsters: A Prehistoric Adventure,DS,2007,Adventure,DSI Games,0.01,0,0,0,0.01 +Spore Galactic Adventures,PC,2009,Strategy,Electronic Arts,0,0.01,0,0,0.01 +15 Days,PC,2009,Adventure,DTP Entertainment,0,0.01,0,0,0.01 +Battle Fantasia,PS3,2008,Fighting,505 Games,0,0,0.01,0,0.01 +Mario & Luigi: Paper Jam & Mario Kart 7 Double Pack,3DS,2015,Misc,Nintendo,0,0,0.01,0,0.01 +Driving Simulator 2011,PC,2011,Racing,,0,0.01,0,0,0.01 +Imagine Figure Skater (JP sales),DS,2007,Sports,Ubisoft,0,0,0.01,0,0.01 +The Treasures of Mystery Island 3 Pack - Save Mystery Island!,PC,2011,Puzzle,,0.01,0,0,0,0.01 +Hyakki Yagyou Kaidan Romance,PSP,2012,Action,Quinrose,0,0,0.01,0,0.01 +Bookworm Deluxe,PC,2006,Puzzle,PopCap Games,0.01,0,0,0,0.01 +Hakuoki: Reimeiroku - Omouhase Kara,PSV,2015,Action,Idea Factory,0,0,0.01,0,0.01 +E.T. The Extra-Terrestrial,GBA,2001,Action,NewKidCo,0.01,0,0,0,0.01 +God Eater Off Shot: Tachibana Sakuya-hen Twin Pack & Animation Vol.7,PS4,2016,Action,Namco Bandai Games,0,0,0.01,0,0.01 +Sweet Honey Coming,PS2,2009,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Mahou Sensei Negima!? Neo-Pactio Fight!!,Wii,2007,Fighting,Marvelous Interactive,0,0,0.01,0,0.01 +Bound By Flame,X360,2014,Role-Playing,,0,0.01,0,0,0.01 +Psychic Detective,PS,1995,Adventure,Electronic Arts,0.01,0,0,0,0.01 +Codename: Panzers Complete Collection,PC,2016,Strategy,Nordic Games,0,0.01,0,0,0.01 +Super Robot Taisen: Original Generation,GBA,2002,Role-Playing,Banpresto,0.01,0,0,0,0.01 +Dramatical Murder Re:code,PSV,2014,Adventure,Nitroplus,0,0,0.01,0,0.01 +Pro Evolution Soccer 2008,PC,2007,Sports,Konami Digital Entertainment,0,0.01,0,0,0.01 +Sugar + Spice! Anoko no Suteki na Nanimokamo,PS2,2008,Adventure,Alchemist,0,0,0.01,0,0.01 +Hanasaku Manimani,PSV,2014,Adventure,5pb,0,0,0.01,0,0.01 +Kanokon: Esuii,PS2,2008,Adventure,5pb,0,0,0.01,0,0.01 +Mighty No. 9,XOne,2016,Platform,Deep Silver,0.01,0,0,0,0.01 +Mortal Kombat: Deadly Alliance,GBA,2002,Fighting,Midway Games,0.01,0,0,0,0.01 +Original Frisbee Disc Sports: Ultimate & Golf,DS,2007,Action,"Destination Software, Inc",0.01,0,0,0,0.01 +Teslagrad,PSV,2015,Platform,Rain Games,0,0.01,0,0,0.01 +End of Nations,PC,2012,Strategy,Trion Worlds,0.01,0,0,0,0.01 +Fujiko F. Fujio Characters: Great Assembly! Slightly Fantastic Slapstick Party,3DS,2014,Action,Namco Bandai Games,0,0,0.01,0,0.01 +XI Coliseum,PSP,2006,Puzzle,Sony Computer Entertainment,0,0,0.01,0,0.01 +Resident Evil 4 HD,XOne,2016,Shooter,Capcom,0.01,0,0,0,0.01 +Farming 2017 - The Simulation,PS4,2016,Simulation,UIG Entertainment,0,0.01,0,0,0.01 +Grisaia no Kajitsu: La Fruit de la Grisaia,PSP,2013,Adventure,Prototype,0,0,0.01,0,0.01 +Scarlett: Nichijou no Kyoukaisen,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Mini Desktop Racing,Wii,2007,Racing,Popcorn Arcade,0.01,0,0,0,0.01 +Yattaman Wii: BikkuriDokkiri Machine de Mou Race da Koron,Wii,2008,Racing,Takara Tomy,0,0,0.01,0,0.01 +Neo Angelique Special,PSP,2008,Adventure,Tecmo Koei,0,0,0.01,0,0.01 +Rugby Challenge 3,XOne,2016,Sports,Alternative Software,0,0.01,0,0,0.01 +Damnation,PC,2009,Shooter,Codemasters,0,0.01,0,0,0.01 +Outdoors Unleashed: Africa 3D,3DS,2011,Sports,Mastiff,0.01,0,0,0,0.01 +PGA European Tour,N64,2000,Sports,Infogrames,0.01,0,0,0,0.01 +Real Rode,PS2,2008,Adventure,Kadokawa Shoten,0,0,0.01,0,0.01 +Fit & Fun,Wii,2011,Sports,Unknown,0,0.01,0,0,0.01 +Planet Monsters,GBA,2001,Action,Titus,0.01,0,0,0,0.01 +Carmageddon 64,N64,1999,Action,Virgin Interactive,0.01,0,0,0,0.01 +Bust-A-Move 3000,GC,2003,Puzzle,Ubisoft,0.01,0,0,0,0.01 +Breach,PC,2011,Shooter,Destineer,0.01,0,0,0,0.01 +Secret Files 2: Puritas Cordis,DS,2009,Adventure,Deep Silver,0,0.01,0,0,0.01 +Mezase!! Tsuri Master DS,DS,2009,Sports,Hudson Soft,0,0,0.01,0,0.01 +Mega Brain Boost,DS,2008,Puzzle,Majesco Entertainment,0.01,0,0,0,0.01 +Chou Ezaru wa Akai Hana: Koi wa Tsuki ni Shirube Kareru,PSV,2016,Action,dramatic create,0,0,0.01,0,0.01 +Eiyuu Densetsu: Sora no Kiseki Material Collection Portable,PSP,2007,Role-Playing,Falcom Corporation,0,0,0.01,0,0.01 +Myst IV: Revelation,PC,2004,Adventure,Ubisoft,0.01,0,0,0,0.01 +Plushees,DS,2008,Simulation,Destineer,0.01,0,0,0,0.01 +Woody Woodpecker in Crazy Castle 5,GBA,2002,Platform,Kemco,0.01,0,0,0,0.01 +Men in Black II: Alien Escape,GC,2003,Shooter,Infogrames,0.01,0,0,0,0.01 +SCORE International Baja 1000: The Official Game,PS2,2008,Racing,Activision,0,0,0,0,0.01 +Know How 2,DS,2010,Puzzle,7GAMES,0,0.01,0,0,0.01 +Spirits & Spells,GBA,2003,Platform,Wanadoo,0.01,0,0,0,0.01 diff --git a/PPP/s2/TP_EC_1.pdf b/PPP/s2/TP_EC_1.pdf new file mode 100644 index 0000000..c962c55 Binary files /dev/null and b/PPP/s2/TP_EC_1.pdf differ diff --git a/PPP/s2/offres_job.pdf b/PPP/s2/offres_job.pdf new file mode 100644 index 0000000..a6c908a Binary files /dev/null and b/PPP/s2/offres_job.pdf differ diff --git a/SAE/SAE2.06-Travail_d_equipe b/SAE/SAE2.06-Travail_d_equipe new file mode 160000 index 0000000..7889c35 --- /dev/null +++ b/SAE/SAE2.06-Travail_d_equipe @@ -0,0 +1 @@ +Subproject commit 7889c358580048048f8f092d3fe5d893b1102c42 diff --git a/SAE/~$E2.06-Travail_d_equipe.docx b/SAE/~$E2.06-Travail_d_equipe.docx new file mode 100644 index 0000000..2b3d870 Binary files /dev/null and b/SAE/~$E2.06-Travail_d_equipe.docx differ